-
Notifications
You must be signed in to change notification settings - Fork 4
/
delete.ps1
514 lines (438 loc) · 17.8 KB
/
delete.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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
#####################################################
# HelloID-Conn-Prov-Target-Topdesk-Delete
# PowerShell V2
#####################################################
# Set debug logging
switch ($($actionContext.Configuration.isDebug)) {
$true { $VerbosePreference = 'Continue' }
$false { $VerbosePreference = 'SilentlyContinue' }
}
# Enable TLS1.2
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.SecurityProtocolType]::Tls12
#region functions
function ConvertTo-TopDeskFlatObject {
param (
[Parameter(Mandatory = $true)]
[pscustomobject] $Object,
[string] $Prefix = ""
)
$result = [ordered]@{}
foreach ($property in $Object.PSObject.Properties) {
$name = if ($Prefix) { "$Prefix`_$($property.Name)" } else { $property.Name }
if ($null -ne $property.Value) {
if ($property.Value -is [pscustomobject]) {
$flattenedSubObject = ConvertTo-TopDeskFlatObject -Object $property.Value -Prefix $name
foreach ($subProperty in $flattenedSubObject.PSObject.Properties) {
$result[$subProperty.Name] = [string]$subProperty.Value
}
}
else {
$result[$name] = [string]$property.Value
}
}
}
[PSCustomObject]$result
}
function Set-AuthorizationHeaders {
param (
[ValidateNotNullOrEmpty()]
[string]
$Username,
[ValidateNotNullOrEmpty()]
[string]
$ApiKey
)
# Create basic authentication string
$bytes = [System.Text.Encoding]::ASCII.GetBytes("${Username}:${Apikey}")
$base64 = [System.Convert]::ToBase64String($bytes)
# Set authentication headers
$authHeaders = [System.Collections.Generic.Dictionary[string, string]]::new()
$authHeaders.Add("Authorization", "BASIC $base64")
$authHeaders.Add('Accept', 'application/json; charset=utf-8')
Write-Output $authHeaders
}
function Invoke-TopdeskRestMethod {
param (
[ValidateNotNullOrEmpty()]
[string]
$Method,
[ValidateNotNullOrEmpty()]
[string]
$Uri,
[object]
$Body,
[string]
$ContentType = 'application/json; charset=utf-8',
[System.Collections.IDictionary]
$Headers
)
process {
try {
$splatParams = @{
Uri = $Uri
Headers = $Headers
Method = $Method
ContentType = $ContentType
}
if ($Body) {
$splatParams['Body'] = [Text.Encoding]::UTF8.GetBytes($Body)
}
Invoke-RestMethod @splatParams -Verbose:$false
}
catch {
Throw $_
}
}
}
function Get-TopdeskPersonById {
param (
[ValidateNotNullOrEmpty()]
[string]
$BaseUrl,
[System.Collections.IDictionary]
$Headers,
[ValidateNotNullOrEmpty()]
[String]
$PersonReference
)
try {
# Lookup value is filled in, lookup person in Topdesk
$splatParams = @{
Uri = "$BaseUrl/tas/api/persons/id/$PersonReference"
Method = 'GET'
Headers = $Headers
}
$responseGet = Invoke-TopdeskRestMethod @splatParams
}
catch {
if ($_.Exception.Response.StatusCode -eq 404) {
$responseGet = $null
}
else {
throw
}
}
Write-Output $responseGet
}
function Get-TopdeskPerson {
param (
[ValidateNotNullOrEmpty()]
[string]
$BaseUrl,
[System.Collections.IDictionary]
$Headers,
[String]
$AccountReference
)
# Check if the account reference is empty, if so, generate audit message
if ([string]::IsNullOrEmpty($AccountReference)) {
# Throw an error when account reference is empty
Write-Warning "The account reference is empty. This is a scripting issue."
$outputContext.AuditLogs.Add([PSCustomObject]@{
Action = "DeleteAccount"
Message = "The account reference is empty. This is a scripting issue."
IsError = $true
})
return
}
# AcountReference is available, query person
$splatParams = @{
Headers = $Headers
BaseUrl = $BaseUrl
PersonReference = $AccountReference
}
$person = Get-TopdeskPersonById @splatParams
Write-Output $person
}
function Set-TopdeskPersonArchiveStatus {
param (
[ValidateNotNullOrEmpty()]
[string]
$BaseUrl,
[System.Collections.IDictionary]
$Headers,
[ValidateNotNullOrEmpty()]
[Object]
[Ref]$TopdeskPerson,
[ValidateNotNullOrEmpty()]
[Bool]
$Archive,
[String]
$ArchivingReason
)
# Set ArchiveStatus variables based on archive parameter
if ($Archive -eq $true) {
#When the 'archiving reason' setting is not configured in the target connector configuration
if ([string]::IsNullOrEmpty($ArchivingReason)) {
$outputContext.AuditLogs.Add([PSCustomObject]@{
Action = "DeleteAccount"
Message = "Configuration setting 'Archiving Reason' is empty. This is a configuration error."
IsError = $true
})
Throw "Error(s) occured while looking up required values"
}
$splatParams = @{
Uri = "$baseUrl/tas/api/archiving-reasons"
Method = 'GET'
Headers = $Headers
}
$responseGet = Invoke-TopdeskRestMethod @splatParams
$archivingReasonObject = $responseGet | Where-object name -eq $ArchivingReason
#When the configured archiving reason is not found in Topdesk
if ([string]::IsNullOrEmpty($archivingReasonObject.id)) {
$outputContext.AuditLogs.Add([PSCustomObject]@{
Action = "DeleteAccount"
Message = "Archiving reason [$ArchivingReason] not found in Topdesk"
IsError = $true
})
Throw "Error(s) occured while looking up required values"
}
$archiveStatus = 'personArchived'
$archiveUri = 'archive'
$body = @{ id = $archivingReasonObject.id }
}
else {
$archiveStatus = 'person'
$archiveUri = 'unarchive'
$body = $null
}
# Check the current status of the Person and compare it with the status in archiveStatus
if ($archiveStatus -ne $TopdeskPerson.status) {
# Archive / unarchive person
Write-Verbose "[$archiveUri] person with id [$($TopdeskPerson.id)]"
$splatParams = @{
Uri = "$BaseUrl/tas/api/persons/id/$($TopdeskPerson.id)/$archiveUri"
Method = 'PATCH'
Headers = $Headers
Body = $body | ConvertTo-Json
}
$null = Invoke-TopdeskRestMethod @splatParams
$TopdeskPerson.status = $archiveStatus
}
}
function Set-TopdeskPerson {
param (
[ValidateNotNullOrEmpty()]
[string]
$BaseUrl,
[System.Collections.IDictionary]
$Headers,
[ValidateNotNullOrEmpty()]
[Object]
$Account,
[ValidateNotNullOrEmpty()]
[Object]
$TopdeskPerson
)
Write-Verbose "Updating person"
$splatParams = @{
Uri = "$BaseUrl/tas/api/persons/id/$($TopdeskPerson.id)"
Method = 'PATCH'
Headers = $Headers
Body = $Account | ConvertTo-Json
}
$TopdeskPersonUpdated = Invoke-TopdeskRestMethod @splatParams
return $TopdeskPersonUpdated
}
#endregion functions
#region lookup
try {
$action = 'Process'
$account = $actionContext.Data
# Setup authentication headers
$splatParamsAuthorizationHeaders = @{
UserName = $actionContext.Configuration.username
ApiKey = $actionContext.Configuration.apikey
}
$authHeaders = Set-AuthorizationHeaders @splatParamsAuthorizationHeaders
# get person
$splatParamsPerson = @{
AccountReference = $actionContext.References.Account
Headers = $authHeaders
BaseUrl = $actionContext.Configuration.baseUrl
}
$TopdeskPerson = Get-TopdeskPerson @splatParamsPerson
if ($outputContext.AuditLogs.isError -contains - $true) {
Throw "Error(s) occured while looking up required values"
}
#endregion lookup
#region Calulate action
if (-Not([string]::IsNullOrEmpty($TopdeskPerson))) {
# Only compare object if a account object exists
if (-Not([string]::IsNullOrEmpty($account))) {
# Flatten the JSON object
$accountDifferenceObject = ConvertTo-TopDeskFlatObject -Object $account
$accountReferenceObject = ConvertTo-TopDeskFlatObject -Object $TopdeskPerson
# Define properties to compare for update
$accountPropertiesToCompare = $accountDifferenceObject.PsObject.Properties.Name
$accountSplatCompareProperties = @{
ReferenceObject = $accountReferenceObject.PSObject.Properties | Where-Object { $_.Name -in $accountPropertiesToCompare }
DifferenceObject = $accountDifferenceObject.PSObject.Properties | Where-Object { $_.Name -in $accountPropertiesToCompare }
}
if ($null -ne $accountSplatCompareProperties.ReferenceObject -and $null -ne $accountSplatCompareProperties.DifferenceObject) {
$accountPropertiesChanged = Compare-Object @accountSplatCompareProperties -PassThru
$accountOldProperties = $accountPropertiesChanged | Where-Object { $_.SideIndicator -eq "<=" }
$accountNewProperties = $accountPropertiesChanged | Where-Object { $_.SideIndicator -eq "=>" }
}
}
if ($accountNewProperties) {
$action = 'UpdateAndDisable'
Write-Information "Account property(s) required to update: $($accountNewProperties.Name -join ', ')"
}
elseif ($TopdeskPerson.status -eq 'person') {
$action = 'Disable'
}
else {
$action = 'NoChanges'
}
}
else {
$action = 'NotFound'
}
Write-Verbose "Compared current account to mapped properties. Result: $action"
#endregion Calulate action
#region write
switch ($action) {
'UpdateAndDisable' {
Write-Verbose "Archiving Topdesk person for: [$($personContext.Person.DisplayName)]"
$accountChangedPropertiesObject = [PSCustomObject]@{
OldValues = @{}
NewValues = @{}
}
foreach ($accountOldProperty in ($accountOldProperties | Where-Object { $_.Name -in $accountNewProperties.Name })) {
$accountChangedPropertiesObject.OldValues.$($accountOldProperty.Name) = $accountOldProperty.Value
}
foreach ($accountNewProperty in $accountNewProperties) {
$accountChangedPropertiesObject.NewValues.$($accountNewProperty.Name) = $accountNewProperty.Value
}
# Unarchive person if required
if ($TopdeskPerson.status -eq 'personArchived') {
# Unarchive person
$splatParamsPersonUnarchive = @{
TopdeskPerson = [ref]$TopdeskPerson
Headers = $authHeaders
BaseUrl = $actionContext.Configuration.baseUrl
Archive = $false
ArchivingReason = $actionContext.Configuration.personArchivingReason
}
if (-Not($actionContext.DryRun -eq $true)) {
Set-TopdeskPersonArchiveStatus @splatParamsPersonUnarchive
}
else {
Write-Warning "DryRun would unarchive person for update"
}
}
# Update TOPdesk person
$splatParamsPersonUpdate = @{
TopdeskPerson = $TopdeskPerson
Account = $account
Headers = $authHeaders
BaseUrl = $actionContext.Configuration.baseUrl
}
if (-Not($actionContext.DryRun -eq $true)) {
$TopdeskPersonUpdated = Set-TopdeskPerson @splatParamsPersonUpdate
}
else {
Write-Warning "DryRun would update Person. Old values: $($accountChangedPropertiesObject.oldValues | ConvertTo-Json). New values: $($accountChangedPropertiesObject.newValues | ConvertTo-Json)"
}
# Archive person
$splatParamsPersonArchive = @{
TopdeskPerson = [ref]$TopdeskPerson
Headers = $authHeaders
BaseUrl = $actionContext.Configuration.baseUrl
Archive = $true
ArchivingReason = $actionContext.Configuration.personArchivingReason
}
if (-Not($actionContext.DryRun -eq $true)) {
Set-TopdeskPersonArchiveStatus @splatParamsPersonArchive
}
else {
Write-Warning "DryRun would archive person after update"
}
$outputContext.AccountReference = $TopdeskPerson.id
$outputContext.Data = $TopdeskPersonUpdated
$outputContext.PreviousData = $TopdeskPerson
if (-Not($actionContext.DryRun -eq $true)) {
Write-Information "Account with id [$($TopdeskPerson.id)] and dynamicName [($($TopdeskPerson.dynamicName))] successfully updated and archived. Old values: $($accountChangedPropertiesObject.oldValues | ConvertTo-Json). New values: $($accountChangedPropertiesObject.newValues | ConvertTo-Json)"
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Account with id [$($TopdeskPerson.id)] and dynamicName [($($TopdeskPerson.dynamicName))] successfully updated and archived. Old values: $($accountChangedPropertiesObject.oldValues | ConvertTo-Json). New values: $($accountChangedPropertiesObject.newValues | ConvertTo-Json)"
IsError = $false
})
}
break
}
'Disable' {
$splatParamsPersonArchive = @{
TopdeskPerson = [ref]$TopdeskPerson
Headers = $authHeaders
BaseUrl = $actionContext.Configuration.baseUrl
Archive = $true
ArchivingReason = $actionContext.Configuration.personArchivingReason
}
if (-Not($actionContext.DryRun -eq $true)) {
Set-TopdeskPersonArchiveStatus @splatParamsPersonArchive
Write-Information "Account with id [$($TopdeskPerson.id)] and dynamicName [($($TopdeskPerson.dynamicName))] successfully archived"
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Account with id [$($TopdeskPerson.id)] and dynamicName [($($TopdeskPerson.dynamicName))] successfully archived"
IsError = $false
})
}
else {
Write-Warning "DryRun would archive person"
}
$outputContext.Data = $account
$outputContext.PreviousData = $TopdeskPerson
break
}
'NoChanges' {
$outputContext.AccountReference = $TopdeskPerson.id
$outputContext.Data = $account
$outputContext.PreviousData = $TopdeskPerson
Write-Information "Account with id [$($TopdeskPerson.id)] and dynamicName [($($TopdeskPerson.dynamicName))] already archived"
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Account with id [$($TopdeskPerson.id)] and dynamicName [($($TopdeskPerson.dynamicName))] already archived"
IsError = $false
})
break
}
'NotFound' {
$outputContext.Data = $account
$outputContext.PreviousData = $account
Write-Information "Account with id [$($actionContext.References.Account)] successfully archived (skiped not found)"
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Account with id [$($actionContext.References.Account)] successfully archived (skiped not found)"
IsError = $false
})
break
}
}
#endregion Write
}
catch {
$ex = $PSItem
if ($($ex.Exception.GetType().FullName -eq 'Microsoft.PowerShell.Commands.HttpResponseException') -or
$($ex.Exception.GetType().FullName -eq 'System.Net.WebException')) {
if (-Not [string]::IsNullOrEmpty($ex.ErrorDetails.Message)) {
$errorMessage = "Could not $action person. Error: $($ex.ErrorDetails.Message)"
}
else {
$errorMessage = "Could not $action person. Error: $($ex.Exception.Message)"
}
}
else {
$errorMessage = "Could not $action person. Error: $($ex.Exception.Message) $($ex.ScriptStackTrace)"
}
# Only log when there are no lookup values, as these generate their own audit message
if (-Not($ex.Exception.Message -eq 'Error(s) occured while looking up required values')) {
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = $errorMessage
IsError = $true
})
}
}
finally {
# Check if auditLogs contains errors, if no errors are found, set success to true
if ($outputContext.AuditLogs.IsError -notContains $true) {
$outputContext.Success = $true
}
}