update.bat 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <# : This script file is dedicated to the public domain. SST itself is not.
  2. :: Note: the control flow in this file is pretty wacky, and for that, I apologise.
  3. @echo off
  4. pushd "%~dp0"
  5. powershell -WindowStyle hidden -NoProfile -NoLogo -ExecutionPolicy bypass "iex (${%~f0} | out-string)"
  6. if exist .sst-update.zip (
  7. del .sst-update.zip
  8. if exist sst-postupdate.bat (
  9. call sst-postupdate.bat
  10. del sst-postupdate.bat
  11. )
  12. :: if updated from game launch script, plugin can find out and display a message
  13. set SST_UPDATED=1
  14. )
  15. popd
  16. goto :eof
  17. #>
  18. $ProgressPreference = "SilentlyContinue"
  19. [System.Reflection.Assembly]::LoadWithPartialName('System.Windows.Forms') >$null
  20. $url = [IO.File]::ReadAllText("update-url").Trim()
  21. $realurl = $url
  22. $origurl = $url
  23. $h = @{}
  24. try {
  25. $etag = [IO.File]::ReadAllText("update-version")
  26. $h["If-None-Match"] = $etag
  27. }
  28. catch {}
  29. function errorbox {
  30. [System.Windows.Forms.MessageBox]::Show('Failed to check for SST updates. You may or may not be up to date!', 'Update error') >$null
  31. }
  32. for ($i = 0; $i -lt 10; $i++) {
  33. $r = Invoke-WebRequest -UseBasicParsing -UserAgent "sstupdate v2" -Uri $url -OutFile ".sst-update.zip" -PassThru -Headers $h -MaximumRedirection 0 -ErrorAction SilentlyContinue
  34. if ($r.StatusCode -eq 301) {
  35. $url = $r.Headers.Location
  36. $realurl = $url
  37. continue
  38. }
  39. if ($r.StatusCode -eq 302) { # don't immediately save a Found.
  40. $url = $r.Headers.Location
  41. continue
  42. }
  43. if ($r.StatusCode -eq 200 -or $r.StatusCode -eq 304) {
  44. if ($r.Headers.ETag) { [IO.File]::WriteAllText("update-version", $r.Headers.ETag) }
  45. if ($realurl -ne $origurl) { [IO.File]::WriteAllText("update-url", $realurl) }
  46. if ($r.StatusCode -eq 200) { Expand-Archive -Force -DestinationPath . .sst-update.zip }
  47. else { del .sst-update.zip } # stupid but oh well
  48. exit
  49. }
  50. errorbox
  51. exit
  52. }
  53. errorbox # too many redirects