forked from aaronparker/evergreen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Get-MozillaFirefox.ps1
58 lines (52 loc) · 2.47 KB
/
Get-MozillaFirefox.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Function Get-MozillaFirefox {
<#
.SYNOPSIS
Returns downloads for the latest Mozilla Firefox releases.
.NOTES
Site: https://stealthpuppy.com
Author: Aaron Parker
Twitter: @stealthpuppy
#>
[OutputType([System.Management.Automation.PSObject])]
[CmdletBinding(SupportsShouldProcess = $false)]
param (
[Parameter(Mandatory = $false, Position = 0)]
[ValidateNotNull()]
[System.Management.Automation.PSObject]
$res = (Get-FunctionResource -AppName ("$($MyInvocation.MyCommand)".Split("-"))[1]),
[Parameter(Mandatory = $false, Position = 1)]
[ValidateNotNull()]
[System.String[]] $Language = @("en-US")
)
# Get latest Firefox version
$Versions = Invoke-RestMethodWrapper -Uri $res.Get.Update.Uri
# Construct custom object with output details
foreach ($currentLanguage in $Language) {
foreach ($channel in $res.Get.Update.Channels) {
foreach ($platform in $res.Get.Download.Platforms) {
# Select the download file for the selected platform
foreach ($installer in $res.Get.Download.Uri[$channel].GetEnumerator()) {
$params = @{
Uri = (($res.Get.Download.Uri[$channel][$installer.Key] -replace $res.Get.Download.ReplaceText.Platform, $platform) -replace $res.Get.Download.ReplaceText.Language, $currentLanguage)
WarningAction = "SilentlyContinue"
ErrorAction = "SilentlyContinue"
}
$Url = Resolve-InvokeWebRequest @params
if ($Null -ne $Url) {
# Build object and output to the pipeline
$PSObject = [PSCustomObject] @{
Version = $Versions.$channel -replace $res.Get.Download.ReplaceText.Version, ""
Architecture = Get-Architecture -String $platform
Channel = $channel
Language = $currentLanguage
Type = [System.IO.Path]::GetExtension($Url).Split(".")[-1]
Filename = (Split-Path -Path $Url -Leaf).Replace('%20', ' ')
URI = $Url
}
Write-Output -InputObject $PSObject
}
}
}
}
}
}