forked from MikeFal/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDocDBFunctions.ps1
257 lines (215 loc) · 8.16 KB
/
DocDBFunctions.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
<#
Borrowed and modified from Russell Young (https://russellyoung.net/2016/06/18/managing-documentdb-with-powershell/)
#>
Add-Type -AssemblyName System.Web
#Helper function, internal
function New-Header{
param([string]$action = "get"
,[string]$resType
,[string]$resourceId
,[string]$connectionKey)
$apiDate = (Get-Date).ToUniversalTime().ToString('R')
#Build Authorization
$keyBytes = [System.Convert]::FromBase64String($connectionKey)
$text = @($action.ToLowerInvariant() + `
"`n" + $resType.ToLowerInvariant() + `
"`n" + $resourceId + `
"`n" + $apiDate.ToLowerInvariant() + "`n" + "`n")
$body =[Text.Encoding]::UTF8.GetBytes($text)
$hmacsha = new-object -TypeName System.Security.Cryptography.HMACSHA256 -ArgumentList (,$keyBytes)
$hash = $hmacsha.ComputeHash($body)
$signature = [System.Convert]::ToBase64String($hash)
$authz = [System.Web.HttpUtility]::UrlEncode($('type=master&ver=1.0&sig=' + $signature))
#construct header
$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("Authorization", $authz)
$headers.Add("x-ms-version", '2015-12-16')
$headers.Add("x-ms-date", $apiDate)
return $headers
}
#DocDB Database Functions (Get/New/Remove)
function Get-DocDBDatabase {
param([string] $rooturi
,[string] $key
,[string ]$dbname
)
if($dbname){
$resourceid = "dbs/$dbname"
$uri = $rootUri + '/' + $resourceid
$headers = New-Header -resType dbs -resourceId $resourceid -action Get -connectionKey $key
} else {
$resourceid = "dbs"
$uri = $rootUri + '/' + $resourceid
$headers = New-Header -resType dbs -action Get -connectionKey $key
}
$response = Invoke-RestMethod -Uri $uri -Method Get -Headers $headers
return $response
}
function New-DocDBDatabase{
param([string] $rooturi
,[string] $key
,[string ]$dbname)
$uri = $rootUri + '/dbs'
$headers = New-Header -resType dbs -action Post -connectionKey $key
$body = "{
`"id`": `"$dbname`"
}"
$response = Invoke-RestMethod -Uri $uri -Method Post -Headers $headers -Body $body
return $response
}
function Remove-DocDBDatabase {
param([string] $rooturi
,[string] $key
,[string]$dbname
)
$resourceid = "dbs/$dbname"
$uri = $rootUri + '/' + $resourceid
$headers = New-Header -resType dbs -resourceId $resourceid -action Delete -connectionKey $key
$response = Invoke-RestMethod -Uri $uri -Method Delete -Headers $headers
return $response
}
#DocDB Collection Functions (Get/New/Remove)
function Get-DocDBCollection{
param([string] $rooturi
,[string] $key
,[string ]$dbname
,[string] $collection
)
if($collection){
$resourceid = "dbs/$dbname/colls/$collection"
$uri = $rootUri + '/' + $resourceid
} else {
$resourceid = "dbs/$dbname"
$uri = $rootUri + '/' + $resourceid + '/colls'
}
$headers = New-Header -resType colls -resourceId $resourceid -action Get -connectionKey $key
$response = Invoke-RestMethod -Uri $uri -Method Get -Headers $headers -Body $body
return $response
}
function New-DocDBCollection{
param([string] $rooturi
,[string] $key
,[string ]$dbname
,[string] $collection
#,[ValidateSet('S1','S2','S3')][string]$offer
)
$uri = $rootUri + "/dbs/$dbname/colls"
$headers = New-Header -resType colls -resourceId "dbs/$dbname" -action Post -connectionKey $key
$body = "{
`"id`": `"$collection`"
}"
$response = Invoke-RestMethod -Uri $uri -Method Post -Headers $headers -Body $body
return $response
}
function Remove-DocDBCollection{
param([string] $rooturi
,[string] $key
,[string ]$dbname
,[string] $collection
)
$resourceid = "dbs/$dbname/colls/$collection"
$uri = $rootUri + '/' + $resourceid
$headers = New-Header -resType colls -resourceId $resourceid -action Delete -connectionKey $key
$response = Invoke-RestMethod -Uri $uri -Method Delete -Headers $headers -Body $body
return $response
}
#DocDB Document Functions (Get/New/Remove)
function Get-DocDBDocument{
param([string] $rooturi
,[string] $key
,[string ]$dbname
,[string] $collection
,[string] $id)
$resourceid = "dbs/$dbname/colls/$collection"
if($id){
$headers = New-Header -action Get -resType docs -resourceId "$resourceid/docs/$id" -connectionKey $key
$uri = $rootUri + "/$resourceid/docs/$id"
} else {
$headers = New-Header -action Get -resType docs -resourceId $resourceid -connectionKey $key
$uri = $rootUri + "/$resourceid/docs"
}
$response = Invoke-RestMethod $uri -Method Get -ContentType 'application/json' -Headers $headers
return $response
}
function New-DocDBDocument{
param([string]$document
,[string] $rooturi
,[string] $key
,[string ]$dbname
,[string] $collection)
$collName = "dbs/"+$dbname+"/colls/" + $collection
$headers = New-Header -action Post -resType docs -resourceId $collName -connectionKey $key
$headers.Add("x-ms-documentdb-is-upsert", "true")
$uri = $rootUri + "/" + $collName + "/docs"
$response = Invoke-RestMethod $uri -Method Post -Body $document -ContentType 'application/json' -Headers $headers
return $response
}
function Remove-DocDBDocuments{
param([string] $rooturi
,[string] $key
,[string ]$dbname
,[string] $collection
,[string] $id )
if($id){
$docs = Get-DocDBDocument -rooturi $rooturi -key $key -dbname $dbname -collection $collection -id $id
} else {
$docs = Get-DocDBDocument -rooturi $rooturi -key $key -dbname $dbname -collection $collection
}
$response = @()
foreach($doc in $docs.documents){
$resourceid = "dbs/$dbname/colls/$collection/docs/$($doc.id)"
$headers = New-Header -action Delete -resType docs -resourceId $resourceid -connectionKey $key
$uri = $rootUri + "/$resourceid"
$response += Invoke-RestMethod $uri -Method Delete -Headers $headers
}
return $response
}
#WIP for adding stored procedure. Currently not working
function Add-DocDBStoredProcedure{
param([string] $rooturi
,[string] $key
,[string ]$dbname
,[string] $collection
,[string] $storedprocedure
)
$collName = "dbs/"+$dbname+"/colls/" + $collection
$headers = New-Header -action Post -resType sprocs -resourceId $collName -connectionKey $key
$uri = $rootUri + "/" + $collName + "/sprocs"
$response = Invoke-RestMethod $uri -Method Post -Body $storedprocedure -ContentType 'application/json' -Headers $headers
return $response
}
#Invoke functions
function Invoke-DocDbQuery{
param([string]$query
,[string] $rooturi
,[string] $key
,[string ]$dbname
,[string] $collection)
$collName = "dbs/"+$dbname+"/colls/" + $collection
$headers = New-Header -action Post -resType docs -resourceId $collName -connectionKey $key
$headers.Add("x-ms-documentdb-isquery", "true")
$headers.Add("Content-Type", "application/query+json")
$queryjson = "{
`"query`": `"$query`"
}"
$uri = $rootUri + "/" + $collName + "/docs"
$response = Invoke-RestMethod $uri -Method Post -Body $queryjson -Headers $headers
return $response
}
function Invoke-DocDbStoredProcedure{
param([string] $rooturi
,[string] $key
,[string ]$dbname
,[string] $collection
,[string]$sproc
,[string]$params)
$resourceid = "dbs/$dbname/colls/$collection/sprocs/$sproc"
$headers = New-Header -action Post -resType sprocs -resourceId $resourceid -connectionKey $key
$uri = $rooturi + "/$resourceid"
if($params){
$response = Invoke-RestMethod $uri -Method Post -Body $params -Headers $headers
} else {
$response = Invoke-RestMethod $uri -Method Post -Headers $headers
}
return $response
}