-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenable.ps1
230 lines (214 loc) · 9.65 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
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
#################################################
# HelloID-Conn-Prov-Target-Inception-Enable
# PowerShell V2
# Version: 2.0.0
#################################################
# Set to false at start, because only when no error occurs it is set to true
$outputContext.Success = $false
# Enable TLS1.2
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.SecurityProtocolType]::Tls12
# Set debug logging
switch ($($actionContext.Configuration.isDebug)) {
$true { $VerbosePreference = 'Continue' }
$false { $VerbosePreference = 'SilentlyContinue' }
}
#region functions
function Get-InceptionToken {
[CmdletBinding()]
param()
try {
$splatTokenParams = @{
Uri = "$($actionContext.Configuration.BaseUrl)/api/v2/authentication/login"
Method = 'POST'
Body = @{
username = $actionContext.Configuration.UserName
password = $actionContext.Configuration.Password
} | ConvertTo-Json
Headers = @{
Accept = 'application/json'
'Content-Type' = 'application/json'
}
}
$tokenResponse = Invoke-RestMethod @splatTokenParams -Verbose:$false
Write-Output $tokenResponse.Token
}
catch {
$PSCmdlet.ThrowTerminatingError($_)
}
}
function Resolve-InceptionError {
[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.
if (-not [string]::IsNullOrEmpty($errorDetailsObject.languageString)) {
$httpErrorObj.FriendlyMessage = $errorDetailsObject.LanguageString
}
elseif (-not [string]::IsNullOrEmpty($errorDetailsObject.description)) {
$httpErrorObj.FriendlyMessage = $errorDetailsObject.Description
}
$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'
}
Write-Verbose "Verifying if an Inception account for [$($personContext.Person.DisplayName)] (still) exists"
$headers = [System.Collections.Generic.Dictionary[string, string]]::new()
$headers.Add('Authorization', "Bearer $(Get-InceptionToken)")
$headers.Add('Accept', 'application/json')
$headers.Add('Content-Type', 'application/json')
try {
$splatUserParams = @{
Uri = "$($actionContext.Configuration.BaseUrl)/api/v2/hrm/employees/$($actionContext.References.Account.AccountReference)"
Method = 'GET'
Headers = $Headers
}
$correlatedAccount = Invoke-RestMethod @splatUserParams -Verbose:$false
}
catch {
if ( $_.Exception.message -notmatch '404' ) {
throw $_
}
}
try {
$splatUserParams = @{
Uri = "$($actionContext.Configuration.BaseUrl)/api/v2/security/users/$($actionContext.References.Account.AccountReference)"
Method = 'GET'
Headers = $Headers
}
$correlatedUser = Invoke-RestMethod @splatUserParams -Verbose:$false
}
catch {
if ( $_.Exception.message -notmatch '404' ) {
throw $_
}
}
if ($null -ne $correlatedAccount) {
$action = 'EnableAccount'
$dryRunMessage = "Enable Inception Employee account: [$($actionContext.References.Account.AccountReference)] for person: [$($personContext.Person.DisplayName)] will be executed during enforcement."
if ($null -ne $correlatedUser) {
$dryRunMessage += " Next Enable Inception User account for: [$($personContext.Person.DisplayName)] will be executed."
}
else {
$dryRunMessage += " Next Create Inception User account for: [$($personContext.Person.DisplayName)] will be executed."
}
}
else {
$action = 'NotFound'
$dryRunMessage = "Inception Employee account: [$($actionContext.References.Account.AccountReference)] for person: [$($personContext.Person.DisplayName)] could not be found, possibly indicating that it could be deleted, or the account is not correlated."
}
# Add a message and the result of each of the validations showing what will happen during enforcement
if ($actionContext.DryRun -eq $true) {
Write-Verbose "[DryRun] $dryRunMessage"
}
$actionContext.Data.id = $actionContext.References.Account.AccountReference
# Process
if (-not($actionContext.DryRun -eq $true)) {
switch ($action) {
'EnableAccount' {
Write-Verbose "Enabling Inception account with accountReference: [$($actionContext.References.Account.AccountReference)]"
$splatEnableEmployee = @{
Uri = "$($actionContext.Configuration.BaseUrl)/api/v2/hrm/employees/$($actionContext.References.Account.AccountReference)"
Method = 'PUT'
Headers = $Headers
Body = @{
state = 20
enddate = $actionContext.Data.enddate
} | ConvertTo-Json
}
$null = Invoke-RestMethod @splatEnableEmployee -Verbose:$false
if ($correlatedUser) {
Write-Verbose 'Updating enddate of Exising User account'
$splatEnableUser = @{
Uri = "$($actionContext.Configuration.BaseUrl)/api/v2/security/users/$($actionContext.References.Account.AccountReference)"
Method = 'PUT'
Headers = $Headers
Body = @{
enddate = $actionContext.Data.enddate
} | ConvertTo-Json
}
$null = Invoke-RestMethod @splatEnableUser -Verbose:$false
$userAuditMessage = 'Enable User account'
}
else {
Write-Verbose 'Creating new User account'
$splatNewUser = @{
Uri = "$($actionContext.Configuration.BaseUrl)/api/v2/security/users"
Method = 'POST'
Headers = $Headers
Body = $actionContext.Data | ConvertTo-Json
}
$null = Invoke-RestMethod @splatNewUser -Verbose:$false
$userAuditMessage = 'Create User account'
}
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Enable Inception Employee account and $($userAuditMessage) was successful."
IsError = $false
})
break
}
'NotFound' {
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "Inception 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"
IsError = $true
})
break
}
}
}
}
catch {
$ex = $PSItem
if ($($ex.Exception.GetType().FullName -eq 'Microsoft.PowerShell.Commands.HttpResponseException') -or
$($ex.Exception.GetType().FullName -eq 'System.Net.WebException')) {
$errorObj = Resolve-InceptionError -ErrorObject $ex
$auditMessage = "Could not enable Inception account. Error: $($errorObj.FriendlyMessage)"
Write-Warning "Error at Line '$($errorObj.ScriptLineNumber)': $($errorObj.Line). Error: $($errorObj.ErrorDetails)"
}
else {
$auditMessage = "Could not enable Inception 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
})
}
finally {
# Check if auditLogs contains errors, if no errors are found, set success to true
if (-not($outputContext.AuditLogs.IsError -contains $true)) {
$outputContext.Success = $true
}
}