-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdelete.ps1
207 lines (188 loc) · 8.24 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
##################################################
# HelloID-Conn-Prov-Target-GoogleWorkSpace-Delete
# PowerShell V2
##################################################
# Enable TLS1.2
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.SecurityProtocolType]::Tls12
#region functions
function Resolve-GoogleWSError {
[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)
if (-NOT([String]::IsNullOrEmpty(($errorDetailsObject.error | Select-Object -First 1).message))) {
$httpErrorObj.FriendlyMessage = $errorDetailsObject.error.message -join ', '
} else {
$httpErrorObj.FriendlyMessage = $errorDetailsObject.error_description
}
} catch {
$httpErrorObj.FriendlyMessage = $httpErrorObj.ErrorDetails
}
Write-Output $httpErrorObj
}
}
function Get-GoogleWSAccessToken {
[CmdletBinding()]
param (
[Parameter()]
[string]
$Issuer,
[Parameter()]
[string]
$Subject,
[Parameter()]
[string[]]$Scopes,
[Parameter()]
[string]
$P12CertificateBase64,
[Parameter()]
[string]
$P12CertificatePassword
)
try {
$now = [math]::Round(((Get-Date).ToUniversalTime() - ([datetime]"1970-01-01T00:00:00Z").ToUniversalTime()).TotalSeconds)
$jwtHeader = @{
alg = 'RS256'
typ = 'JWT'
} | ConvertTo-Json
$jwtBase64Header = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($jwtHeader))
$jwtPayload = [Ordered]@{
iss = $Issuer
sub = $Subject
scope = $($Scopes -join " ")
aud = "https://www.googleapis.com/oauth2/v4/token"
exp = $now + 3600
iat = $now
} | ConvertTo-Json
$jwtBase64Payload = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($jwtPayload))
$rawP12Certificate = [system.convert]::FromBase64String($P12CertificateBase64)
$p12Certificate = [System.Security.Cryptography.X509Certificates.X509Certificate2]::new($rawP12Certificate, $P12CertificatePassword, [System.Security.Cryptography.X509Certificates.X509KeyStorageFlags]::Exportable)
$rsaPrivate = $P12Certificate.PrivateKey
$rsa = [System.Security.Cryptography.RSACryptoServiceProvider]::new()
$rsa.ImportParameters($rsaPrivate.ExportParameters($true))
$signatureInput = "$jwtBase64Header.$jwtBase64Payload"
$signature = $rsa.SignData([Text.Encoding]::UTF8.GetBytes($signatureInput), "SHA256")
$base64Signature = [System.Convert]::ToBase64String($signature)
$jwtToken = "$signatureInput.$base64Signature"
$splatParams = @{
Uri = 'https://www.googleapis.com/oauth2/v4/token'
Method = 'POST'
Body = @{
grant_type = 'urn:ietf:params:oauth:grant-type:jwt-bearer'
assertion = $jwtToken
}
ContentType = 'application/x-www-form-urlencoded'
}
$response = Invoke-RestMethod @splatParams
$response.access_token
}
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'
}
Write-Information 'Getting JWT token'
$splatGetGoogleWSTokenParams = @{
Issuer = $actionContext.Configuration.Issuer
Subject = $actionContext.Configuration.Subject
Scopes = @("https://www.googleapis.com/auth/admin.directory.user")
P12CertificateBase64 = $actionContext.Configuration.P12CertificateBase64
P12CertificatePassword = $actionContext.Configuration.P12CertificatePassword
}
$accessToken = Get-GoogleWSAccessToken @splatGetGoogleWSTokenParams
Write-Information 'Setting authentication headers'
$headers = [System.Collections.Generic.Dictionary[string, string]]::new()
$headers.Add('Authorization', "Bearer $($accessToken)")
Write-Information 'Verifying if a GoogleWS account exists'
try {
$splatGetUserParams = @{
Uri = "https://www.googleapis.com/admin/directory/v1/users/$($actionContext.References.Account)"
Method = 'GET'
Headers = $headers
}
$correlatedAccount = Invoke-RestMethod @splatGetUserParams
}
catch {
if ($_.Exception.Response.StatusCode -ne 404) {
throw $_
}
}
if ($null -ne $correlatedAccount) {
$action = 'DeleteAccount'
} else {
$action = 'NotFound'
}
# Process
switch ($action) {
'DeleteAccount' {
if (-not($actionContext.DryRun -eq $true)) {
$splatUpdateParams = @{
Uri = "https://www.googleapis.com/admin/directory/v1/users/$($actionContext.References.Account)"
Method = 'DELETE'
Headers = $headers
}
Write-Information "Deleting GoogleWS account with accountReference: [$($actionContext.References.Account)]"
$null = Invoke-RestMethod @splatUpdateParams
} else {
Write-Information "[DryRun] Delete GoogleWS account with AccountReference: [$($actionContext.References.Account)], will be executed during enforcement"
}
$outputContext.Success = $true
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = 'Delete account was successful'
IsError = $false
})
break
}
'NotFound' {
Write-Information "GoogleWS account: [$($actionContext.References.Account)] could not be found, possibly indicating that it may have been deleted"
$outputContext.Success = $true
$outputContext.AuditLogs.Add([PSCustomObject]@{
Message = "GoogleWS account: [$($actionContext.References.Account)] could not be found, possibly indicating that it may have been deleted"
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-GoogleWSError -ErrorObject $ex
$auditMessage = "Could not delete GoogleWS account. Error: $($errorObj.FriendlyMessage)"
Write-Warning "Error at Line '$($errorObj.ScriptLineNumber)': $($errorObj.Line). Error: $($errorObj.ErrorDetails)"
} else {
$auditMessage = "Could not delete GoogleWS 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
})
}