-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.ps1
239 lines (210 loc) · 10.8 KB
/
update.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
#################################################
# HelloID-Conn-Prov-Target-NewBlack-Update
# PowerShell V2
#################################################
# Enable TLS1.2
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.SecurityProtocolType]::Tls12
# Script Configuration
$employeeProperties = @('EmployeeNumber', 'Function')
#region functions
function Resolve-NewBlackError {
[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)
$httpErrorObj.FriendlyMessage = $errorDetailsObject.Error.Message
} 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'
}
Write-Information 'Verifying if a NewBlack account exists'
$headers = @{
'EVA-User-Agent' = 'HelloID/1.0.0'
'Content-Type' = 'application/json'
'Accept' = 'application/json;charset=utf-8'
Authorization = "Bearer $($actionContext.Configuration.ApiKey)"
}
$splatGetUser = @{
Uri = "$($actionContext.Configuration.BaseUrl)/message/GetUser"
Method = 'POST'
Headers = $headers
Body = @{
ID = $actionContext.References.Account
} | ConvertTo-Json
}
$responseGetUser = (Invoke-WebRequest @splatGetUser)
$correlatedAccount = ([Text.Encoding]::UTF8.GetString([Text.Encoding]::GetEncoding(28591).GetBytes(($responseGetUser.Content))) | ConvertFrom-Json)
$actionList = [System.Collections.Generic.List[Object]]::new()
if ($correlatedAccount) {
if ($correlatedAccount.SingleSignOnOnly -eq $true) {
$correlatedAccount | Add-Member -MemberType NoteProperty -Name 'isSingleSignOnOnly' -Value "true"
} else {
$correlatedAccount | Add-Member -MemberType NoteProperty -Name 'isSingleSignOnOnly' -Value "false"
}
$correlatedAccount.PSObject.Properties.Remove('SingleSignOnOnly')
#collect 'EmployeeNumber' 'function' info for account
$splatGetEmployee = @{
Uri = "$($actionContext.Configuration.BaseUrl)/message/GetEmployeeData"
Method = 'POST'
Headers = $headers
Body = @{
UserID = $actionContext.References.Account
} | ConvertTo-Json
}
$responseEmployee = (Invoke-WebRequest @splatGetEmployee)
$correlatedEmployee = ([Text.Encoding]::UTF8.GetString([Text.Encoding]::GetEncoding(28591).GetBytes(($responseEmployee.Content))) | ConvertFrom-Json)
if ($correlatedEmployee) {
$correlatedAccount | Add-Member -MemberType NoteProperty -Name 'Function' -Value $correlatedEmployee.Function
$correlatedAccount | Add-Member -MemberType NoteProperty -Name 'EmployeeNumber' -Value $correlatedEmployee.EmployeeNumber
}
$outputContext.PreviousData = $correlatedAccount
$AccountObject = [PSCustomObject] @{}
foreach ($property in $actionContext.Data.PSObject.Properties) {
$AccountObject | Add-Member -MemberType NoteProperty -Name $($property.Name) -Value $correlatedAccount.$($property.Name)
}
$splatCompareProperties = @{
ReferenceObject = @($AccountObject.PSObject.Properties)
DifferenceObject = @($actionContext.Data.PSObject.Properties)
}
$PropertiesChanged = Compare-Object @splatCompareProperties -PassThru | Where-Object { $_.SideIndicator -eq '=>' }
if ($propertiesChanged) {
$userPropertiesChanged = $PropertiesChanged | Where-Object { $_.Name -notin $employeeProperties }
if ($userPropertiesChanged) {
$actionList.add('UpdateUser')
}
$employeePropertiesChanged = $PropertiesChanged | Where-Object { $_.Name -in $employeeProperties }
if ($employeePropertiesChanged) {
$actionList.add('UpdateEmployee')
}
} else {
$actionList.add('NoChanges')
}
} else {
$action = $actionList.add('NotFound')
}
# Process
foreach ($action in $actionList) {
switch ($action) {
'UpdateUser' {
Write-Information "Account user property(s) required to update: $($userPropertiesChanged.Name -join ', ')"
# Make sure to test with special characters and if needed; add utf8 encoding.
if (-not($actionContext.DryRun -eq $true)) {
Write-Information "Updating NewBlack user account with accountReference: [$($actionContext.References.Account)]"
$body = [PSCustomObject] @{
ID = $actionContext.References.Account
}
foreach ($property in $userPropertiesChanged) {
$body | Add-Member -MemberType NoteProperty -Name $($property.Name) -Value $actionContext.Data.$($property.Name)
}
$bodyJson = $body | ConvertTo-Json
$splatUpdate = @{
Uri = "$($actionContext.Configuration.BaseUrl)/message/UpdateUser"
Method = 'POST'
Headers = $headers
Body = ([System.Text.Encoding]::UTF8.GetBytes($bodyJson))
}
$null = (Invoke-RestMethod @splatUpdate)
} else {
Write-Information "[DryRun] Update NewBlack user account with accountReference: [$($actionContext.References.Account)], will be executed during enforcement"
}
$outputContext.Success = $true
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Update account was successful, user Account property(s) updated: [$($userPropertiesChanged.name -join ',')]"
IsError = $false
})
break
}
'UpdateEmployee' {
Write-Information "Account employee property(s) required to update: $($employeePropertiesChanged.Name -join ', ')"
if (-not($actionContext.DryRun -eq $true)) {
Write-Information "Updating NewBlack employee account with accountReference: [$($actionContext.References.Account)]"
$Body = [PSCustomObject] @{
UserID = $actionContext.References.Account
}
foreach ($property in $employeePropertiesChanged) {
$Body | Add-Member -MemberType NoteProperty -Name $($property.Name) -Value $actionContext.Data.$($property.Name)
}
$bodyJson = $body | ConvertTo-Json
$splatUpdate = @{
Uri = "$($actionContext.Configuration.BaseUrl)/message/CreateOrUpdateEmployeeData"
Method = 'POST'
Headers = $headers
Body = ([System.Text.Encoding]::UTF8.GetBytes($bodyJson))
}
$null = (Invoke-RestMethod @splatUpdate)
} else {
Write-Information "[DryRun] Update NewBlack employee account with accountReference: [$($actionContext.References.Account)], will be executed during enforcement"
}
$outputContext.Success = $true
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Update account was successful, employee account property(s) updated: [$($employeePropertiesChanged.name -join ',')]"
IsError = $false
})
break
}
'NoChanges' {
Write-Information "No changes to NewBlack account with accountReference: [$($actionContext.References.Account)]"
$outputContext.Success = $true
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = 'No changes will be made to the account during enforcement'
IsError = $false
})
break
}
'NotFound' {
Write-Information "NewBlack account: [$($actionContext.References.Account)] could not be found, possibly indicating that it could be deleted"
$outputContext.Success = $false
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "NewBlack account with accountReference: [$($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-NewBlackError -ErrorObject $ex
$auditMessage = "Could not update NewBlack account. Error: $($errorObj.FriendlyMessage)"
Write-Warning "Error at Line '$($errorObj.ScriptLineNumber)': $($errorObj.Line). Error: $($errorObj.ErrorDetails)"
} else {
$auditMessage = "Could not update NewBlack account. Error: $($ex.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
})
}