-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.ps1
472 lines (410 loc) · 19.1 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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
#################################################
# HelloID-Conn-Prov-Target-Zermelo-Update
# PowerShell V2
#################################################
# Enable TLS1.2
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.SecurityProtocolType]::Tls12
#region functions
function Get-ZermeloAccount {
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[string]
$Code,
[Parameter(Mandatory)]
[string]
$Type,
[Parameter()]
[string]
$Fields
)
$splatParams = @{
Method = 'GET'
}
switch ($Type) {
'users' {
if ($Fields){
$fields = "$fields,code"
$splatParams['Endpoint'] = "users/$($Code)?fields=$($Fields.Trim("'"))"
} else {
$splatParams['Endpoint'] = "users/$Code"
}
(Invoke-ZermeloRestMethod @splatParams).response.data
}
'students' {
$splatParams['Endpoint'] = "students/$Code"
(Invoke-ZermeloRestMethod @splatParams).response.data
}
}
}
function Get-DepartmentToAssign {
[CmdletBinding()]
param (
[Parameter()]
[string]
$SchoolName,
[Parameter()]
[string]
$DepartmentName,
[Parameter()]
[DateTime]
$ContractStartDate
)
try {
$splatParams = @{
Method = 'GET'
Endpoint = 'departmentsofbranches'
}
$responseDepartments = (Invoke-ZermeloRestMethod @splatParams).response.data
[DateTime]$currentSchoolYear = Get-CurrentSchoolYear -ContractStartDate $ContractStartDate
if ($null -ne $responseDepartments) {
$contractStartDate = $currentSchoolYear
$schoolNameToMatch = $SchoolName
$schoolYearToMatch = "$($contractStartDate.Year)" + '-' + "$($contractStartDate.AddYears(1).Year)"
$lookup = $responseDepartments | Group-Object -AsHashTable -Property 'code'
$departments = $lookup[$DepartmentName]
$departmentToAssign = $departments | Where-Object { $_.schoolInSchoolYearName -match "$schoolNameToMatch $schoolYearToMatch" }
Write-Output $departmentToAssign
}
} catch {
$PSCmdlet.ThrowTerminatingError($_)
}
}
function Get-CurrentSchoolYear {
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[DateTime]
$ContractStartDate
)
$currentDate = Get-Date
$year = $currentDate.Year
# Determine the start and end dates of the current school year
if ($currentDate.Month -lt 8) {
$startYear = $year - 1
} else {
$startYear = $year
}
$schoolYearStartDate = (Get-Date -Year $startYear)
Write-Output $schoolYearStartDate
}
function ConvertTo-HashTableToObject {
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[string]
$HashTableString
)
$trimmedString = $HashTableString.TrimStart('@{').TrimEnd('}')
$keyValuePairs = $trimmedString -split ';'
$hashTable = @{}
foreach ($pair in $keyValuePairs) {
$key, $value = $pair -split '=', 2
$hashTable[$key.Trim()] = $value.Trim()
}
Write-Output $hashTable
}
function Get-NestedPropertyValue {
param (
[object]
$Object,
[string]
$PropertyPath
)
$properties = $PropertyPath -split '\.'
foreach ($property in $properties) {
if ($null -eq $Object -or -not $Object.PSObject.Properties[$property]) {
return $null
}
try {
$Object = $Object | Select-Object -ExpandProperty $property -ErrorAction Stop
} catch {
return $null
}
}
Write-Output $Object
}
function Resolve-ZermeloError {
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[object]
$ErrorRecord
)
process {
$errorObject = [PSCustomObject]@{
ScriptLineNumber = $ErrorRecord.InvocationInfo.ScriptLineNumber
Line = $ErrorRecord.InvocationInfo.Line
ErrorDetails = $ErrorRecord.Exception.Message
FriendlyMessage = $ErrorRecord.Exception.Message
}
try {
if ($ErrorRecord.Exception.GetType().FullName -eq 'Microsoft.PowerShell.Commands.HttpResponseException') {
$rawErrorObject = ($ErrorRecord.ErrorDetails.Message | ConvertFrom-Json).response
$errorObject.ErrorDetails = "Code: [$($rawErrorObject.status)], Message: [$($rawErrorObject.message)], Details: [$($rawErrorObject.details)], EventId: [$($rawErrorObject.eventId)]"
$errorObject.FriendlyMessage = $rawErrorObject.message
} elseif ($ErrorRecord.Exception.GetType().FullName -eq 'System.Net.WebException') {
if ($ErrorRecord.Exception.InnerException.Message) {
$errorObject.FriendlyMessage = $($ErrorRecord.Exception.InnerException.Message)
} else {
$streamReaderResponse = [System.IO.StreamReader]::new($ErrorRecord.Exception.Response.GetResponseStream()).ReadToEnd()
if (-not[string]::IsNullOrEmpty($streamReaderResponse)) {
$rawErrorObject = ($streamReaderResponse | ConvertFrom-Json).response
$errorObject.ErrorDetails = "Code: [$($rawErrorObject.status)], Message: [$($rawErrorObject.message)], Details: [$($rawErrorObject.details)], EventId: [$($rawErrorObject.eventId)]"
$errorObject.FriendlyMessage = $rawErrorObject.message
}
}
} elseif ($ErrorRecord.Exception.GetType().FullName -eq 'System.Net.Http.HttpRequestException') {
$errorObject.FriendlyMessage = $($ErrorRecord.Exception.Message)
} else {
$errorObject.FriendlyMessage = $($ErrorRecord.Exception.Message)
}
} catch {
$errorObject.FriendlyMessage = "Received an unexpected response, error: $($ErrorRecord.Exception.Message)"
}
Write-Output $errorObject
}
}
function Invoke-ZermeloRestMethod {
[CmdletBinding()]
param (
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[string]
$Method,
[Parameter(Mandatory)]
[ValidateNotNullOrEmpty()]
[string]
$Endpoint,
[object]
$Body,
[string]
$ContentType = 'application/json'
)
process {
$baseUrl = "$($actionContext.Configuration.BaseUrl)/api/v3"
try {
$headers = [System.Collections.Generic.Dictionary[[String], [String]]]::new()
$headers.Add('Authorization', "Bearer $($actionContext.Configuration.Token)")
$splatParams = @{
Uri = "$baseUrl/$Endpoint"
Headers = $Headers
Method = $Method
ContentType = $ContentType
}
if ($Body) {
Write-Information 'Adding body to request'
$splatParams['Body'] = $Body
}
Invoke-RestMethod @splatParams -Verbose:$false
} catch {
$PSCmdlet.ThrowTerminatingError($_)
}
}
}
#endregion
try {
# Verify if [aRef] has a value
if ([string]::IsNullOrEmpty($($actionContext.References.Account))) {
throw 'The account reference could not be found'
}
# Exclude departmentOfBranch fields from the actionContext.Data to retrieve only the fields managed by HelloID
# We also create a new object 'actionContextDataFiltered' for a solid compare
$excludedFields = 'schoolName', 'classRoom', 'participationWeight', 'startDate'
$actionContextDataFiltered = [PSCustomObject]@{}
foreach ($property in $actionContext.Data.PSObject.Properties) {
if ($property.Name -notin $excludedFields) {
$actionContextDataFiltered | Add-Member -MemberType NoteProperty -Name $property.Name -Value $property.Value
}
}
Write-Information "Verifying if a Zermelo account for [$($personContext.Person.DisplayName)] exists"
try {
$filteredFields = $actionContextDataFiltered.PSObject.Properties.Name
$correlatedAccount = Get-ZermeloAccount -Code $actionContext.References.Account -Type 'users' -Fields ($filteredFields -join ',')
$outputContext.PreviousData = $correlatedAccount
} catch {
throw
}
if (-not [string]::IsNullOrWhiteSpace($actionContext.Data.schoolName) -and
-not [string]::IsNullOrWhiteSpace($actionContext.Data.classRoom) -and
$actionContext.Data.startDate -ne [DateTime]::MinValue) {
Write-Information 'Determine which departmentOfBranch will need to be assigned'
try {
$splatGetDepartmentToAssign = @{
SchoolName = $actionContext.Data.schoolName
DepartmentName = $actionContext.Data.classRoom
ContractStartDate = $actionContext.Data.startDate
}
$departmentToAssign = Get-DepartmentToAssign @splatGetDepartmentToAssign
$dryRunMessageDepartmentOfBranchToAssign = "SchoolName: [$($actionContext.Data.schoolName) $($actionContext.Data.startDate)] for classRoom: [$($actionContext.Data.classRoom)] will be assigned"
} catch {
throw
}
}
# Define the empty array of actions that will be processed during enforcement
$actions = @()
# Triggered directly after initial create and correlate
if ($actionContext.AccountCorrelated) {
Write-Information 'Verify if the classroom must be updated after correlation'
if ($null -ne $departmentToAssign){
Write-Information "Department: [$($departmentToAssign.schoolInSchoolYearName)] with id: [$($departmentToAssign.id)] will be assigned"
$actions += 'Update-DepartmentOfBranch'
} else {
Write-Information "A classroom with schoolName: [$($actionContext.Data.schoolName) $($actionContext.Data.startDate)] for classRoom: [$($actionContext.Data.classRoom)] cannot be found"
}
}
# Triggered only in case of an update event
# In this case we check for changes within the personDifferences object
if (-not $actionContext.AccountCorrelated) {
Write-Information 'Verify if the user account must be updated'
if ($null -ne $correlatedAccount) {
$splatCompareProperties = @{
ReferenceObject = @($correlatedAccount.PSObject.Properties)
DifferenceObject = @($actionContextDataFiltered.PSObject.Properties)
}
$userPropertiesChanged = (Compare-Object @splatCompareProperties -PassThru).Where({$_.SideIndicator -eq '=>'})
if ($userPropertiesChanged -and ($null -ne $correlatedAccount)) {
$actions += 'Update-Account'
$dryRunMessage = "Account property(s) required to update: [$($userPropertiesChanged.name -join ",")]"
$updateObject = [PSCustomObject]@{}
foreach ($property in $userPropertiesChanged) {
$updateObject | Add-Member -MemberType NoteProperty -Name $property.Name -Value $property.Value
}
} elseif (-not($userPropertiesChanged)) {
$actions += 'NoChangesToUser'
$dryRunMessage = 'No changes will be made to the account during enforcement'
}
} else {
$actions += 'UserNotFound'
$dryRunMessage = "Zermelo account for: [$($personContext.Person.DisplayName)] not found. Possibly deleted"
}
# A change to either the school or classroom will always result in an assignment of a new 'departmentOfBranch'
# A 'departmentOfBranch' always includes both the school, year and classroom information
Write-Information 'Verify if the school or classroom must be updated'
$departmentUpdated = $false
if ($null -eq $departmentToAssign) {
$actions += 'DepartmentOfBranchNotFound'
} else {
# Check if the school must be updated
$schoolValue = Get-NestedPropertyValue -Object $personContext.PersonDifferences.PrimaryContract -PropertyPath $actionContext.Configuration.SchoolNameField
if (-not [string]::IsNullOrEmpty($schoolValue)) {
$pdHash = ConvertTo-HashTableToObject -HashTableString $schoolValue
if (($pdHash.Change -eq 'updated') -and ($actionContext.Data.schoolName -match $pdHash.New)) {
$actions += 'Update-DepartmentOfBranch'
$departmentUpdated = $true
}
}
# Check if the classroom must be updated
$classroomValue = Get-NestedPropertyValue -Object $personContext.PersonDifferences.PrimaryContract -PropertyPath $actionContext.Configuration.ClassroomField
if (-not [string]::IsNullOrEmpty($classroomValue)) {
$pdHash = ConvertTo-HashTableToObject -HashTableString $classroomValue
if (($pdHash.Change -eq 'updated') -and ($actionContext.Data.classRoom -match $pdHash.New)) {
if (-not $departmentUpdated) {
$actions += 'Update-DepartmentOfBranch'
$departmentUpdated = $true
}
}
}
# If no department or school update was made
if (-not $departmentUpdated) {
$actions += 'NoChangesToDepartmentOfBranch'
}
}
}
# Add a message and the result of each of the validations showing what will happen during enforcement
if ($actionContext.DryRun -eq $true) {
Write-Information "[DryRun] $dryRunMessage"
Write-Information "[DryRun] $dryRunMessageDepartmentOfBranchToAssign"
}
# Process actions
if (-not($actionContext.DryRun -eq $true)) {
foreach ($action in $actions) {
switch ($action) {
'Update-Account' {
Write-Information "Updating Zermelo account with accountReference: [$($actionContext.References.Account)]"
Write-Information "Account property(s) required to update: $($propertiesChanged.Name -join ', ')"
$updateObject | Add-Member -MemberType NoteProperty -Name 'code' -Value $actionContext.References.Account
$splatUpdateUserParams = @{
Endpoint = "users/$($actionContext.References.Account)"
Method = 'PUT'
Body = $updateObject | ConvertTo-Json
ContentType = 'application/json'
}
$null = Invoke-ZermeloRestMethod @splatUpdateUserParams
$outputContext.success = $true
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Update account was successful, Account property(s) updated: [$($propertiesChanged.name -join ',')]"
IsError = $false
})
break
}
'Update-DepartmentOfBranch' {
Write-Information "Updating departmentOfBranch for Zermelo account with accountReference: [$($actionContext.References.Account)]"
Write-Information "New department: [$($departmentToAssign.schoolInSchoolYearName)] with id: [$($departmentToAssign.id)] will be assigned"
$splatStudentInDepartmentParams = @{
Endpoint = 'studentsindepartments'
Method = 'POST'
Body = @{
departmentOfBranch = $departmentToAssign.id
student = $correlatedAccount.code
participationWeight = $actionContext.Data.participationWeight
} | ConvertTo-Json
ContentType = 'application/json'
}
$null = Invoke-ZermeloRestMethod @splatStudentInDepartmentParams
$outputContext.success = $true
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Update department was successful. Department updated to: [$($departmentToAssign.schoolInSchoolYearName)] with id: [$($departmentToAssign.id)]"
IsError = $false
})
break
}
'NoChangesToUser' {
Write-Information "No changes to Zermelo 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
}
'NoChangesToDepartmentOfBranch' {
Write-Information 'No changes will be made to the department or school during enforcement'
$outputContext.success = $true
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = 'No changes will be made to the department or school during enforcement'
IsError = $false
})
break
}
'UserNotFound' {
Write-Information "Zermelo account for: [$($personContext.Person.DisplayName)] not found. Possibly deleted"
$outputContext.success = $false
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Zermelo account for: [$($personContext.Person.DisplayName)] not found. Possibly deleted"
IsError = $true
})
break
}
'DepartmentOfBranchNotFound' {
Write-Information "A departmentOfBranch for school: [$($actionContext.Data.schoolName)] year: [$($actionContext.Data.startDate)] and classroom [$($actionContext.Data.classRoom)] could not be found. Possibly deleted"
$outputContext.success = $false
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "A departmentOfBranch for school: [$($actionContext.Data.schoolName)] year: [$($actionContext.Data.startDate)] and classroom [$($actionContext.Data.classRoom)] could not be found. Possibly deleted"
IsError = $true
})
break
}
}
}
}
} catch {
$outputContext.Success = $false
$errorObject = Resolve-ZermeloError -ErrorRecord $_
$auditMessage = "Could not update Zermelo account. Error: $($errorObject.FriendlyMessage)"
Write-Warning "Error at Line '$($_.InvocationInfo.ScriptLineNumber)': $($_.InvocationInfo.Line). Error: $($errorObject.ErrorDetails)"
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = $auditMessage
IsError = $true
})
}