wingetautoupdate/Winget-AutoUpdate/functions/Test-ListPath.ps1

59 lines
1.7 KiB
PowerShell
Raw Normal View History

2022-09-19 23:02:51 +00:00
#Function to check Black/White List External Path
2022-09-17 19:22:41 +00:00
function Test-ListPath ($ListPath, $UseWhiteList, $WingetUpdatePath) {
2022-09-23 16:00:46 +00:00
# URL, UNC or Local Path
2022-09-18 18:25:14 +00:00
if ($UseWhiteList){
2022-09-23 16:00:46 +00:00
$ListType="included_apps.txt"
2022-09-18 18:25:14 +00:00
}
else {
2022-09-23 16:00:46 +00:00
$ListType="excluded_apps.txt"
2022-09-18 18:25:14 +00:00
}
2022-09-23 16:00:46 +00:00
# Get local and external list paths
$LocalList = -join($WingetUpdatePath, "\", $ListType)
$ExternalList = -join($ListPath, "\", $ListType)
# Check if a list exists
2022-09-19 22:54:23 +00:00
if (Test-Path "$LocalList") {
$dateLocal = (Get-Item "$LocalList").LastWriteTime.ToString("yyyy-MM-dd HH:mm:ss")
}
2022-09-18 18:40:22 +00:00
2022-09-23 16:00:46 +00:00
# If path is URL
if ($ListPath -like "http*"){
$ExternalList = -join($ListPath, "/", $ListType)
2022-09-18 18:25:14 +00:00
$wc = New-Object System.Net.WebClient
try {
2022-09-19 21:10:00 +00:00
$wc.OpenRead("$ExternalList").Close() | Out-Null
2022-09-19 21:45:18 +00:00
$dateExternal = ([DateTime]$wc.ResponseHeaders['Last-Modified']).ToString("yyyy-MM-dd HH:mm:ss")
2022-09-19 21:10:00 +00:00
if ($dateExternal -gt $dateLocal) {
2022-09-20 01:08:06 +00:00
try {
$wc.DownloadFile($ExternalList, $LocalList)
}
catch {
return $False
}
2022-09-19 22:54:23 +00:00
return $true
2022-09-19 21:10:00 +00:00
}
}
catch {
2022-09-20 01:08:06 +00:00
return $False
2022-09-18 18:25:14 +00:00
}
}
2022-09-23 16:00:46 +00:00
# If path is UNC or local
2022-09-18 18:25:14 +00:00
else {
if(Test-Path -Path $ExternalList -PathType leaf){
2022-09-19 22:54:23 +00:00
$dateExternal = (Get-Item "$ExternalList").LastWriteTime.ToString("yyyy-MM-dd HH:mm:ss")
if ($dateExternal -gt $dateLocal) {
2022-09-20 01:08:06 +00:00
try {
Copy-Item $ExternalList -Destination $LocalList -Force
}
catch {
return $False
}
2022-09-19 22:54:23 +00:00
return $true
2022-09-18 18:25:14 +00:00
}
}
2022-09-18 18:25:14 +00:00
}
2022-09-19 23:02:51 +00:00
return $false
2022-09-18 18:25:14 +00:00
}