Plugins/SimplyCom.ps1
function Get-CurrentPluginType { 'dns-01' } function Add-DnsTxt { [CmdletBinding(DefaultParameterSetName='Secure')] param( [Parameter(Mandatory,Position=0)] [string]$RecordName, [Parameter(Mandatory,Position=1)] [string]$TxtValue, [Parameter(Mandatory,Position=2)] [string]$SimplyAccount, [Parameter(ParameterSetName='Secure',Mandatory,Position=3)] [securestring]$SimplyAPIKey, [Parameter(ParameterSetName='DeprecatedInsecure',Mandatory,Position=3)] [string]$SimplyAPIKeyInsecure, [string]$SimplyAPIRoot = 'https://api.simply.com/2', [Parameter(ValueFromRemainingArguments)] $ExtraParams ) if ('Secure' -eq $PSCmdlet.ParameterSetName) { $SimplyAPIKeyInsecure = [pscredential]::new('a',$SimplyAPIKey).GetNetworkCredential().Password } # Setup Basic Auth creds $encodedCreds = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes("$($SimplyAccount):$($SimplyAPIKeyInsecure)")) $authHeader = @{Authorization = "Basic $encodedCreds"} $zoneID,$rec = Get-SimplyTXTRecord $RecordName $TxtValue $authHeader $SimplyAPIRoot if ($rec) { Write-Verbose "Record $RecordName already contains $TxtValue. Nothing to do." } else { # build the new record object $body = @{ name = $RecordName # Simply allows FQDNs here even though they return short names type = 'TXT' data = $TxtValue ttl = 60 } | ConvertTo-Json Write-Verbose "Adding a TXT record for $RecordName with value $TxtValue" try { $postParams = @{ Uri = "{0}/my/products/{1}/dns/records" -f $SimplyAPIRoot,$zoneID Method = 'POST' Headers = $authHeader Body = $body ContentType = 'application/json' ErrorAction = 'Stop' Verbose = $false } Write-Debug "POST $($postParams.Uri)`n$body" Invoke-RestMethod @postParams @script:UseBasic | Out-Null } catch { Write-Debug $_ throw } } <# .SYNOPSIS Add a DNS TXT record to Simply. .DESCRIPTION Use Simply api to add a TXT record to a Simply DNS zone. .PARAMETER RecordName The fully qualified name of the TXT record. .PARAMETER TxtValue The value of the TXT record. .PARAMETER SimplyAccount The account name of the account used to connect to Simply API (e.g. S123456) .PARAMETER SimplyAPIKey The API Key associated with the account as a SecureString value. .PARAMETER SimplyAPIKeyInsecure (DEPRECATED) The API Key associated with the account as a standard string value. .PARAMETER SimplyAPIRoot The base URL for the Simply v2 API .PARAMETER ExtraParams This parameter can be ignored and is only used to prevent errors when splatting with more parameters than this function supports. .EXAMPLE $key = Read-Host 'API Key' -AsSecureString Add-DnsTxt '_acme-challenge.example.com' 'txt-value' 'S123456' $key Adds a TXT record for the specified site with the specified value. #> } function Remove-DnsTxt { [CmdletBinding(DefaultParameterSetName='Secure')] param( [Parameter(Mandatory,Position=0)] [string]$RecordName, [Parameter(Mandatory,Position=1)] [string]$TxtValue, [Parameter(Mandatory,Position=2)] [string]$SimplyAccount, [Parameter(ParameterSetName='Secure',Mandatory,Position=3)] [securestring]$SimplyAPIKey, [Parameter(ParameterSetName='DeprecatedInsecure',Mandatory,Position=3)] [string]$SimplyAPIKeyInsecure, [string]$SimplyAPIRoot = 'https://api.simply.com/2', [Parameter(ValueFromRemainingArguments)] $ExtraParams ) if ('Secure' -eq $PSCmdlet.ParameterSetName) { $SimplyAPIKeyInsecure = [pscredential]::new('a',$SimplyAPIKey).GetNetworkCredential().Password } # Setup Basic Auth creds $encodedCreds = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes("$($SimplyAccount):$($SimplyAPIKeyInsecure)")) $authHeader = @{Authorization = "Basic $encodedCreds"} $zoneID,$rec = Get-SimplyTXTRecord $RecordName $TxtValue $authHeader $SimplyAPIRoot if ($rec) { Write-Verbose "Removing TXT record for $RecordName with value $TxtValue" try { $delParams = @{ Uri = "{0}/my/products/{1}/dns/records/{2}" -f $SimplyAPIRoot,$zoneID,$rec.record_id Headers = $authHeader Method = 'DELETE' ErrorAction = 'Stop' Verbose = $false } Write-Debug "DELETE $($delParams.Uri)" Invoke-RestMethod @delParams @script:UseBasic | Out-Null } catch { Write-Debug $_ throw } } else { Write-Debug "Record $RecordName with value $TxtValue doesn't exist. Nothing to do." } <# .SYNOPSIS Removes a DNS TXT record from Simply. .DESCRIPTION Use Simply API to remove a TXT record from a Simply DNS zone. .PARAMETER RecordName The fully qualified name of the TXT record. .PARAMETER TxtValue The value of the TXT record. .PARAMETER SimplyAccount The account name of the account used to connect to Simply API (e.g. S123456) .PARAMETER SimplyAPIKey The API Key associated with the account as a SecureString value. .PARAMETER SimplyAPIKeyInsecure (DEPRECATED) The API Key associated with the account as a standard string value. .PARAMETER SimplyAPIRoot The base URL for the Simply v2 API .PARAMETER ExtraParams This parameter can be ignored and is only used to prevent errors when splatting with more parameters than this function supports. .EXAMPLE $key = Read-Host 'API Key' -AsSecureString Remove-DnsTxt '_acme-challenge.example.com' 'txt-value' 'S123456' $key Removes a TXT record from the specified site with the specified value. #> } function Save-DnsTxt { [CmdletBinding()] param( [Parameter(ValueFromRemainingArguments)] $ExtraParams ) <# .SYNOPSIS Not required. .DESCRIPTION This provider does not require calling this function to commit changes to DNS records. .PARAMETER ExtraParams This parameter can be ignored and is only used to prevent errors when splatting with more parameters than this function supports. #> } ############################ # Helper Functions ############################ # API Docs: # https://www.simply.com/en/docs/api/ function Get-SimplyTXTRecord { [CmdletBinding()] param( [Parameter(Mandatory,Position=0)] [string]$RecordName, [Parameter(Mandatory,Position=1)] [string]$TxtValue, [Parameter(Mandatory,Position=2)] [hashtable]$AuthHeader, [Parameter(Mandatory,Position=3)] [string]$ApiRoot ) # setup a module variable to cache the record to zone mapping # so it's quicker to find later if (!$script:SimplyRecordZones) { $script:SimplyRecordZones = @{} } # check for the record in the cache #$zone,$zoneID = $script:SimplyRecordZones.$RecordName $zoneID,$recShort = $script:SimplyRecordZones.$RecordName if (-not $zoneID) { # query all of the domains on the account try { $getParams = @{ Uri = '{0}/my/products' -f $ApiRoot Headers = $AuthHeader ErrorAction = 'Stop' Verbose = $false } Write-Debug "GET $($getParams.Uri)" $products = (Invoke-RestMethod @getParams @script:UseBasic).products } catch { throw } # find the zone for the closest/deepest sub-zone that would contain the record. $pieces = $RecordName.Split('.') for ($i=0; $i -lt ($pieces.Count-1); $i++) { $zoneTest = $pieces[$i..($pieces.Count-1)] -join '.' Write-Debug "Checking $zoneTest" $match = $products | Where-Object { $zoneTest -eq $_.domain.name_idn } | Select-Object -First 1 if ($match) { Write-Debug "Matched object:`n$($match | ConvertTo-Json -Depth 5)" # To query the records, we need the "object" id of the zone which is currently # the non-punycode version of the domain name. But that's not guaranteed to always # be the case. So just treat it like an arbitrary ID value. $zoneID = $match.object # derive the short record name if ($RecordName -eq $match.domain.name_idn) { $recShort = '@' } else { $recShort = ($RecordName -ireplace [regex]::Escape($match.domain.name_idn), [string]::Empty).TrimEnd('.') } $script:SimplyRecordZones.$RecordName = $zoneID,$recShort break } } } # query the zone records and check for the one we care about try { $getParams = @{ Uri = '{0}/my/products/{1}/dns/records' -f $ApiRoot,$zoneID Headers = $AuthHeader ErrorAction = 'Stop' Verbose = $false } Write-Debug "GET $($getParams.Uri)" $response = Invoke-RestMethod @getParams @script:UseBasic } catch { Write-Debug "$_" throw } if ($response.status -eq 200) { $rec = $response.records | Where-Object { $_.type -eq 'TXT' -and $_.name -eq $recShort -and $_.data -eq $TxtValue } # return the zone name and the record return $zoneID,$rec } else { Write-Debug "Simply Response: `n$($response | ConvertTo-Json)" throw "Unexpected response from Simply: $($response.message)." } } |