mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
35 lines
1.3 KiB
PowerShell
35 lines
1.3 KiB
PowerShell
function Get-IcingaDirectorSelfServiceConfig()
|
|
{
|
|
param(
|
|
$DirectorUrl,
|
|
$ApiKey = $null
|
|
);
|
|
|
|
if ([string]::IsNullOrEmpty($DirectorUrl)) {
|
|
throw 'Please enter a valid Url to your Icinga Director';
|
|
}
|
|
|
|
if ([string]::IsNullOrEmpty($ApiKey)) {
|
|
throw 'Please enter either a template or your host key. If this message persists, ensure your host is not having a template key assigned already. If so, you can try dropping it within the Icinga Director.';
|
|
}
|
|
|
|
$ProgressPreference = "SilentlyContinue";
|
|
|
|
$EndpointUrl = Join-WebPath -Path $DirectorUrl -ChildPath ([string]::Format('/self-service/powershell-parameters?key={0}', $ApiKey));
|
|
|
|
$response = Invoke-WebRequest -Uri $EndpointUrl -UseBasicParsing -Headers @{ 'accept' = 'application/json'; 'X-Director-Accept' = 'application/json' } -Method 'POST';
|
|
|
|
if ($response.StatusCode -ne 200) {
|
|
throw $response.Content;
|
|
}
|
|
|
|
$JsonContent = ConvertFrom-Json -InputObject $response.Content;
|
|
|
|
if (Test-PSCustomObjectMember -PSObject $JsonContent -Name 'error') {
|
|
throw 'Icinga Director Self-Service has thrown an error: ' + $JsonContent.error;
|
|
}
|
|
|
|
$JsonContent = Add-PSCustomObjectMember -Object $JsonContent -Key 'IcingaMaster' -Value $response.BaseResponse.ResponseUri.Host;
|
|
|
|
return $JsonContent;
|
|
}
|