2022-11-02 18:38:31 +00:00
|
|
|
#Function to check Mods External Path
|
|
|
|
|
|
|
|
function Test-ModsPath ($ModsPath, $WingetUpdatePath) {
|
|
|
|
# URL, UNC or Local Path
|
|
|
|
# Get local and external Mods paths
|
|
|
|
$LocalMods = -join ($WingetUpdatePath, "\", "mods")
|
2022-11-02 23:19:59 +00:00
|
|
|
$ExternalMods = "$ModsPath"
|
2023-01-04 17:56:07 +00:00
|
|
|
|
2022-11-02 23:19:59 +00:00
|
|
|
#Get File Names Locally
|
2022-12-08 16:53:37 +00:00
|
|
|
$InternalModsNames = Get-ChildItem -Path $LocalMods -Name -Recurse -Include *.ps1, *.txt
|
2022-11-02 18:38:31 +00:00
|
|
|
|
|
|
|
# If path is URL
|
2022-11-03 23:09:53 +00:00
|
|
|
if ($ExternalMods -like "http*") {
|
|
|
|
# enable TLS 1.2 and TLS 1.1 protocols
|
|
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12, [Net.SecurityProtocolType]::Tls11
|
2022-11-06 05:37:34 +00:00
|
|
|
#Get Index of $ExternalMods (or index page with href listing of all the Mods)
|
2022-11-04 21:22:11 +00:00
|
|
|
try {
|
2022-11-14 23:04:54 +00:00
|
|
|
$WebResponse = Invoke-WebRequest -Uri $ExternalMods -UseBasicParsing
|
2022-11-04 21:22:11 +00:00
|
|
|
}
|
|
|
|
catch {
|
|
|
|
return $False
|
|
|
|
}
|
|
|
|
|
2022-11-05 19:52:51 +00:00
|
|
|
# Collect the external list of href links
|
2023-01-03 23:46:24 +00:00
|
|
|
$ModLinks = $WebResponse.Links | Select-Object -ExpandProperty HREF
|
2023-01-03 14:22:29 +00:00
|
|
|
|
|
|
|
#If there's a directory path in the HREF:s, delete it (IIS)
|
2023-01-03 23:46:24 +00:00
|
|
|
$CleanLinks = $ModLinks -replace "/.*/",""
|
2023-01-04 17:56:07 +00:00
|
|
|
|
2023-01-03 23:46:24 +00:00
|
|
|
#Modify strings to HREF:s
|
|
|
|
$index = 0
|
|
|
|
foreach ($Mod in $CleanLinks) {
|
|
|
|
if ($Mod) {
|
|
|
|
$CleanLinks[$index] = '<a href="' + $Mod + '"> ' + $Mod + '</a>'
|
|
|
|
}
|
|
|
|
$index++
|
|
|
|
}
|
2023-01-03 14:22:29 +00:00
|
|
|
|
2022-11-06 05:37:34 +00:00
|
|
|
#Delete Local Mods that don't exist Externally
|
2023-01-03 23:46:24 +00:00
|
|
|
$DeletedMods = 0
|
|
|
|
# 0 is the parent HTTP Directory
|
|
|
|
$index = 1
|
2023-01-04 17:56:07 +00:00
|
|
|
$CleanLinks = $ModLinks -replace "/.*/",""
|
2022-11-04 21:40:03 +00:00
|
|
|
foreach ($Mod in $InternalModsNames) {
|
2023-01-04 17:56:07 +00:00
|
|
|
If ($CleanLinks -notcontains "$Mod") {
|
2022-11-05 11:52:58 +00:00
|
|
|
Remove-Item $LocalMods\$Mod -Force -ErrorAction SilentlyContinue | Out-Null
|
|
|
|
$DeletedMods++
|
2022-11-04 21:40:03 +00:00
|
|
|
}
|
2023-01-03 23:46:24 +00:00
|
|
|
$index++
|
2022-11-03 23:09:53 +00:00
|
|
|
}
|
2022-11-04 21:22:11 +00:00
|
|
|
|
2023-01-04 17:56:07 +00:00
|
|
|
$CleanLinks = $ModLinks -replace "/.*/",""
|
|
|
|
|
2022-11-03 23:09:53 +00:00
|
|
|
#Loop through all links
|
2023-01-03 23:46:24 +00:00
|
|
|
$wc = New-Object System.Net.WebClient
|
2023-01-04 17:56:07 +00:00
|
|
|
$CleanLinks | ForEach-Object {
|
2022-12-08 16:53:37 +00:00
|
|
|
#Check for .ps1/.txt in listing/HREF:s in an index page pointing to .ps1/.txt
|
|
|
|
if (($_ -like "*.ps1") -or ($_ -like "*.txt")) {
|
2022-11-02 18:38:31 +00:00
|
|
|
try {
|
2022-11-08 00:09:52 +00:00
|
|
|
$dateExternalMod = ""
|
|
|
|
$dateLocalMod =""
|
2022-11-03 23:09:53 +00:00
|
|
|
$wc.OpenRead("$ExternalMods/$_").Close() | Out-Null
|
|
|
|
$dateExternalMod = ([DateTime]$wc.ResponseHeaders['Last-Modified']).ToString("yyyy-MM-dd HH:mm:ss")
|
|
|
|
if (Test-Path -Path $LocalMods"\"$_) {
|
|
|
|
$dateLocalMod = (Get-Item "$LocalMods\$_").LastWriteTime.ToString("yyyy-MM-dd HH:mm:ss")
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($dateExternalMod -gt $dateLocalMod) {
|
|
|
|
try {
|
|
|
|
$SaveMod = Join-Path -Path "$LocalMods\" -ChildPath $_
|
|
|
|
$Mod = '{0}/{1}' -f $ModsPath.TrimEnd('/'), $_
|
2022-11-14 23:04:54 +00:00
|
|
|
Invoke-WebRequest -Uri "$Mod" -OutFile $SaveMod -UseBasicParsing
|
2022-11-03 23:09:53 +00:00
|
|
|
$ModsUpdated++
|
|
|
|
}
|
|
|
|
catch {
|
|
|
|
return $False
|
|
|
|
}
|
|
|
|
}
|
2022-11-02 18:38:31 +00:00
|
|
|
}
|
|
|
|
catch {
|
|
|
|
return $False
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-11-05 00:12:13 +00:00
|
|
|
return $ModsUpdated, $DeletedMods
|
2022-11-02 18:38:31 +00:00
|
|
|
}
|
|
|
|
}
|