-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathGet-UpdatedPackage.ps1
68 lines (58 loc) · 2.96 KB
/
Get-UpdatedPackage.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
59
60
61
62
63
64
65
66
67
68
[CmdletBinding()]
Param (
[Parameter(Mandatory)]
[string]
$LocalRepo,
[Parameter(Mandatory)]
[string]
$LocalRepoApiKey,
[Parameter(Mandatory)]
[string]
$RemoteRepo
)
. "$PSScriptRoot\ConvertTo-ChocoObject.ps1"
if (([version] (choco --version).Split('-')[0]) -ge [version] '2.1.0') {
Write-Verbose "Clearing Chocolatey CLI cache to ensure latest package information is retrieved."
choco cache remove
}
$LocalRepoSource = $(choco source --limit-output | ConvertFrom-Csv -Delimiter '|' -Header Name, Uri, Disabled).Where{
$_.Uri -eq $LocalRepo -or
$_.Name -eq $LocalRepo
}[0]
Write-Verbose "Getting list of local packages from '$LocalRepo'."
$localPkgs = choco search --source $LocalRepo -r | ConvertTo-ChocoObject
Write-Verbose "Retrieved list of $(($localPkgs).count) packages from '$Localrepo'."
$localPkgs | ForEach-Object {
Write-Verbose "Getting remote package information for '$($_.name)'."
$remotePkg = choco search $_.name --source $RemoteRepo --exact -r | ConvertTo-ChocoObject
if ([version]($remotePkg.version) -gt ([version]$_.version)) {
Write-Verbose "Package '$($_.name)' has a remote version of '$($remotePkg.version)' which is later than the local version '$($_.version)'."
Write-Verbose "Internalizing package '$($_.name)' with version '$($remotePkg.version)'."
$tempPath = Join-Path -Path $env:TEMP -ChildPath ([GUID]::NewGuid()).GUID
choco download $_.name --no-progress --internalize --force --internalize-all-urls --append-use-original-location --output-directory=$tempPath --source=$RemoteRepo
if ($LASTEXITCODE -eq 0) {
try {
if ([bool]::Parse($LocalRepoSource.Disabled)) {choco source enable --name="$($LocalRepoSource.Name)" -r | Write-Verbose}
Write-Verbose "Pushing package '$($_.name)' to local repository '$LocalRepo'."
(Get-Item -Path (Join-Path -Path $tempPath -ChildPath "*.nupkg")).fullname | ForEach-Object {
choco push $_ --source $LocalRepo --api-key $LocalRepoApiKey --force
if ($LASTEXITCODE -eq 0) {
Write-Verbose "Package '$_' pushed to '$LocalRepo'."
}
else {
Write-Verbose "Package '$_' could not be pushed to '$LocalRepo'.`nThis could be because it already exists in the repository at a higher version and can be mostly ignored. Check error logs."
}
}
} finally {
if ([bool]::Parse($LocalRepoSource.Disabled)) {choco source disable --name="$($LocalRepoSource.Name)" -r | Write-Verbose}
}
}
else {
Write-Verbose "Failed to download package '$($_.name)'"
}
Remove-Item $tempPath -Recurse -Force
}
else {
Write-Verbose "Package '$($_.name)' has a remote version of '$($remotePkg.version)' which is not later than the local version '$($_.version)'."
}
}