TestPanSoftware.ps1

# MacOS testing with PS 7, $PSVersionTable.Platform will exist and be 'Unix'
if($PSVersionTable.Platform -eq 'Unix') {
    Import-Module "/Users/jpfu/Library/Mobile Documents/com~apple~CloudDocs/Repos/powerpan/PowerPAN.psd1"
}
else {
    Import-Module "C:\Users\JohnUrbanek\iCloudDrive\Repos\powerpan\PowerPAN.psd1"
}

$VerbosePreference = 'Continue'
$InformationPreference = 'Continue'
$DebugPreference = 'Continue'
<#

TODO:

DONE Get-PanJob
DONE Invoke-PanSoftware
DONE Update Invoke-PanSoftware -Info (add a new parameter) to return [PanSoftware]
DONE Update Invoke-PanSoftware -Check to return [PanSoftware]
DONE Define new [PanSoftware] Class
DONE Define new [PanHaState] Class
DONE Invoke-PanHaState (needed for below workflow)
    - Info, Suspend, Functional
TODO Invoke-PanHaState -HaEnabled
DONE Update PanJob to use DateTimeOffset and TimeZoneInfo
INPROGRESS: Invoke-PanCommit
    - Commit and Validate support
    - Full and partial support
    - Used for disabling Preemption before HA, maybe?
    - Invoke-PanCommit is needed anyway. Should have it.

ADD foreach $F in $F1,$F2 to Install and Restart Phases to minimize code copy/paste
    - Will need to take into account Preemption
    - Which might mean adding the Suspend and Test phase to the foreach loop as well
    - If preemption is enabled, need to ensure both F's get updated

    Preemption Enabled (3 Failovers when testing HA before update)
        F1 active
        F2 passive

        Download as needed

        F1 goes suspend, test, install, restart
        F2 becomes active (failover 1)

        F1 returns and preempts active role, forcing another failover (failover 2)
        F2 yields

        F2 goes suspend, test, install, and restart
        F1 becomes active (failover 3)

        F2 returns to passive role

        NEED TO BUILD IN LOGIC TO WAIT FOR PREEMPTION TO OCCUR
        
        DO WE OFFER AN OPTION TO DISABLE PREEMPTION FIRST? Would require a commit?
        THEN RESTORE PREEMPTION WHEN DONE? Would require a commit
    
    Preemption Disabled (2 Failovers when testing HA before update)
        F1 active
        F2 passive

        Download as needed

        F1 goes suspend, test, install, restart
        F2 becomes active (failover 1)

        F1 returns as passive role, no failover on return
        F2 remains active after F1 return

        F2 goes suspend, test, install, and restart
        F1 becomes active (failover 2)

        F2 returns to passive role

#>


$D = Get-PanDevice "192.168.250.250"
Get-PanDevice "192.168.250.250" | Invoke-PanHaState
# Invoke-PanCommit -Device $D -Commit -Partial -Force -Description "crap"
# Invoke-PanCommit -Device $D -Commit -Full -Force
# Invoke-PanCommit -Device $D -Validate -Full
# Invoke-PanSoftware -Device $D -Info



#Get-PanJob -Device $D -All
#Invoke-PanSoftware -Device $D -Install -Version "11.2.4-h5" -Verbose -Debug

# Invoke-PanSoftware -Device $D -Info
#Invoke-PanHaState -Device $D -Info

#$Response = Invoke-PanXApi -Device $D -Config -Get -XPath "/config/devices/entry[@name='localhost.localdomain']/deviceconfig/system/timezone"
#$PanTz = $Response.result.timezone

$MyKey = 'LUFRPT1IWU95bmtTQnNGczNscFRTTy9LN2R3cVZrOWs9aWdJKzc0Z3VObEZ3ZUJjc3EyR0lkbjVnQ0w1ZENON01MQS95TnNuKzM1ZXRrY3gxYXhFSUdlREY1VzJiaXZBVg=='








<# ALEC V. Session
 $fw = "192.168.250.250"
$apikey = "LUFRPT1pZ2dDb2krQ3JOQms2dmdCNUxHbjgvNnFsU289aWdJKzc0Z3VObEZ3ZUJjc3EyR0lkbjVnQ0w1ZENON01MQS95TnNuKzM1Y3V3aTlPRzMvUGZLVXJ6Z1ZROGxVWA=="
# $Cmd = "<show><global-protect-portal><current-user></current-user></global-protect-portal></show>"
$Cmd = "<show><global-protect-gateway><current-user></current-user></global-protect-gateway></show>"

 $Uri = 'https://{0}/api/?type=op&cmd={1}&key={2}' -f $fw,$Cmd,$apikey

 $Response = Invoke-WebRequest -Method Get -Uri $Uri -UseBasicParsing -SkipCertificateCheck
#>