DSCResources/cOctopusServerGoogleAppsAuthentication/cOctopusServerGoogleAppsAuthentication.psm1
$octopusServerExePath = "$($env:ProgramFiles)\Octopus Deploy\Octopus\Octopus.Server.exe" # dot-source the helper file (cannot load as a module due to scope considerations) . (Join-Path -Path (Split-Path (Split-Path $PSScriptRoot -Parent) -Parent) -ChildPath 'OctopusDSCHelpers.ps1') function Get-TargetResource { [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSDSCUseVerboseMessageInDSCResource", "")] [OutputType([Hashtable])] param ( [Parameter(Mandatory)] [ValidateNotNullOrEmpty()] [string]$InstanceName, [Parameter(Mandatory)] [boolean]$Enabled, [Parameter(Mandatory)] [string]$ClientID, [Parameter(Mandatory)] [string]$HostedDomain ) # check octopus installed if (-not (Test-Path -LiteralPath $octopusServerExePath)) { throw "Unable to find Octopus (checked for existence of file '$octopusServerExePath')." } # check octopus version >= 3.5.0 if (-not (Test-OctopusVersionSupportsAuthenticationProvider)) { throw "This resource only supports Octopus Deploy 3.5.0+." } $config = Get-ServerConfiguration $InstanceName $result = @{ InstanceName = $InstanceName Enabled = $config.Octopus.GoogleApps.IsEnabled ClientID = $config.Octopus.GoogleApps.ClientId HostedDomain = $config.Octopus.GoogleApps.HostedDomain } return $result } function Set-TargetResource { [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSDSCUseVerboseMessageInDSCResource", "")] param ( [Parameter(Mandatory)] [ValidateNotNullOrEmpty()] [string]$InstanceName, [Parameter(Mandatory)] [boolean]$Enabled, [Parameter(Mandatory)] [string]$ClientID, [Parameter(Mandatory)] [string]$HostedDomain ) $args = @( 'configure', '--console', '--instance', $InstanceName, '--googleAppsIsEnabled', $Enabled, '--googleAppsClientId', $ClientID, '--googleAppsHostedDomain', $HostedDomain ) Invoke-OctopusServerCommand $args } function Test-TargetResource { [OutputType([boolean])] param ( [Parameter(Mandatory)] [ValidateNotNullOrEmpty()] [string]$InstanceName, [Parameter(Mandatory)] [boolean]$Enabled, [Parameter(Mandatory)] [string]$ClientID, [Parameter(Mandatory)] [string]$HostedDomain ) $currentResource = (Get-TargetResource -InstanceName $InstanceName ` -Enabled $Enabled ` -ClientID $ClientID ` -HostedDomain $HostedDomain) $params = Get-ODSCParameter $MyInvocation.MyCommand.Parameters $currentConfigurationMatchesRequestedConfiguration = $true foreach ($key in $currentResource.Keys) { $currentValue = $currentResource.Item($key) $requestedValue = $params.Item($key) if ($currentValue -ne $requestedValue) { Write-Verbose "(FOUND MISMATCH) Configuration parameter '$key' with value '$currentValue' mismatched the specified value '$requestedValue'" $currentConfigurationMatchesRequestedConfiguration = $false } else { Write-Verbose "Configuration parameter '$key' matches the requested value '$requestedValue'" } } return $currentConfigurationMatchesRequestedConfiguration } function Test-OctopusVersionSupportsAuthenticationProvider { if (-not (Test-Path -LiteralPath $octopusServerExePath)) { throw "Octopus.Server.exe path '$octopusServerExePath' does not exist." } $exeFile = Get-Item -LiteralPath $octopusServerExePath -ErrorAction Stop if ($exeFile -isnot [System.IO.FileInfo]) { throw "Octopus.Server.exe path '$octopusServerExePath ' does not refer to a file." } $fileVersion = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($octopusServerExePath).FileVersion $octopusServerVersion = New-Object System.Version $fileVersion $versionWhereAuthenticationProvidersWereIntroduced = New-Object System.Version 3, 5, 0 return ($octopusServerVersion -ge $versionWhereAuthenticationProvidersWereIntroduced) } |