darksidemilk / FogApi

Powershell Module for the Fog API
MIT License
5 stars 0 forks source link

Overview

Test Build

This is a powershell module to make using the Fog Project API even easier. FOG is an opensource tool for imaging comptuters, this module uses the API on your internal fog server to perform almost any operation. It can be used to create more automation or to simply have a command line method of controlling fog operations.

Docs can be found at https://fogapi.readthedocs.io/en/latest/

Notes about its new home and future structuring

This module used to be housed at https://github.com/FOGProject/fog-community-scripts/tree/master/PowershellModules/FogApi but has been now moved to its own repo to follow best practicies for powershell modules. Overtime I hope to add pester tests and use other powershell build tools like invoke-build or psake. For now there's a simpler build.ps1 script for combinging the functions into a single module and generating/building/compiling the documentation (using the platyps module). You only need to use the build.ps1 if you want to manually install it instead of using the simpler Install-Module fogapi to install it from the powershell gallery.

Versioning

The versioning of this module follows this pattern

{Year|Month}.{Major Version}.{Revision #}

Year/Month

This versioning shows you first the Year and month this version of the module was published, giving you an idea of when it was last updated. i.e. 2208 would be august 2022.

Major

The Major version follows the typical major versioning where any major changes will increment this version number, especially possible breaking changes or structural changes, etc.

Minor/Revision

Any time I publish a new version that isn't a major change I'll increment the revision. This may also be incremented for each build test and increment by more than one for each published version

Installation

All completed/tested/stable releases of this module will be published to powershell gallery. I don't currently have any plans to use github releases

Requirements

To install this module you need at least powershell v3, was created with 5.1 and intended to be cross platform compatible with powershell v6 and v7

To Install this module follow these steps...

Install From PSGallery

Manual Installation

The module is now installed.

Using The Module

The first time you try to run a command the settings.json file will automatically open in notepad on windows, nano on linux, or TextEdit on Mac You can also open the settings.json file and edit it manually before running your first command. The default settings are explanations of where to find the proper settings since json can't have comments

Once the settings are set you can have a jolly good time utilzing the fog documentation found here https://news.fogproject.org/simplified-api-documentation/ that was used to model the parameters

i.e.

Get-FogObject has a type param that validates to object, objectactivetasktype, and search as those are the options given in the documentation. Each of those types validates (which means autocompletion) to the core types listed in the documentation. So if you typed in Get-FogObject -Type object -Object h and then started hitting tab, it would loop through the possible core objects you can get from the api that start with 'h' such as history, host, etc.

Unless you filter a get with a json body it will return all the results into a powershell object. That object is easy to work with to create other commands. Note: Full Pipeline support will come at a later time i.e.

$hosts = Get-FogObject -Type Object -CoreObject Host# calls get on http://fog-server/fog/host to list all hosts Now you can search all your hosts for the one or ones you're looking for with powershell maybe you want to find all the hosts with 'IT' in the name (note '?' is an alias for Where-Object) $ITHosts = $hosts.hosts | ? name -match 'IT';

Now maybe you want to change the image all of these computers use to one named 'IT-Image' You can edit the object in powershell with a foreach-object ('%' is an alias for foreach-object) $updatedITHosts = $ITHosts | % { $_.imagename = 'IT-image'}

Then you need to convert that object to json and pass each object into one api call at a time. Which sounds complicated, but it's not, it's as easy as

$updateITHosts | % { 
    $jsonData = $_ | ConvertTo-Json;
    Update-FogObject -Type object -CoreObject host -objectID $_.id -jsonData $jsonData;
    #successful result of updated objects properties 
    #or any error messages will output to screen for each object
} 

This is just one small example of the limitless things you can do with the api and powershell objects.

see also the fogforum thread for the module https://forums.fogproject.org/topic/12026/powershell-api-module/2