GitHubConfiguration.ps1
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. # The GitHub API token is stored in the password field. [PSCredential] $script:accessTokenCredential = $null # The location of the file that we'll store any settings that can/should roam with the user. [string] $script:configurationFilePath = [System.IO.Path]::Combine( [Environment]::GetFolderPath('ApplicationData'), 'Microsoft', 'PowerShellForGitHub', 'config.json') # The location of the file that we'll store the Access Token SecureString # which cannot/should not roam with the user. [string] $script:accessTokenFilePath = [System.IO.Path]::Combine( [Environment]::GetFolderPath('LocalApplicationData'), 'Microsoft', 'PowerShellForGitHub', 'accessToken.txt') # Only tell users about needing to configure an API token once per session. $script:seenTokenWarningThisSession = $false # The session-cached copy of the module's configuration properties [PSCustomObject] $script:configuration = $null function Initialize-GitHubConfiguration { <# .SYNOPSIS Populates the configuration of the module for this session, loading in any values that may have been saved to disk. .DESCRIPTION Populates the configuration of the module for this session, loading in any values that may have been saved to disk. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .NOTES Internal helper method. This is actually invoked at the END of this file. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param() $script:seenTokenWarningThisSession = $false $script:configuration = Import-GitHubConfiguration -Path $script:configurationFilePath } function Set-GitHubConfiguration { <# .SYNOPSIS Change the value of a configuration property for the PowerShellForGitHub module, for the sesion only, or globally for this user. .DESCRIPTION Change the value of a configuration property for the PowerShellForGitHub module, for the sesion only, or globally for this user. A single call to this method can set any number or combination of properties. To change any of the boolean/switch properties to false, specify the switch, immediately followed by ":$false" with no space. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER ApplicationInsightsKey Change the Application Insights instance that telemetry will be reported to (if telemetry hasn't been disabled via DisableTelemetry). .PARAMETER AssemblyPath The location that any dependent assemblies that this module depends on can be located. If the assemblies can't be found at this location, nor in a temporary cache or in the module's directory, the assemblies will be downloaded and temporarily cached. .PARAMETER DefaultNoStatus Control if the -NoStatus switch should be passed-in by default to all methods. .PARAMETER DefaultOwnerName The owner name that should be used with a command that takes OwnerName as a parameter when no value has been supplied. .PARAMETER DefaultRepositoryName The owner name that should be used with a command that takes RepositoryName as a parameter when no value has been supplied. .PARAMETER DisableLogging Specify this switch to stop the module from logging all activity to a log file located at the location specified by LogPath. .PARAMETER DisablePiiProtection Specify this switch to disable the hashing of potential PII data prior to submitting the data to telemetry (if telemetry hasn't been disabled via DisableTelemetry). .PARAMETER DisableSmarterObjects By deffault, this module will modify all objects returned by the API calls to update any properties that can be converted to objects (like strings for Date/Time's being converted to real DateTime objects). Enable this property if you desire getting back the unmodified version of the object from the API. .PARAMETER DisableTelemetry Specify this switch to stop the module from reporting any of its usage (which would be used for diagnostics purposes). .PARAMETER LogPath The location of the log file that all activity will be written to if DisableLogging remains $false. .PARAMETER LogProcessId If specified, the Process ID of the current PowerShell session will be included in each log entry. This can be useful if you have concurrent PowerShell sessions all logging to the same file, as it would then be possible to filter results based on ProcessId. .PARAMETER LogRequestBody If specified, the JSON body of the REST request will be logged to verbose output. This can be helpful for debugging purposes. .PARAMETER LogTimeAsUtc If specified, all times logged will be logged as UTC instead of the local timezone. .PARAMETER RetryDelaySeconds The number of seconds to wait before retrying a command again after receiving a 202 response. .PARAMETER SuppressNoTokenWarning If an Access Token has not been configured, this module will provide a warning to the user informing them of this, once per session. If it is expected that this module will regularly be used without configuring an Access Token, specify this switch to always suppress that warning message. .PARAMETER SuppressTelemetryReminder When telemetry is enabled, a warning will be printed to the console once per session informing users that telemetry is occurring. Setting this value will suppress that message from showing up ever again. .PARAMETER WebRequestTimeoutSec The number of seconds that should be allowed before an API request times out. A value of 0 indicates an infinite timeout, however experience has shown that PowerShell doesn't seem to always honor inifinite timeouts. Hence, this value can be configured if need be. .PARAMETER SessionOnly By default, this method will store the configuration values in a local file so that changes persist across PowerShell sessions. If this switch is provided, the file will not be created/updated and the specified configuration changes will only remain in memory/effect for the duration of this PowerShell session. .EXAMPLE Set-GitHubConfiguration -WebRequestTimeoutSec 120 -SuppressNoTokenWarning Changes the timeout permitted for a web request to two minutes, and additionally tells the module to never warn about no Access Token being configured. These settings will be persisted across future PowerShell sessions. .EXAMPLE Set-GitHubConfiguration -DisableLogging -SessionOnly Disables the logging of any activity to the logfile specified in LogPath, but for this session only. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [string] $ApplicationInsightsKey, [string] $AssemblyPath, [switch] $DefaultNoStatus, [string] $DefaultOwnerName, [string] $DefaultRepositoryName, [switch] $DisableLogging, [switch] $DisablePiiProtection, [switch] $DisableSmarterObjects, [switch] $DisableTelemetry, [string] $LogPath, [switch] $LogProcessId, [switch] $LogRequestBody, [switch] $LogTimeAsUtc, [int] $RetryDelaySeconds, [switch] $SuppressNoTokenWarning, [switch] $SuppressTelemetryReminder, [ValidateRange(0, 3600)] [int] $WebRequestTimeoutSec, [switch] $SessionOnly ) $persistedConfig = $null if (-not $SessionOnly) { $persistedConfig = Read-GitHubConfiguration -Path $script:configurationFilePath } $properties = Get-Member -InputObject $script:configuration -MemberType NoteProperty | Select-Object -ExpandProperty Name foreach ($name in $properties) { if ($PSBoundParameters.ContainsKey($name)) { $value = $PSBoundParameters.$name if ($value -is [switch]) { $value = $value.ToBool() } $script:configuration.$name = $value if (-not $SessionOnly) { Add-Member -InputObject $persistedConfig -Name $name -Value $value -MemberType NoteProperty -Force } } } if (-not $SessionOnly) { Save-GitHubConfiguration -Configuration $persistedConfig -Path $script:configurationFilePath } } function Get-GitHubConfiguration { <# .SYNOPSIS Gets the currently configured value for the requested configuration setting. .DESCRIPTION Gets the currently configured value for the requested configuration setting. Always returns the value for this session, which may or may not be the persisted setting (that all depends on whether or not the setting was previously modified during this session using Set-GitHubCOnfiguration -SessionOnly). The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER Name The name of the configuration whose value is desired. .EXAMPLE Get-GitHubConfiguration -Name WebRequestTimeoutSec Gets the currently configured value for WebRequestTimeoutSec for this PowerShell session (which may or may not be the same as the persisted configuration value, depending on whether this value was modified during this session with Set-GitHubConfiguration -SessionOnly). #> [CmdletBinding()] param( [Parameter(Mandatory)] [ValidateSet( 'ApplicationInsightsKey', 'AssemblyPath', 'DefaultNoStatus', 'DefaultOwnerName', 'DefaultRepositoryName', 'DisableLogging', 'DisablePiiProtection', 'DisableSmarterObjects', 'DisableTelemetry', 'LogPath', 'LogProcessId', 'LogRequestBody', 'LogTimeAsUtc', 'RetryDelaySeconds', 'SuppressNoTokenWarning', 'SuppressTelemetryReminder', 'WebRequestTimeoutSec')] [string] $Name ) return $script:configuration.$Name } function Save-GitHubConfiguration { <# .SYNOPSIS Serializes the provided settings object to disk as a JSON file. .DESCRIPTION Serializes the provided settings object to disk as a JSON file. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER Configuration The configuration object to persist to disk. .PARAMETER Path The path to the file on disk that Configuration should be persisted to. .NOTES Internal helper method. .EXAMPLE Save-GitHubConfiguration -Configuration $config -Path 'c:\foo\config.json' Serializes $config as a JSON object to 'c:\foo\config.json' #> [CmdletBinding()] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [Parameter(Mandatory)] [PSCustomObject] $Configuration, [Parameter(Mandatory)] [string] $Path ) $null = New-Item -Path $Path -Force ConvertTo-Json -InputObject $Configuration | Set-Content -Path $Path -Force -ErrorAction SilentlyContinue -ErrorVariable ev if (($null -ne $ev) -and ($ev.Count -gt 0)) { Write-Log -Message "Failed to persist these updated settings to disk. They will remain for this PowerShell session only." -Level Warning -Exception $ev[0] } } function Test-PropertyExists { <# .SYNOPSIS Determines if an object contains a property with a specified name. .DESCRIPTION Determines if an object contains a property with a specified name. This is essentially using Get-Member to verify that a property exists, but additionally adds a check to ensure that InputObject isn't null. .PARAMETER InputObject The object to check to see if it has a property named Name. .PARAMETER Name The name of the property on InputObject that is being tested for. .EXAMPLE Test-PropertyExists -InputObject $listing -Name 'title' Returns $true if $listing is non-null and has a property named 'title'. Returns $false otherwise. .NOTES Internal-only helper method. #> [CmdletBinding()] [OutputType([bool])] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseSingularNouns", "", Justification="Exists isn't a noun and isn't violating the intention of this rule.")] param( [Parameter(Mandatory)] [AllowNull()] $InputObject, [Parameter(Mandatory)] [String] $Name ) return (($null -ne $InputObject) -and ($null -ne (Get-Member -InputObject $InputObject -Name $Name -MemberType Properties))) } function Resolve-PropertyValue { <# .SYNOPSIS Returns the requested property from the provided object, if it exists and is a valid value. Otherwise, returns the default value. .DESCRIPTION Returns the requested property from the provided object, if it exists and is a valid value. Otherwise, returns the default value. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER InputObject The object to check the value of the requested property. .PARAMETER Name The name of the property on InputObject whose value is desired. .PARAMETER Type The type of the value stored in the Name property on InputObject. Used to validate that the property has a valid value. .PARAMETER DefaultValue The value to return if Name doesn't exist on InputObject or is of an invalid type. .EXAMPLE Resolve-PropertyValue -InputObject $config -Name defaultOwnerName -Type String -DefaultValue $null Checks $config to see if it has a property named "defaultOwnerName". If it does, and it's a string, returns that value, otherwise, returns $null (the DefaultValue). #> [CmdletBinding()] param( [PSCustomObject] $InputObject, [Parameter(Mandatory)] [string] $Name, [Parameter(Mandatory)] [ValidateSet('String', 'Boolean', 'Int32', 'Int64')] [String] $Type, $DefaultValue ) if ($null -eq $InputObject) { return $DefaultValue } $typeType = [String] if ($Type -eq 'Boolean') { $typeType = [Boolean] } if ($Type -eq 'Int32') { $typeType = [Int32] } if ($Type -eq 'Int64') { $typeType = [Int64] } if (Test-PropertyExists -InputObject $InputObject -Name $Name) { if ($InputObject.$Name -is $typeType) { return $InputObject.$Name } else { Write-Log "The locally cached $Name configuration was not of type $Type. Reverting to default value." -Level Warning return $DefaultValue } } else { return $DefaultValue } } function Reset-GitHubConfiguration { <# .SYNOPSIS Clears out the user's configuration file and configures this session with all default configuration values. .DESCRIPTION Clears out the user's configuration file and configures this session with all default configuration values. This would be the functional equivalent of using this on a completely different computer. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER SessionOnly By default, this will delete the location configuration file so that all defaults are used again. If this is specified, then only the configuration values that were made during this session will be discarded. .EXAMPLE Reset-GitHubConfiguration Deletes the local configuration file and loads in all default configration values. #> [CmdletBinding(SupportsShouldProcess)] param( [switch] $SessionOnly ) Set-TelemetryEvent -EventName Reset-GitHubConfiguration if (-not $SessionOnly) { if ($PSCmdlet.ShouldProcess($script:configurationFilePath, "Delete configuration file")) { $null = Remove-Item -Path $script:configurationFilePath -Force -ErrorAction SilentlyContinue -ErrorVariable ev } if (($null -ne $ev) -and ($ev.Count -gt 0) -and ($ev[0].FullyQualifiedErrorId -notlike 'PathNotFound*')) { Write-Log -Message "Reset was unsuccessful. Experienced a problem trying to remove the file [$script:configurationFilePath]." -Level Warning -Exception $ev[0] } } Initialize-GitHubConfiguration Write-Log -Message "This has not cleared your authentication token. Call Clear-GitHubAuthentication to accomplish that." -Level Warning } function Read-GitHubConfiguration { <# .SYNOPSIS Loads in the default configuration values and returns the deserialized object. .DESCRIPTION Loads in the default configuration values and returns the deserialized object. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER Path The file that may or may not exist with a serialized version of the configuration values for this module. .OUTPUTS PSCustomObject .NOTES Internal helper method. No side-effects. .EXAMPLE Read-GitHubConfiguration -Path 'c:\foo\config.json' Returns back an object with the deserialized object contained in the specified file, if it exists and is valid. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [string] $Path ) $content = Get-Content -Path $Path -Encoding UTF8 -ErrorAction Ignore if (-not [String]::IsNullOrEmpty($content)) { try { return ($content | ConvertFrom-Json) } catch { Write-Log -Message 'The configuration file for this module is in an invalid state. Use Reset-GitHubConfiguration to recover.' -Level Warning } } return [PSCustomObject]@{} } function Import-GitHubConfiguration { <# .SYNOPSIS Loads in the default configuration values, and then updates the individual properties with values that may exist in a file. .DESCRIPTION Loads in the default configuration values, and then updates the individual properties with values that may exist in a file. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER Path The file that may or may not exist with a serialized version of the configuration values for this module. .OUTPUTS PSCustomObject .NOTES Internal helper method. No side-effects. .EXAMPLE Import-GitHubConfiguration -Path 'c:\foo\config.json' Creates a new default config object and updates its values with any that are found within a deserialized object from the content in $Path. The configuration object is then returned. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [string] $Path ) # Create a configuration object with all the default values. We can then update the values # with any that we find on disk. $logPath = [String]::Empty $documentsFolder = [System.Environment]::GetFolderPath('MyDocuments') if (-not [System.String]::IsNullOrEmpty($documentsFolder)) { $logPath = Join-Path -Path $documentsFolder -ChildPath 'PowerShellForGitHub.log' } $config = [PSCustomObject]@{ 'applicationInsightsKey' = '66d83c52-3070-489b-886b-09860e05e78a' 'assemblyPath' = [String]::Empty 'disableLogging' = ([String]::IsNullOrEmpty($logPath)) 'disablePiiProtection' = $false 'disableSmarterObjects' = $false 'disableTelemetry' = $false 'defaultNoStatus' = $false 'defaultOwnerName' = [String]::Empty 'defaultRepositoryName' = [String]::Empty 'logPath' = $logPath 'logProcessId' = $false 'logRequestBody' = $false 'logTimeAsUtc' = $false 'retryDelaySeconds' = 30 'suppressNoTokenWarning' = $false 'suppressTelemetryReminder' = $false 'webRequestTimeoutSec' = 0 } $jsonObject = Read-GitHubConfiguration -Path $Path Get-Member -InputObject $config -MemberType NoteProperty | ForEach-Object { $name = $_.Name $type = $config.$name.GetType().Name $config.$name = Resolve-PropertyValue -InputObject $jsonObject -Name $name -Type $type -DefaultValue $config.$name } return $config } function Backup-GitHubConfiguration { <# .SYNOPSIS Exports the user's current configuration file. .DESCRIPTION Exports the user's current configuration file. This is primarily used for unit testing scenarios. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER Path The path to store the user's current configuration file. .PARAMETER Force If specified, will overwrite the contents of any file with the same name at th location specified by Path. .EXAMPLE Backup-GitHubConfiguration -Path 'c:\foo\config.json' Writes the user's current configuration file to c:\foo\config.json. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [string] $Path, [switch] $Force ) # Make sure that the path that we're going to be storing the file exists. $null = New-Item -Path (Split-Path -Path $Path -Parent) -ItemType Directory -Force if (Test-Path -Path $script:configurationFilePath -PathType Leaf) { $null = Copy-Item -Path $script:configurationFilePath -Destination $Path -Force:$Force } else { ConvertTo-Json -InputObject @{} | Set-Content -Path $Path -Force:$Force } } function Restore-GitHubConfiguration { <# .SYNOPSIS Sets the specified file to be the user's configuration file. .DESCRIPTION Sets the specified file to be the user's configuration file. This is primarily used for unit testing scenarios. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER Path The path to store the user's current configuration file. .EXAMPLE Restore-GitHubConfiguration -Path 'c:\foo\config.json' Makes the contents of c:\foo\config.json be the user's configuration for the module. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [ValidateScript({if (Test-Path -Path $_ -PathType Leaf) { $true } else { throw "$_ does not exist." }})] [string] $Path ) # Make sure that the path that we're going to be storing the file exists. $null = New-Item -Path (Split-Path -Path $script:configurationFilePath -Parent) -ItemType Directory -Force $null = Copy-Item -Path $Path -Destination $script:configurationFilePath -Force Initialize-GitHubConfiguration } function Resolve-ParameterWithDefaultConfigurationValue { <# .SYNOPSIS Some of the configuration properties act as default values to be used for some functions. This will determine what the correct final value should be by inspecting the calling functions inbound parameters, along with the corresponding configuration value. .DESCRIPTION Some of the configuration properties act as default values to be used for some functions. This will determine what the correct final value should be by inspecting the calling functions inbound parameters, along with the corresponding configuration value. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER BoundParameters The inbound parameters from the calling method. No need to explicitly provide this if you're using the PSBoundParameters from the function that is calling this directly. .PARAMETER Name The name of the parameter in BoundParameters. .PARAMETER ConfigValueName The name of the cofiguration property that should be used as default if Name doesn't exist in BoundParameters. .PARAMETER NonEmptyStringRequired If specified, will throw an exception if the resolved value to be returned would end up being null or an empty string. .EXAMPLE Resolve-ParameterWithDefaultConfigurationValue -BoundParameters $PSBoundParameters -Name NoStatus -ConfigValueName DefaultNoStatus Checks to see if the NoStatus switch was provided by the user from the calling method. If so, uses that value. otherwise uses the DefaultNoStatus value currently configured. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( $BoundParameters = (Get-Variable -Name PSBoundParameters -Scope 1 -ValueOnly), [Parameter(Mandatory)] [string] $Name, [Parameter(Mandatory)] [String] $ConfigValueName, [switch] $NonEmptyStringRequired ) $value = $null if ($BoundParameters.ContainsKey($Name)) { $value = $BoundParameters[$Name] } else { $value = (Get-GitHubConfiguration -Name $ConfigValueName) } if ($NonEmptyStringRequired -and [String]::IsNullOrEmpty($value)) { $message = "A value must be provided for $Name either as a parameter, or as a default configuration value ($ConfigValueName) via Set-GitHubConfiguration." Write-Log -Message $message -Level Error throw $message } else { return $value } } function Set-GitHubAuthentication { <# .SYNOPSIS Allows the user to configure the API token that should be used for authentication with the GitHub API. .DESCRIPTION Allows the user to configure the API token that should be used for authentication with the GitHub API. The token will be stored on the machine as a SecureString and will automatically be read on future PowerShell sessions with this module. If the user ever wishes to remove their authentication from the system, they simply need to call Clear-GitHubAuthentication. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER Credential If provided, instead of prompting the user for their API Token, it will be extracted from the password field of this credential object. .PARAMETER SessionOnly By default, this method will store the provided API Token as a SecureString in a local file so that it can be restored automatically in future PowerShell sessions. If this switch is provided, the file will not be created/updated and the authentication information will only remain in memory for the duration of this PowerShell session. .EXAMPLE Set-GitHubAuthentication Prompts the user for their GitHub API Token and stores it in a file on the machine as a SecureString for use in future PowerShell sessions. .EXAMPLE $secureString = ("<Your Access Token>" | ConvertTo-SecureString) $cred = New-Object System.Management.Automation.PSCredential "username is ignored", $secureString Set-GitHubAuthentication -Credential $cred Uses the API token stored in the password field of the provided credential object for authentication, and stores it in a file on the machine as a SecureString for use in future PowerShell sessions. .EXAMPLE Set-GitHubAuthentication -SessionOnly Prompts the user for their GitHub API Token, but keeps it in memory only for the duration of this PowerShell session. .EXAMPLE Set-GitHubAuthentication -Credential $cred -SessionOnly Uses the API token stored in the password field of the provided credential object for authentication, but keeps it in memory only for the duration of this PowerShell session.. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUsePSCredentialType", "", Justification="The System.Management.Automation.Credential() attribute does not appear to work in PowerShell v4 which we need to support.")] param( [PSCredential] $Credential, [switch] $SessionOnly ) Write-InvocationLog if (-not $PSBoundParameters.ContainsKey('Credential')) { $message = 'Please provide your GitHub API Token in the Password field. You can enter anything in the username field (it will be ignored).' if (-not $SessionOnly) { $message = $message + ' ***The token is being cached across PowerShell sessions. To clear caching, call Clear-GitHubAuthentication.***' } Write-Log -Message $message $Credential = Get-Credential -Message $message } if ([String]::IsNullOrWhiteSpace($Credential.GetNetworkCredential().Password)) { $message = "The API Token was not provided in the password field. Nothing to do." Write-Log -Message $message -Level Error throw $message } $script:accessTokenCredential = $Credential if (-not $SessionOnly) { if ($PSCmdlet.ShouldProcess("Store API token as a SecureString in a local file")) { $null = New-Item -Path $script:accessTokenFilePath -Force $script:accessTokenCredential.Password | ConvertFrom-SecureString | Set-Content -Path $script:accessTokenFilePath -Force } } } function Clear-GitHubAuthentication { <# .SYNOPSIS Clears out any GitHub API token from memory, as well as from local file storage. .DESCRIPTION Clears out any GitHub API token from memory, as well as from local file storage. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER SessionOnly By default, this will clear out the cache in memory, as well as in the local configuration file. If this switch is specified, authentication will be cleared out in this session only -- the local configuration file cache will remain (and thus still be available in a new PowerShell session). .EXAMPLE Clear-GitHubAuthentication Clears out any GitHub API token from memory, as well as from local file storage. #> [CmdletBinding(SupportsShouldProcess)] param( [switch] $SessionOnly ) Write-InvocationLog Set-TelemetryEvent -EventName Clear-GitHubAuthentication if ($PSCmdlet.ShouldProcess("Clear memory cache")) { $script:accessTokenCredential = $null } if (-not $SessionOnly) { if ($PSCmdlet.ShouldProcess("Clear file-based cache")) { Remove-Item -Path $script:accessTokenFilePath -Force -ErrorAction SilentlyContinue -ErrorVariable ev if (($null -ne $ev) -and ($ev.Count -gt 0) -and ($ev[0].FullyQualifiedErrorId -notlike 'PathNotFound*')) { Write-Log -Message "Experienced a problem trying to remove the file that persists the Access Token [$script:accessTokenFilePath]." -Level Warning -Exception $ev[0] } } } Write-Log -Message "This has not cleared your configuration settings. Call Reset-GitHubConfiguration to accomplish that." -Level Warning } function Get-AccessToken { <# .SYNOPSIS Retrieves the API token for use in the rest of the module. .DESCRIPTION Retrieves the API token for use in the rest of the module. First will try to use the one that may have been provided as a parameter. If not provided, then will try to use the one already cached in memory. If still not found, will look to see if there is a file with the API token stored as a SecureString. Finally, if there is still no available token, none will be used. The user will then be subjected to tighter hourly query restrictions. The Git repo for this module can be found here: http://aka.ms/PowershellForGitHub .PARAMETER AccessToken If provided, this will be returned instead of using the cached/configured value .OUTPUTS System.String #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSAvoidGlobalVars", "", Justification="For back-compat with v0.1.0, this still supports the deprecated method of using a global variable for storing the Access Token.")] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] [OutputType([String])] param( [string] $AccessToken ) if (-not [String]::IsNullOrEmpty($AccessToken)) { return $AccessToken } if ($null -ne $script:accessTokenCredential) { $token = $script:accessTokenCredential.GetNetworkCredential().Password if (-not [String]::IsNullOrEmpty($token)) { return $token } } $content = Get-Content -Path $script:accessTokenFilePath -ErrorAction Ignore if (-not [String]::IsNullOrEmpty($content)) { try { $secureString = $content | ConvertTo-SecureString Write-Log -Message "Restoring Access Token from file. This value can be cleared in the future by calling Clear-GitHubAuthentication." -Level Verbose $script:accessTokenCredential = New-Object System.Management.Automation.PSCredential "<username is ignored>", $secureString return $script:accessTokenCredential.GetNetworkCredential().Password } catch { Write-Log -Message 'The Access Token file for this module contains an invalid SecureString (files can''t be shared by users or computers). Use Set-GitHubAuthentication to update it.' -Level Warning } } if (-not [String]::IsNullOrEmpty($global:gitHubApiToken)) { Write-Log -Message 'Storing the Access Token in `$global:gitHubApiToken` is insecure and is no longer recommended. To cache your Access Token for use across future PowerShell sessions, please use Set-GitHubAuthentication instead.' -Level Warning return $global:gitHubApiToken } if ((-not (Get-GitHubConfiguration -Name SuppressNoTokenWarning)) -and (-not $script:seenTokenWarningThisSession)) { $script:seenTokenWarningThisSession = $true Write-Log -Message 'This module has not yet been configured with a personal GitHub Access token. The module can still be used, but GitHub will limit your usage to 60 queries per hour. You can get a GitHub API token from https://github.com/settings/tokens/new (provide a description and check any appropriate scopes).' -Level Warning } return $null } function Test-GitHubAuthenticationConfigured { <# .SYNOPSIS Indicates if a GitHub API Token has been configured for this module via Set-GitHubAuthentication. .DESCRIPTION Indicates if a GitHub API Token has been configured for this module via Set-GitHubAuthentication. The Git repo for this module can be found here: http://aka.ms/PowershellForGitHub .OUTPUTS Boolean .EXAMPLE Test-GitHubAuthenticationConfigured Returns $true if the session is authenticated; $false otherwise #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] [OutputType([Boolean])] param() return (-not [String]::IsNullOrWhiteSpace((Get-AccessToken))) } Initialize-GitHubConfiguration # SIG # Begin signature block # MIIdkgYJKoZIhvcNAQcCoIIdgzCCHX8CAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB # gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR # AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUb1m8K7m0nfCYPQybN5dozQ/h # ZXqgghhuMIIE2jCCA8KgAwIBAgITMwAAAQRkiNk5fPOWxwAAAAABBDANBgkqhkiG # 9w0BAQUFADB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G # A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEw # HwYDVQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwHhcNMTgwODIzMjAyMDI0 # WhcNMTkxMTIzMjAyMDI0WjCByjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAldBMRAw # DgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x # LTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEm # MCQGA1UECxMdVGhhbGVzIFRTUyBFU046OEQ0MS00QkY3LUIzQjcxJTAjBgNVBAMT # HE1pY3Jvc29mdCBUaW1lLVN0YW1wIHNlcnZpY2UwggEiMA0GCSqGSIb3DQEBAQUA # A4IBDwAwggEKAoIBAQC1gq+cu32pqHFCVNBArToafinIGtiggW7uGhpgEClrIdmn # pT4K0z3S/50PTC8erU1rLsmhM2pTL6RPRjtTBoCeQyvc89VaKmAX0+9oGFXSRVOe # gmymS9O621z/wMUs1hKaXKSLm646cafbnkj8bb0JoKBiYH21B7EHYo1XAb5TtujT # PNMUN8ZNM0KvsI2ReD82o5NPCyK2ImaZQGGVAIYwUI3cN9nGCzZxLIU/t9faPY8S # /DLqjJPmivDVm7v6uYeS3Os3YDVU1kH9pNeRJA3UEyW7lBmZC+4VRqz09BMOIBRI # 26cNRW6jXeVWQn5EGltiZFPAfX1PAn4+jwm0jkNDAgMBAAGjggEJMIIBBTAdBgNV # HQ4EFgQUFXfx3wkrUOa+m1RJ93w3t/ARFLkwHwYDVR0jBBgwFoAUIzT42VJGcArt # QPt2+7MrsMM1sw8wVAYDVR0fBE0wSzBJoEegRYZDaHR0cDovL2NybC5taWNyb3Nv # ZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljcm9zb2Z0VGltZVN0YW1wUENBLmNy # bDBYBggrBgEFBQcBAQRMMEowSAYIKwYBBQUHMAKGPGh0dHA6Ly93d3cubWljcm9z # b2Z0LmNvbS9wa2kvY2VydHMvTWljcm9zb2Z0VGltZVN0YW1wUENBLmNydDATBgNV # HSUEDDAKBggrBgEFBQcDCDANBgkqhkiG9w0BAQUFAAOCAQEAJj/6ScX0CG8z96Ji # vZm8uW5Xfpfwp47ECxnXhyEnYZLsvgk7DYswCknEE+CRiyYchHJgd3kyD7bx2WJA # iv/DM02ll6swsIMHhM3Q7WVX4i/K+HPiHR1TRjK5iE9VfvZpAe55ZIaqSKKvlvsp # r1Y/UfuYwCUyZJ3R5ZCFgXn9dK2sebcPhKgL86t6Rup5xz8EJ3ZO5PB1Nu1rp+Qy # hoduiDE1ZqXZeQHwW4Eb9gQhHxrm9GjwtWcMaPYWIP/k75NTSBvBZ7RYIguOoZ9s # /uOp+61s9FcoZmP07DcukoIAuQAOi9U+8iuGorNErlrmb6cpKaOmnz9FmlJrWOmB # DdarbDCCBgMwggProAMCAQICEzMAAAEEaeLbufuKDYMAAAAAAQQwDQYJKoZIhvcN # AQELBQAwfjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNV # BAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYG # A1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMTAeFw0xODA3MTIy # MDA4NDlaFw0xOTA3MjYyMDA4NDlaMHQxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX # YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg # Q29ycG9yYXRpb24xHjAcBgNVBAMTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjCCASIw # DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJvFlfKX9v8jamydc1lzOJvTtOOE # rY24PiXnoLggWkqRcDjYFKi9msD9DWse7OH8/wQ84mFgrlVqYZL71wB9nuppNtb9 # V3kZl/6EkfbHVa2mrgKK7bGRR1bNSodmRacwGxrtrHtrBdIzgnO+xm8czNToGgUV # AC6Rl7ZLyGFnIovnExJowhcUryZatu5Vc3z1RLMhJwYA67U2+fwmiq0/f0QUw3q7 # I8iL3r4WisEhogIB2X+YkuIxU4+HsZAkmxf6FU3KAWwQbFICopNfYgNBJIxwp3As # jUsv1zNZXP1d4D/X5IQXu30+edOCQ2JUQMibXs9wFDtgPGk/nzfn+BaSM4sCAwEA # AaOCAYIwggF+MB8GA1UdJQQYMBYGCisGAQQBgjdMCAEGCCsGAQUFBwMDMB0GA1Ud # DgQWBBS6F+MlaPS71Xsjpri2fOemgqtXrjBUBgNVHREETTBLpEkwRzEtMCsGA1UE # CxMkTWljcm9zb2Z0IElyZWxhbmQgT3BlcmF0aW9ucyBMaW1pdGVkMRYwFAYDVQQF # Ew0yMzAwMTIrNDM3OTY2MB8GA1UdIwQYMBaAFEhuZOVQBdOCqhc3NyK1bajKdQKV # MFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lv # cHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0wNy0wOC5jcmwwYQYIKwYBBQUH # AQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtp # b3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0wNy0wOC5jcnQwDAYDVR0T # AQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAKcWCCzmZIAzoJFuJOzhQkoOV25Hy # O9Kk8NqBW3OOZ0gatsmKB3labM7D/GaYF7K716YWtQNWhXsqfS9ABk6eaddpFBWO # Y/vMgPXbEZxQ7ksCcUxrBwX+Z1PxGbZubizyj9RFKeE2CLIceIEnloeZQhh3lNzG # vJ2k21amNtBDSF9ABH5n6YjYAMfrMv/eCndgA3P+nqHHHfPAsy1hh8jxN4Xc/G08 # SxNKEna1UEpN513zTyHkmBKBgf7pXKj8FIzRAp9l+3Z1t2JTx33ax7pC4m57Jkoj # gjLYjXUeEW+Lf3oG1aofGKVwE+fuaJ0HvAbpiQOWDGriIaslA9i3ARHhxCKWKTF8 # w1VO0BznRcZmAIoVIcTFAXAd4mgBOQ8iIcmoc39w2Cz09WnlSWw5paKpyns51fl3 # bzBzg5bAo4uu5X/dY03aFct7+R3ljsQ6qkr0LUVmn/JeuEkXOePfHUmJYYu6M69e # Quoa1PVRU/GlXZKbh2e4dqsGVeGu1YOvOf8gMYtc5vq1B8+GJ8dBAiM5bVlOLsB4 # rzpJY2zieOAjdtQrqGcAPGVSWDDSeOl47e27KX2iHzjl7FnHk5lF+QCIykR6R9Ym # R83UCcK1epAMPRYWfreU20ZSAEoeuT1pyVFlatU/EcQtN5dfksINMQya1ll38FBI # h4l2k9jzfUqwItgwggYHMIID76ADAgECAgphFmg0AAAAAAAcMA0GCSqGSIb3DQEB # BQUAMF8xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAXBgoJkiaJk/IsZAEZFgltaWNy # b3NvZnQxLTArBgNVBAMTJE1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv # cml0eTAeFw0wNzA0MDMxMjUzMDlaFw0yMTA0MDMxMzAzMDlaMHcxCzAJBgNVBAYT # AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD # VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xITAfBgNVBAMTGE1pY3Jvc29mdCBU # aW1lLVN0YW1wIFBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ+h # bLHf20iSKnxrLhnhveLjxZlRI1Ctzt0YTiQP7tGn0UytdDAgEesH1VSVFUmUG0KS # rphcMCbaAGvoe73siQcP9w4EmPCJzB/LMySHnfL0Zxws/HvniB3q506jocEjU8qN # +kXPCdBer9CwQgSi+aZsk2fXKNxGU7CG0OUoRi4nrIZPVVIM5AMs+2qQkDBuh/NZ # MJ36ftaXs+ghl3740hPzCLdTbVK0RZCfSABKR2YRJylmqJfk0waBSqL5hKcRRxQJ # gp+E7VV4/gGaHVAIhQAQMEbtt94jRrvELVSfrx54QTF3zJvfO4OToWECtR0Nsfz3 # m7IBziJLVP/5BcPCIAsCAwEAAaOCAaswggGnMA8GA1UdEwEB/wQFMAMBAf8wHQYD # VR0OBBYEFCM0+NlSRnAK7UD7dvuzK7DDNbMPMAsGA1UdDwQEAwIBhjAQBgkrBgEE # AYI3FQEEAwIBADCBmAYDVR0jBIGQMIGNgBQOrIJgQFYnl+UlE/wq4QpTlVnkpKFj # pGEwXzETMBEGCgmSJomT8ixkARkWA2NvbTEZMBcGCgmSJomT8ixkARkWCW1pY3Jv # c29mdDEtMCsGA1UEAxMkTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9y # aXR5ghB5rRahSqClrUxzWPQHEy5lMFAGA1UdHwRJMEcwRaBDoEGGP2h0dHA6Ly9j # cmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL21pY3Jvc29mdHJvb3Rj # ZXJ0LmNybDBUBggrBgEFBQcBAQRIMEYwRAYIKwYBBQUHMAKGOGh0dHA6Ly93d3cu # bWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljcm9zb2Z0Um9vdENlcnQuY3J0MBMG # A1UdJQQMMAoGCCsGAQUFBwMIMA0GCSqGSIb3DQEBBQUAA4ICAQAQl4rDXANENt3p # tK132855UU0BsS50cVttDBOrzr57j7gu1BKijG1iuFcCy04gE1CZ3XpA4le7r1ia # HOEdAYasu3jyi9DsOwHu4r6PCgXIjUji8FMV3U+rkuTnjWrVgMHmlPIGL4UD6ZEq # JCJw+/b85HiZLg33B+JwvBhOnY5rCnKVuKE5nGctxVEO6mJcPxaYiyA/4gcaMvnM # MUp2MT0rcgvI6nA9/4UKE9/CCmGO8Ne4F+tOi3/FNSteo7/rvH0LQnvUU3Ih7jDK # u3hlXFsBFwoUDtLaFJj1PLlmWLMtL+f5hYbMUVbonXCUbKw5TNT2eb+qGHpiKe+i # myk0BncaYsk9Hm0fgvALxyy7z0Oz5fnsfbXjpKh0NbhOxXEjEiZ2CzxSjHFaRkMU # vLOzsE1nyJ9C/4B5IYCeFTBm6EISXhrIniIh0EPpK+m79EjMLNTYMoBMJipIJF9a # 6lbvpt6Znco6b72BJ3QGEe52Ib+bgsEnVLaxaj2JoXZhtG6hE6a/qkfwEm/9ijJs # sv7fUciMI8lmvZ0dhxJkAj0tr1mPuOQh5bWwymO0eFQF1EEuUKyUsKV4q7OglnUa # 2ZKHE3UiLzKoCG6gW4wlv6DvhMoh1useT8ma7kng9wFlb4kLfchpyOZu6qeXzjEp # /w7FW1zYTRuh2Povnj8uVRZryROj/TCCB3owggVioAMCAQICCmEOkNIAAAAAAAMw # DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n # dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y # YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv # cml0eSAyMDExMB4XDTExMDcwODIwNTkwOVoXDTI2MDcwODIxMDkwOVowfjELMAkG # A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx # HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z # b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMTCCAiIwDQYJKoZIhvcNAQEBBQADggIP # ADCCAgoCggIBAKvw+nIQHC6t2G6qghBNNLrytlghn0IbKmvpWlCquAY4GgRJun/D # DB7dN2vGEtgL8DjCmQawyDnVARQxQtOJDXlkh36UYCRsr55JnOloXtLfm1OyCizD # r9mpK656Ca/XllnKYBoF6WZ26DJSJhIv56sIUM+zRLdd2MQuA3WraPPLbfM6XKEW # 9Ea64DhkrG5kNXimoGMPLdNAk/jj3gcN1Vx5pUkp5w2+oBN3vpQ97/vjK1oQH01W # KKJ6cuASOrdJXtjt7UORg9l7snuGG9k+sYxd6IlPhBryoS9Z5JA7La4zWMW3Pv4y # 07MDPbGyr5I4ftKdgCz1TlaRITUlwzluZH9TupwPrRkjhMv0ugOGjfdf8NBSv4yU # h7zAIXQlXxgotswnKDglmDlKNs98sZKuHCOnqWbsYR9q4ShJnV+I4iVd0yFLPlLE # tVc/JAPw0XpbL9Uj43BdD1FGd7P4AOG8rAKCX9vAFbO9G9RVS+c5oQ/pI0m8GLhE # fEXkwcNyeuBy5yTfv0aZxe/CHFfbg43sTUkwp6uO3+xbn6/83bBm4sGXgXvt1u1L # 50kppxMopqd9Z4DmimJ4X7IvhNdXnFy/dygo8e1twyiPLI9AN0/B4YVEicQJTMXU # pUMvdJX3bvh4IFgsE11glZo+TzOE2rCIF96eTvSWsLxGoGyY0uDWiIwLAgMBAAGj # ggHtMIIB6TAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQUSG5k5VAF04KqFzc3 # IrVtqMp1ApUwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGG # MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUci06AjGQQ7kUBU7h6qfHMdEj # iTQwWgYDVR0fBFMwUTBPoE2gS4ZJaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3Br # aS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNybDBe # BggrBgEFBQcBAQRSMFAwTgYIKwYBBQUHMAKGQmh0dHA6Ly93d3cubWljcm9zb2Z0 # LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNydDCB # nwYDVR0gBIGXMIGUMIGRBgkrBgEEAYI3LgMwgYMwPwYIKwYBBQUHAgEWM2h0dHA6 # Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvZG9jcy9wcmltYXJ5Y3BzLmh0bTBA # BggrBgEFBQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBwAG8AbABpAGMAeQBfAHMAdABh # AHQAZQBtAGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAZ/KGpZjgVHkaLtPY # dGcimwuWEeFjkplCln3SeQyQwWVfLiw++MNy0W2D/r4/6ArKO79HqaPzadtjvyI1 # pZddZYSQfYtGUFXYDJJ80hpLHPM8QotS0LD9a+M+By4pm+Y9G6XUtR13lDni6WTJ # RD14eiPzE32mkHSDjfTLJgJGKsKKELukqQUMm+1o+mgulaAqPyprWEljHwlpblqY # luSD9MCP80Yr3vw70L01724lruWvJ+3Q3fMOr5kol5hNDj0L8giJ1h/DMhji8MUt # zluetEk5CsYKwsatruWy2dsViFFFWDgycScaf7H0J/jeLDogaZiyWYlobm+nt3TD # QAUGpgEqKD6CPxNNZgvAs0314Y9/HG8VfUWnduVAKmWjw11SYobDHWM2l4bf2vP4 # 8hahmifhzaWX0O5dY0HjWwechz4GdwbRBrF1HxS+YWG18NzGGwS+30HHDiju3mUv # 7Jf2oVyW2ADWoUa9WfOXpQlLSBCZgB/QACnFsZulP0V3HjXG0qKin3p6IvpIlR+r # +0cjgPWe+L9rt0uX4ut1eBrs6jeZeRhL/9azI2h15q/6/IvrC4DqaTuv/DDtBEyO # 3991bWORPdGdVk5Pv4BXIqF4ETIheu9BCrE/+6jMpF3BoYibV3FWTkhFwELJm3Zb # CoBIa/15n8G9bW1qyVJzEw16UM0xggSOMIIEigIBATCBlTB+MQswCQYDVQQGEwJV # UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE # ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSgwJgYDVQQDEx9NaWNyb3NvZnQgQ29k # ZSBTaWduaW5nIFBDQSAyMDExAhMzAAABBGni27n7ig2DAAAAAAEEMAkGBSsOAwIa # BQCggaIwGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEO # MAwGCisGAQQBgjcCARUwIwYJKoZIhvcNAQkEMRYEFHekETpaYhoFXYCFjcZXfKez # CB+XMEIGCisGAQQBgjcCAQwxNDAyoBSAEgBNAGkAYwByAG8AcwBvAGYAdKEagBho # dHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20wDQYJKoZIhvcNAQEBBQAEggEAcrEf57Yh # kGKWs4zHSMzXzvC8VKbWO9wszcH5biawsqa3hLuRxTn6h/KIDV+4RpwpQzYfJAPB # GIMw3aPn4JmnwJcUkkHg7KXdaGg2o+Xdhngfx67vV7MKurJbk+uDyYBl6j9Ubaao # xaEPgSQZ8ucaE5bddV3R2cWe1EXnlwZfKW5YozorW4Erch/B4ZvG1z/i6V0fORyi # ETOUN47xtDRobix9lUrZbq9WuuSMg0p2pYN7n24UPGIMXS3zj9DPPSPkfweUM6vL # 2jsLGTKJScoWeRt9kHxctMI02XKQNOjrXUr+1MOABLfWkawmMZD30SBozcF6I4A6 # czeh/NkKOuxEQaGCAigwggIkBgkqhkiG9w0BCQYxggIVMIICEQIBATCBjjB3MQsw # CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u # ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEwHwYDVQQDExhNaWNy # b3NvZnQgVGltZS1TdGFtcCBQQ0ECEzMAAAEEZIjZOXzzlscAAAAAAQQwCQYFKw4D # AhoFAKBdMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8X # DTE5MDEwNzE3Mjk0NFowIwYJKoZIhvcNAQkEMRYEFNj0o2w/aGvl9uYp9hPEh9ed # 4tfQMA0GCSqGSIb3DQEBBQUABIIBAJe4W9Trh+KsyhvTazCtMkXS0owo72VJPPuR # G+5H4te20Xxt1OXDdxJPLqwf+byykn+2vTTt68xFLTWkApqIlZTFb1rBPjiR0f4P # b9Xynm8GcICowr5PhtfwodGqkhTfU4rNuJYGR+yPGFjSs6fn2/VfbpWmPc+ZkmZc # 1lYTL8D6waj2MMicH7Y6FUcs92+FiiS9m8lBH6g3i/LDYmgZuCZ+d/lUhQRaYLZ3 # NMZd2zbdBwgtqkwMsRQbu6D+b0qMYGVMgXGWdLjRqtTRewjz/3k6VGEhQp14UKPJ # XbNJoaz1EiWd9Cxfk8lC7CsW7R2GwWtJWf9gEKZiqPr9aFMVFDE= # SIG # End signature block |