mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
73 lines
2.9 KiB
PowerShell
73 lines
2.9 KiB
PowerShell
function Get-IcingaAgentMSIPackage()
|
|
{
|
|
param(
|
|
[string]$Source,
|
|
[string]$Version,
|
|
[switch]$SkipDownload
|
|
);
|
|
|
|
if ([string]::IsNullOrEmpty($Version)) {
|
|
throw 'Please specify a valid version: "release", "snapshot" or a specific version like "2.11.0"';
|
|
}
|
|
|
|
if ([string]::IsNullOrEmpty($Source)) {
|
|
throw 'Please specify a valid download URL, like "https://packages.icinga.com/windows/"';
|
|
}
|
|
|
|
Set-IcingaTLSVersion;
|
|
# Disable the progress bar for the WebRequest
|
|
$ProgressPreference = "SilentlyContinue";
|
|
$Architecture = Get-IcingaAgentArchitecture;
|
|
$LastUpdate = $null;
|
|
|
|
if ($Version -eq 'snapshot' -Or $Version -eq 'release') {
|
|
$Content = (Invoke-WebRequest -Uri $Source -UseBasicParsing).RawContent.Split("`r`n");
|
|
$UsePackage = $null;
|
|
|
|
foreach ($line in $Content) {
|
|
if ($line -like '*.msi*' -And $line -like "*$Architecture.msi*") {
|
|
$MSIPackage = $line.SubString(
|
|
$line.IndexOf('Icinga2-'),
|
|
$line.IndexOf('.msi') - $line.IndexOf('Icinga2-')
|
|
);
|
|
$LastUpdate = $line.SubString(
|
|
$line.IndexOf('indexcollastmod">') + 17,
|
|
$line.Length - $line.IndexOf('indexcollastmod">') - 17
|
|
);
|
|
$LastUpdate = $LastUpdate.SubString(0, $LastUpdate.IndexOf(' '));
|
|
$LastUpdate = $LastUpdate.Replace('-', '');
|
|
$MSIPackage = [string]::Format('{0}.msi', $MSIPackage);
|
|
if ($Version -eq 'snapshot') {
|
|
if ($line -like '*snapshot*') {
|
|
$UsePackage = $MSIPackage;
|
|
break;
|
|
}
|
|
} elseif ($Version -eq 'release') {
|
|
if ($line -like '*snapshot*' -Or $line -like '*-rc*') {
|
|
continue;
|
|
}
|
|
$UsePackage = $MSIPackage;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
$UsePackage = [string]::Format('Icinga2-v{0}-{1}.msi', $Version, $Architecture);
|
|
}
|
|
|
|
if ($null -eq $UsePackage) {
|
|
throw 'No Icinga installation MSI package for your architecture could be found for the provided version and source';
|
|
}
|
|
|
|
if ($SkipDownload -eq $FALSE) {
|
|
$DownloadPath = Join-Path $Env:TEMP -ChildPath $UsePackage;
|
|
Write-IcingaConsoleNotice ([string]::Format('Downloading Icinga 2 Agent installer "{0}" into temp directory "{1}"', $UsePackage, $DownloadPath));
|
|
Invoke-WebRequest -Uri (Join-WebPath -Path $Source -ChildPath $UsePackage) -OutFile $DownloadPath;
|
|
}
|
|
|
|
return @{
|
|
'InstallerPath' = $DownloadPath;
|
|
'Version' = ($UsePackage).Replace('Icinga2-v', '').Replace([string]::Format('-{0}.msi', $Architecture), '')
|
|
'LastUpdate' = $LastUpdate;
|
|
}
|
|
}
|