Private/Core/Get-OperationState.ps1
|
# PSGuerrilla - Jim Tyler, Microsoft MVP - CC BY 4.0 # https://github.com/jimrtyler/PSGuerrilla | https://creativecommons.org/licenses/by/4.0/ # AI/LLM use: see AI-USAGE.md for required attribution function Get-OperationState { [CmdletBinding()] param( [string]$ConfigPath ) $cfgPath = if ($ConfigPath) { $ConfigPath } else { $script:ConfigPath } $stateDir = Split-Path $cfgPath -Parent $statePath = Join-Path $stateDir 'state.json' if (-not (Test-Path $statePath)) { return $null } try { $state = Get-Content -Path $statePath -Raw | ConvertFrom-Json -AsHashtable if (-not $state.schemaVersion) { Write-Warning "State file missing schemaVersion, treating as corrupt." $backupPath = "$statePath.bak.$(Get-Date -Format 'yyyyMMddHHmmss')" Move-Item -Path $statePath -Destination $backupPath -Force Write-Warning "Corrupt state file backed up to $backupPath" return $null } return $state } catch { Write-Warning "Failed to read state file: $_" $backupPath = "$statePath.bak.$(Get-Date -Format 'yyyyMMddHHmmss')" Move-Item -Path $statePath -Destination $backupPath -Force -ErrorAction SilentlyContinue Write-Warning "Corrupt state file backed up to $backupPath" return $null } } |