src/client/GraphContext.ps1
# Copyright 2019, Adam Edwards # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. . (import-script ../client/GraphConnection) . (import-script ../client/LogicalGraphManager) . (import-script ../client/LocalProfile) ScriptClass GraphContext { $connection = $null $version = $null $name = $null $location = $null $state = $null $Id = $null $schemaId = $null function __initialize($connection, $apiversion, $name, $schemaId) { if ( ! $name ) { throw "Graph name must be specified" } $this.state = @{} $this.Id = new-guid $graphVersion = if ( $apiVersion ) { $apiVersion } else { $this.scriptclass |=> GetDefaultVersion } $this.connection = if ( $connection ) { $connection } else { $this.scriptclass |=> GetConnection } $this.version = $graphVersion $this.name = $name $this.location = $this.scriptclass |=> GetDefaultLocation $this.schemaId = if ( $schemaId ) { $schemaId } elseif ( $apiversion ) { $apiversion } else { [guid]::newguid().ToString() } } function GetState($stateKey) { $this.state[$stateKey] } function AddState($stateKey, $value) { $this.state.Add($stateKey, $value) } function SetState($stateKey, $value) { $this.state[$stateKey] = $value } function RemoveState($stateKey) { $this.state.Remove($stateKey) } function GetEndpoint { $this.connection.GraphEndpoint.Graph } function UpdateConnection($connection, $certificatePassword) { $newConnection = if ( $connection ) { write-verbose 'Connection specified to UpdateConnection' $connection } else { write-verbose 'No connection specified to UpdateConnection' $this.scriptclass |=> GetConnection } write-verbose 'Connecting...' $newConnection |=> Connect $certificatePassword write-verbose 'Connection succeeded.' if ( $this.connection |=> IsConnected ) { write-verbose 'Disconnecting existing context connection' $this.connection |=> Disconnect } else { write-verbose 'Skipping disconnect as existing context connection is not connected' } $this.connection = $newConnection } function SetLocation([PSCustomObject] $location) { if ( ! $location ) { throw [ArgumentException]::new('Cannot set the current location because the specified location was null.') } $this.location = $location } static { $current = $null $defaultContextName = $::.GraphEndpoint.DefaultGraphAPIVersion $defaultLocation = $null function __initialize { $::.LogicalGraphManager |=> __initialize $defaultProfile = $::.LocalProfile |=> GetDefaultProfile $defaultApiVersion = GetDefaultVersion $defaultConnection = if ( $defaultProfile ) { $defaultProfile |=> GetConnection if ( $defaultProfile.InitialApiVersion ) { $defaultApiVersion = $defaultProfile.InitialApiVersion } } if ( ! $defaultConnection ) { $defaultConnection = $::.GraphConnection |=> NewSimpleConnection Public } $currentContext = $::.LogicalGraphManager |=> Get |=> NewContext $null $defaultConnection $defaultApiVersion $defaultApiVersion $this.current = $currentContext.Name } function GetDefaultLocation { $this.defaultLocation } function SetDefaultLocation($location) { if ( ! $location ) { throw [ArgumentException]::new('Cannot set the default location because the specified location was null.') } $this.defaultLocation = $location } function FindContext($endpoint, $apiVersion) { $::.LogicalGraphManager |=> Get |=> FindContext $endpoint $apiVersion } function GetCurrent { if ( $this.current ) { write-verbose "Attempt to get current context -- current context is set to '$($this.current)'" $manager = $::.LogicalGraphManager |=> Get $manager |=> GetContext $this.current } else { write-verbose "Attempt to get current context -- no context is currently set" } } function SetCurrentByName($name) { if ( ! ($::.LogicalGraphManager |=> Get |=> GetContext $name) ) { throw "No such context: '$name'" } write-verbose "Setting current context to '$name'" $this.current = $name } function GetCurrentConnection { $context = GetCurrent if ( $context ) { $context.connection } } function DisconnectCurrentConnection { $context = GetCurrent if ( $context ) { if ($context.connection ) { $context.connection |=> Disconnect } } else { throw "Cannot disconnect the current context from Graph because there is no current context." } } function GetDefaultVersion { $::.GraphEndpoint.DefaultGraphAPIVersion } function __IsContextConnected($context) { $context -and ($context.connection |=> IsConnected) } function GetConnection($connection = $null, $context = $null, $cloud = $null, [String[]] $scopenames = $null, $anonymous = $null) { $currentContext = GetCurrent $chosenContext = $null $existingConnection = if ( $connection ) { write-verbose "Using supplied connection" $connection } elseif ( $context ) { write-verbose "Using connection from supplied context '$($context.name)'" $chosenContext = $context $context.connection } elseif ( $currentContext ) { write-verbose ("Found existing connection $($currentContext.connection.id) from current context '$($currentcontext.name)'. Requested cloud: '{0}'" -f $cloud) $isSameEndpoint = ! $cloud -or ( ( $cloud -ne 'Custom' ) -and $cloud -eq $currentContext.connection.GraphEndpoint.cloud ) if ( $isSameEndpoint -and ! $scopenames -and ! $anonymous ) { write-verbose "Current context is compatible with supplied arguments, will use it" $chosenContext = $currentContext $currentContext.connection } else { write-verbose "Current context is not compatible with supplied arguments, new connection required" } } $connectionScopes = if ( $scopeNames ) { $scopeNames } if ( $existingConnection ) { write-verbose "Using existing connection $($existingConnection.Id) supplied directly or obtained through a context" $existingConnection } else { write-verbose "No connection supplied and no compatible connection found from a context" $namedArguments=@{Anonymous=($anonymous -eq $true)} if ( $cloud ) { $namedArguments['Cloud'] = $cloud } $namedArguments['ScopeNames'] = $connectionScopes write-verbose "Custom arguments or no current context -- getting a new connection" $newConnection = $::.GraphConnection |=> NewSimpleConnection @namedArguments write-verbose "Created new connection $($newConnection.Id)" if ( $chosenContext ) { write-verbose ("Adding new connection to context '{0}'" -f $chosenContext.name) $chosenContext.connection = $newConnection } else { write-verbose 'New connection not associated with a context, not connecting it' } $newConnection } } } } $::.GraphContext |=> __initialize |