-
Notifications
You must be signed in to change notification settings - Fork 0
/
enable.ps1
150 lines (140 loc) · 6.24 KB
/
enable.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#################################################
# HelloID-Conn-Prov-Target-BasKMS-Enable
# PowerShell V2
#################################################
# Enable TLS1.2
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.SecurityProtocolType]::Tls12
#region functions
function Resolve-BasKMSError {
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[object]
$ErrorObject
)
process {
$httpErrorObj = [PSCustomObject]@{
ScriptLineNumber = $ErrorObject.InvocationInfo.ScriptLineNumber
Line = $ErrorObject.InvocationInfo.Line
ErrorDetails = $ErrorObject.Exception.Message
FriendlyMessage = $ErrorObject.Exception.Message
}
if (-not [string]::IsNullOrEmpty($ErrorObject.ErrorDetails.Message)) {
$httpErrorObj.ErrorDetails = $ErrorObject.ErrorDetails.Message
} elseif ($ErrorObject.Exception.GetType().FullName -eq 'System.Net.WebException') {
if ($null -ne $ErrorObject.Exception.Response) {
$streamReaderResponse = [System.IO.StreamReader]::new($ErrorObject.Exception.Response.GetResponseStream()).ReadToEnd()
if (-not [string]::IsNullOrEmpty($streamReaderResponse)) {
$httpErrorObj.ErrorDetails = $streamReaderResponse
}
}
}
try {
$errorDetailsObject = ($httpErrorObj.ErrorDetails | ConvertFrom-Json)
# Make sure to inspect the error result object and add only the error message as a FriendlyMessage.
# $httpErrorObj.FriendlyMessage = $errorDetailsObject.message
$httpErrorObj.FriendlyMessage = $httpErrorObj.ErrorDetails # Temporarily assignment
} catch {
$httpErrorObj.FriendlyMessage = $httpErrorObj.ErrorDetails
}
Write-Output $httpErrorObj
}
}
#endregion
try {
# Verify if [aRef] has a value
if ([string]::IsNullOrEmpty($($actionContext.References.Account))) {
throw 'The account reference could not be found'
}
# Retrieve access token
$splatParams = @{
Uri = $actionContext.Configuration.TokenUrl
ContentType = 'application/x-www-form-urlencoded'
Method = 'POST'
Body = @{
client_id = $actionContext.Configuration.ClientId
client_secret = $actionContext.Configuration.ClientSecret
username = $actionContext.Configuration.UserName
password = $actionContext.Configuration.Password
grant_type = 'password'
}
}
$responseToken = Invoke-RestMethod @splatParams
Write-Information 'Verifying if a BasKMS account exists'
$splatGetUserParams = @{
Uri = "$($actionContext.Configuration.BaseUrl)/kms/employee/show"
Method = 'POST'
Headers = @{
Authorization = "Bearer $($responseToken.access_token)"
Accept = 'application/json'
ContentType = 'application/x-www-form-urlencoded'
}
Body = @{
id = $ctionContext.References.Account
}
}
$correlatedAccount = Invoke-RestMethod @splatGetUserParams
$propertyNames = $actionContext.Data.PSObject.Properties.Name + 'id'
$filteredCorrelatedAccount = $correlatedAccount | Select-Object -Property $propertyNames
$correlatedAccount = $null
if ($null -ne $filteredCorrelatedAccount) {
$action = 'EnableAccount'
} else {
$action = 'NotFound'
}
# Process
switch ($action) {
'EnableAccount' {
if (-not($actionContext.DryRun -eq $true)) {
Write-Information "Enabling BasKMS account with accountReference: [$($actionContext.References.Account)]"
$splatEnableUserParams = @{
Uri = "$($actionContext.Configuration.BaseUrl)/kms/employee/update"
Method = 'POST'
Headers = @{
Authorization = "Bearer $($responseToken.access_token)"
Accept = 'application/json'
ContentType = 'application/x-www-form-urlencoded'
}
Body = @{
id = $actionContext.References.Account
active = $true
}
}
$null = Invoke-RestMethod @splatEnableUserParams
} else {
Write-Information "[DryRun] Enable BasKMS account with accountReference: [$($actionContext.References.Account)], will be executed during enforcement"
}
$outputContext.Success = $true
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = 'Enable account was successful'
IsError = $false
})
break
}
'NotFound' {
Write-Information "BasKMS account: [$($actionContext.References.Account)] could not be found, possibly indicating that it could be deleted"
$outputContext.Success = $false
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "BasKMS account: [$($actionContext.References.Account)] could not be found, possibly indicating that it could be deleted"
IsError = $true
})
break
}
}
} catch {
$outputContext.success = $false
$ex = $PSItem
if ($($ex.Exception.GetType().FullName -eq 'Microsoft.PowerShell.Commands.HttpResponseException') -or
$($ex.Exception.GetType().FullName -eq 'System.Net.WebException')) {
$errorObj = Resolve-BasKMSError -ErrorObject $ex
$auditMessage = "Could not enable BasKMS account. Error: $($errorObj.FriendlyMessage)"
Write-Warning "Error at Line '$($errorObj.ScriptLineNumber)': $($errorObj.Line). Error: $($errorObj.ErrorDetails)"
} else {
$auditMessage = "Could not enable BasKMS account. Error: $($_.Exception.Message)"
Write-Warning "Error at Line '$($ex.InvocationInfo.ScriptLineNumber)': $($ex.InvocationInfo.Line). Error: $($ex.Exception.Message)"
}
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = $auditMessage
IsError = $true
})
}