functions/utility/Invoke-PSCUCMAxlQuery.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
function Invoke-PSCUCMAxlQuery { [CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = "Low")] param ( [Parameter(Mandatory = $true)] [string] $Entity, [Parameter(Mandatory = $true)] [hashtable] $Parameters, [switch] $EnableException, [switch] $OutputXml ) $AXLVersion = Get-PSFConfigValue -FullName pscucm.axlversion if (-not $OutputXml) { $EnableException = $EnableException -or $(Get-PSFConfigValue -FullName pscucm.enableexception) if (-not (Get-PSFConfigValue -FullName pscucm.connected)) { Stop-PSFFunction -Message "Unable to process AXL request. Not connected." -EnableException $EnableException } $Server = Get-PSFConfigValue -FullName pscucm.server $Credential = Get-PSFConfigValue -FullName pscucm.credential } $params = '' foreach ($paramKey in $Parameters.Keys) { $inner = '' if ($Parameters[$paramKey].GetType() -eq [System.Collections.Hashtable]) { $innerHash = $Parameters[$paramKey] foreach ($innerKey in $innerHash.Keys) { $inner += '<{0}>{1}</{0}>' -f $innerKey, $innerHash[$innerKey] } } else { $inner = $Parameters[$paramKey] } $params += '<{0}>{1}</{0}>' -f $paramKey, $inner } $body = @' <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/{0}"> <soapenv:Header/> <soapenv:Body> <ns:{1}> {2} </ns:{1}> </soapenv:Body> </soapenv:Envelope> '@ -f $AXLVersion, $Entity, $params if (-not $OutputXml) { if ($PSCmdlet.ShouldProcess($Server, "Execute AXL query $Entity")) { $CUCMURL = "https://$Server/axl/" $headers = @{ 'Content-Type' = 'text/xml; charset=utf-8' } $IRMParams = @{ Headers = $headers Body = $body Uri = $CUCMURL Method = 'Post' Credential = $Credential } if (Get-PSFConfigValue -FullName pscucm.skipcertificatecheck) { if ($PSVersionTable.PSVersion.Major -ge 6) { $IRMParams.SkipCertificateCheck = $true } else { [System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true} } } try { Invoke-WebRequest @IRMParams | Select-XML -XPath '//return' | Select-Object -ExpandProperty Node } catch { $ErrorMessage = $_.ErrorDetails.message $PSFMessage = "Failed to execute AXL entity $Entity." if (($null -ne $ErrorMessage) -and ($_.Exception.Response.StatusCode -eq 'InternalServerError')) { $axlcode = ($ErrorMessage | select-xml -XPath '//axlcode' | Select-Object -ExpandProperty Node).'#text' $axlMessage = ($ErrorMessage | select-xml -XPath '//axlmessage' | Select-Object -ExpandProperty Node).'#text' $PSFMessage += " AXL Error: $axlMessage ($axlcode)" } Stop-PSFFunction -Message $PSFMessage -ErrorRecord $_ -EnableException $EnableException return } } } else { $body } } |