-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisable.ps1
161 lines (142 loc) · 6 KB
/
disable.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
############################################
# HelloID-Conn-Prov-Target-Facilitor-Disable
# PowerShell V2
############################################
# Enable TLS1.2
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.SecurityProtocolType]::Tls12
#region functions
function Resolve-FacilitorError {
[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
}
try {
# Collect ErrorDetails
if ($ErrorObject.Exception.GetType().FullName -eq 'Microsoft.PowerShell.Commands.HttpResponseException') {
$httpErrorObj.ErrorDetails = $ErrorObject.ErrorDetails.Message
}
elseif ($ErrorObject.Exception.GetType().FullName -eq 'System.Net.WebException') {
if ($null -ne $ErrorObject.Exception.Response) {
if ([string]::IsNullOrEmpty($ErrorObject.ErrorDetails.Message)) {
$streamReaderResponse = [System.IO.StreamReader]::new($ErrorObject.Exception.Response.GetResponseStream()).ReadToEnd()
if ($null -ne $streamReaderResponse) {
$httpErrorObj.ErrorDetails = $streamReaderResponse
}
}
else {
$httpErrorObj.ErrorDetails = $ErrorObject.ErrorDetails.Message
}
}
}
$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'
}
$headers = @{
'Content-Type' = 'application/json; charset=utf-8'
Accept = 'application/json; charset=utf-8'
'X-FACILITOR-API-KEY' = $actionContext.Configuration.APIKey
}
Write-Information "Verifying if a Facilitor account for [$($personContext.Person.DisplayName)] exists"
try {
$splatGetUser = @{
Uri = "$($actionContext.Configuration.BaseUrl)/api2/persons/$($actionContext.References.Account)"
Method = 'GET'
Headers = $headers
}
$correlatedAccount = (Invoke-RestMethod @splatGetUser).person
}
catch {
# A '404' is returned if the entity cannot be found
if ($_.Exception.Response.StatusCode -eq 404) {
$correlatedAccount = $null
}
else {
throw
}
}
if ($null -ne $correlatedAccount) {
$action = 'DisableAccount'
}
else {
$action = 'NotFound'
}
# Process
switch ($action) {
'DisableAccount' {
Write-Information "Disabling Facilitor account with accountReference: [$($actionContext.References.Account)]"
$nowUtc = [DateTime]::UtcNow
$body = @{
person = @{
deactivated = $nowUtc.ToString("yyyy-MM-ddTHH:mm:ssZ")
}
} | ConvertTo-Json
$splatDisableUser = @{
Uri = "$($actionContext.Configuration.BaseUrl)/api2/persons/$($actionContext.References.Account)"
Method = 'PUT'
Headers = $headers
Body = $body
}
if (-not($actionContext.DryRun -eq $true)) {
$null = Invoke-RestMethod @splatDisableUser
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Disable account with accountReference: [$($actionContext.References.Account)] was successful"
IsError = $false
})
}
else {
write-warning "DryRun would disable account: $body"
}
$outputContext.Success = $true
break
}
'NotFound' {
Write-Information "Facilitor account: [$($actionContext.References.Account)] for person: [$($personContext.Person.DisplayName)] could not be found, possibly indicating that it could be deleted, or the account is not correlated"
$outputContext.Success = $true
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Facilitor account with accountReference: [$($actionContext.References.Account)] could not be found, indicating that it may have been deleted. Skipping action"
IsError = $false
})
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-FacilitorError -ErrorObject $ex
$auditMessage = "Could not disable Facilitor account. Error: $($errorObj.FriendlyMessage)"
Write-Information "Error at Line '$($errorObj.ScriptLineNumber)': $($errorObj.Line). Error: $($errorObj.ErrorDetails)"
}
else {
$auditMessage = "Could not disable Facilitor account. Error: $($ex.Exception.Message)"
Write-Information "Error at Line '$($ex.InvocationInfo.ScriptLineNumber)': $($ex.InvocationInfo.Line). Error: $($ex.Exception.Message)"
}
$outputContext.AuditLogs.Add([PSCustomObject]@{
Action = $action
Message = $auditMessage
IsError = $true
})
}