Files
gomag-vending/update.ps1
Claude Agent 452bcd698e fix(update): restart service if stopped even when no git updates
Previously update.ps1 exited immediately when no updates were available,
leaving the service stopped if a prior restart had failed.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-01 14:02:47 +00:00

95 lines
2.8 KiB
PowerShell

# GoMag Vending - Update Script
# Ruleaza interactiv: .\update.ps1
# Ruleaza din scheduler: .\update.ps1 -Silent
param(
[switch]$Silent
)
$RepoPath = "C:\gomag-vending"
$TokenFile = Join-Path $RepoPath ".gittoken"
$LogFile = Join-Path $RepoPath "update.log"
function Log($msg, $color = "White") {
$ts = Get-Date -Format "yyyy-MM-dd HH:mm:ss"
if ($Silent) {
Add-Content -Path $LogFile -Value "$ts $msg"
} else {
Write-Host $msg -ForegroundColor $color
}
}
# Citire token
if (-not (Test-Path $TokenFile)) {
Log "EROARE: $TokenFile nu exista!" "Red"
exit 1
}
$token = (Get-Content $TokenFile -Raw).Trim()
# Safe directory (necesar cand ruleaza ca SYSTEM)
git config --global --add safe.directory $RepoPath 2>$null
# Fetch remote
Set-Location $RepoPath
$fetchUrl = "https://gomag-vending:$token@gitea.romfast.ro/romfast/gomag-vending.git"
$env:GIT_TERMINAL_PROMPT = "0"
$fetchOutput = & git -c credential.helper="" fetch $fetchUrl main 2>&1
$fetchExit = $LASTEXITCODE
if ($fetchExit -ne 0) {
Log "EROARE: git fetch esuat (exit=$fetchExit): $fetchOutput" "Red"
exit 1
}
# Compara local vs remote
$local = git rev-parse HEAD
$remote = git rev-parse FETCH_HEAD
if ($local -eq $remote) {
# Verify service is running even when no updates
$status = (nssm status GoMagVending 2>&1) -replace '\0',''
if ($status -ne 'SERVICE_RUNNING') {
Log "Nicio actualizare, dar serviciul nu ruleaza ($status). Restart..." "Yellow"
nssm restart GoMagVending 2>&1 | Out-Null
Start-Sleep -Seconds 3
$status = (nssm status GoMagVending 2>&1) -replace '\0',''
Log "Serviciu: $status" "Green"
} else {
Log "Nicio actualizare disponibila." "Gray"
}
exit 0
}
# Exista update-uri
$commits = git log --oneline "$local..$remote"
Log "==> Update disponibil ($($commits.Count) commit-uri noi)" "Cyan"
if (-not $Silent) {
$commits | ForEach-Object { Write-Host " $_" -ForegroundColor DarkGray }
}
# Discard local changes (productia nu trebuie editata manual)
Log "==> Discard local changes..." "Cyan"
git checkout -- . 2>&1 | Out-Null
git clean -fd 2>&1 | Out-Null
# Git pull
Log "==> Git pull..." "Cyan"
$pullOutput = & git -c credential.helper="" pull $fetchUrl 2>&1
$pullExit = $LASTEXITCODE
if ($pullExit -ne 0) {
Log "EROARE: git pull esuat (exit=$pullExit): $pullOutput" "Red"
exit 1
}
# Pip install (daca s-au schimbat dependintele)
Log "==> Verificare dependinte..." "Cyan"
& "$RepoPath\venv\Scripts\pip.exe" install -r "$RepoPath\api\requirements.txt" --quiet 2>&1 | Out-Null
# Restart serviciu
Log "==> Restart GoMagVending..." "Cyan"
nssm restart GoMagVending 2>&1 | Out-Null
Start-Sleep -Seconds 3
$status = (nssm status GoMagVending 2>&1) -replace '\0',''
Log "Serviciu: $status" "Green"
Log "Update complet!" "Green"