wingetautoupdate/Winget-AutoUpdate/functions/Update-WAU.ps1

66 lines
2.8 KiB
PowerShell
Raw Normal View History

2022-03-14 13:55:02 +00:00
2022-03-22 13:39:01 +00:00
function Update-WAU ($VersionToUpdate){
2022-03-14 13:55:02 +00:00
#Send available update notification
$Title = $NotifLocale.local.outputs.output[2].title -f "Winget-AutoUpdate"
$Message = $NotifLocale.local.outputs.output[2].message -f $CurrentVersion, $LatestVersion.Replace("v","")
$MessageType = "info"
$Balise = "Winget-AutoUpdate"
Start-NotifTask $Title $Message $MessageType $Balise
#Run WAU update
try{
#Force to create a zip file
$ZipFile = "$WorkingDir\WAU_update.zip"
New-Item $ZipFile -ItemType File -Force | Out-Null
#Download the zip
2022-03-22 13:39:01 +00:00
Write-Log "Starting downloading the GitHub Repository version $VersionToUpdate"
Invoke-RestMethod -Uri "https://github.com/Romanitho/Winget-AutoUpdate/archive/refs/tags/v$($VersionToUpdate).zip/" -OutFile $ZipFile
Write-Log "Download finished" "Green"
2022-03-14 13:55:02 +00:00
#Extract Zip File
Write-Log "Starting unzipping the WAU GitHub Repository"
$location = "$WorkingDir\WAU_update"
Expand-Archive -Path $ZipFile -DestinationPath $location -Force
Get-ChildItem -Path $location -Recurse | Unblock-File
2022-03-22 13:39:01 +00:00
Write-Log "Unzip finished" "Green"
2022-03-22 17:19:30 +00:00
$TempPath = (Resolve-Path "$location\*\Winget-AutoUpdate\")[0].Path
$TempPath = (Resolve-Path "$location\*\Winget-AutoUpdate\")[0].Path
if ($TempPath){
Copy-Item -Path "$TempPath\*" -Destination "$WorkingDir\" -Exclude "icons" -Recurse -Force
}
2022-03-14 13:55:02 +00:00
#Remove update zip file
Write-Log "Cleaning temp files"
Remove-Item -Path $ZipFile -Force -ErrorAction SilentlyContinue
#Remove update folder
Remove-Item -Path $location -Recurse -Force -ErrorAction SilentlyContinue
2022-03-22 13:39:01 +00:00
#Set new version to about.xml
2022-03-14 13:55:02 +00:00
[xml]$XMLconf = Get-content "$WorkingDir\config\about.xml" -Encoding UTF8 -ErrorAction SilentlyContinue
2022-03-22 13:39:01 +00:00
$XMLconf.app.version = $VersionToUpdate
2022-03-14 13:55:02 +00:00
$XMLconf.Save("$WorkingDir\config\about.xml")
#Send success Notif
$Title = $NotifLocale.local.outputs.output[3].title -f "Winget-AutoUpdate"
$Message = $NotifLocale.local.outputs.output[3].message -f $LatestVersion
$MessageType = "success"
$Balise = "Winget-AutoUpdate"
Start-NotifTask $Title $Message $MessageType $Balise
#Rerun with newer version
2022-03-22 13:39:01 +00:00
Write-Log "Re-run WAU"
Start-Process powershell -ArgumentList "-NoProfile -ExecutionPolicy Bypass -Command `"$WorkingDir\winget-upgrade`""
2022-03-14 13:55:02 +00:00
exit
}
catch{
#Send Error Notif
$Title = $NotifLocale.local.outputs.output[4].title -f "Winget-AutoUpdate"
$Message = $NotifLocale.local.outputs.output[4].message
$MessageType = "error"
$Balise = "Winget-AutoUpdate"
Start-NotifTask $Title $Message $MessageType $Balise
Write-Log "WAU Update failed"
}
2022-03-21 22:37:39 +00:00
}