Public/Authentication/Connect-CWC.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 |
function Connect-CWC { [CmdletBinding()] param( [Parameter(Mandatory=$true)] [string]$Server, [Parameter(Mandatory = $True)] [pscredential]$Credentials, [switch]$Force ) if ($script:CWCServerConnection -and !$Force) { Write-Verbose "Using cached Authentication information." return } $Server = $Server -replace("http.*:\/\/",'') $encodedCredentials = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes("$($Credentials.UserName):$($Credentials.GetNetworkCredential().Password)")) $Headers = @{ 'authorization' = "Basic $encodedCredentials" 'content-type' = "application/json; charset=utf-8" 'origin' = "https://$Server" } $script:CWCServerConnection = @{ Server = $Server Headers = $Headers } Write-Verbose '$CWCServerConnection, variable initialized.' } |