-
Notifications
You must be signed in to change notification settings - Fork 14
/
Export-Blob.ps1
413 lines (351 loc) · 15 KB
/
Export-Blob.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
function Export-Blob
{
<#
.Synopsis
Exports data to a cloud blob
.Description
Exports data to a blob in Azure
.Example
Get-ChildItem -Filter *.ps1 | Export-Blob -Container scripts -StorageAccount astorageAccount -StorageKey (Get-SecureSetting aStorageKey -ValueOnly)
.Link
Get-Blob
.Link
Import-Blob
.Link
Remove-Blob
#>
[OutputType([Nullable])]
param(
# The input object for the blob.
[Parameter(ValueFromPipeline=$true)]
[PSObject]
$InputObject,
# The name of the container
[Parameter(Mandatory=$true,Position=0, ValueFromPipelineByPropertyName=$true)]
[string]$Container,
# The name of the blob
[Parameter(Mandatory=$true,Position=1,ValueFromPipelineByPropertyName=$true)]
[string]$Name,
# The content type. If a file is provided as input, this will be provided automatically. If not, it will be text/plain
[string]$ContentType = "text/plain",
# The storage account
[string]$StorageAccount,
# The storage key
[string]$StorageKey,
# If set, the container the blob is put into will be made public
[Switch]
$Public
)
begin {
#region Create a lookup table of mime types
if (-not $script:cachedContentTypes) {
$script:cachedContentTypes = @{}
$ctKey = [Microsoft.Win32.Registry]::ClassesRoot.OpenSubKey("MIME\Database\Content Type")
$ctKey.GetSubKeyNames() |
ForEach-Object {
$extension= $ctKey.OpenSubKey($_).GetValue("Extension")
if ($extension) {
$script:cachedContentTypes["${extension}"] = $_
}
}
}
#endregion Create a lookup table of mime types
# Create a lambda to sign messages
$signMessage = {
param(
[Hashtable]$Header,
[Uri]$Url,
[Uint32]$ContentLength,
[string]$IfMatch ="",
[string]$Md5OrContentType = "",
[string]$NowString = [DateTime]::now.ToString("R", [Globalization.CultureInfo]::InvariantCulture),
[Switch]$IsTableStorage,
[string]$method = "GET",
[string]$Storageaccount,
[string]$StorageKey
)
$method = $method.ToUpper()
$MessageSignature =
if ($IsTableStorage) {
[String]::Format("{0}`n`n{1}`n{2}`n{3}",@(
$method,
"application/atom+xml",
$NowString,
( & $GetCanonicalizedResource $Url $StorageAccount)))
} else {
if ($md5OrCOntentType) {
[String]::Format("{0}`n`n`n{1}`n`n{5}`n`n`n{2}`n`n`n`n{3}{4}", @(
$method,
$(if ($method -eq "GET" -or $method -eq "HEAD") {[String]::Empty} else { $ContentLength }),
$IfMatch,
"$(& $GetCanonicalizedHeader $Header)",
"$( & $GetCanonicalizedResource $Url $StorageAccount)",
$Md5OrContentType
));
} else {
[String]::Format("{0}`n`n`n{1}`n{5}`n`n`n`n{2}`n`n`n`n{3}{4}", @(
$method,
$(if ($method -eq "GET" -or $method -eq "HEAD") {[String]::Empty} else { $ContentLength }),
$IfMatch,
"$(& $GetCanonicalizedHeader $Header)",
"$( & $GetCanonicalizedResource $Url $StorageAccount)",
$Md5OrContentType
));
}
}
$SignatureBytes = [Text.Encoding]::UTF8.GetBytes($MessageSignature)
[byte[]]$b64Arr = [Convert]::FromBase64String($StorageKey)
$SHA256 = new-object Security.Cryptography.HMACSHA256
$sha256.Key = $b64Arr
$AuthorizationHeader = "SharedKey " + $StorageAccount + ":" + [Convert]::ToBase64String($SHA256.ComputeHash($SignatureBytes))
$AuthorizationHeader
}
$GetCanonicalizedHeader = {
param(
[Hashtable]$Header
)
$headerNameList = new-OBject Collections.ArrayList;
$sb = new-object Text.StringBuilder;
foreach ($headerName in $Header.Keys) {
if ($headerName.ToLowerInvariant().StartsWith("x-ms-", [StringComparison]::Ordinal)) {
$null = $headerNameList.Add($headerName.ToLowerInvariant());
}
}
$null = $headerNameList.Sort();
[Collections.Specialized.NameValueCollection]$headers =NEw-OBject Collections.Specialized.NameValueCollection
foreach ($h in $header.Keys) {
$null = $headers.Add($h, $header[$h])
}
foreach ($headerName in $headerNameList)
{
$builder = new-Object Text.StringBuilder $headerName
$separator = ":";
foreach ($headerValue in (& $GetHeaderValues $headers $headerName))
{
$trimmedValue = $headerValue.Replace("`r`n", [String]::Empty)
$null = $builder.Append($separator)
$null = $builder.Append($trimmedValue)
$separator = ","
}
$null = $sb.Append($builder.ToString())
$null = $sb.Append("`n")
}
return $sb.ToString()
}
$GetHeaderValues = {
param([Collections.Specialized.NameValueCollection]$headers, $headerName)
$list = new-OBject Collections.ArrayList
$values = $headers.GetValues($headerName)
if ($values -ne $null)
{
foreach ($str in $values) {
$null = $list.Add($str.TrimStart($null))
}
}
return $list;
}
$GetCanonicalizedResource = {
param([uri]$address, [string]$accountName)
$str = New-object Text.StringBuilder
$builder = New-object Text.StringBuilder "/"
$null = $builder.Append($accountName)
$null = $builder.Append($address.AbsolutePath)
$null = $str.Append($builder.ToString())
$values2 = New-Object Collections.Specialized.NameValueCollection
if (!$IsTableStorage) {
$values = [Web.HttpUtility]::ParseQueryString($address.Query)
foreach ($str2 in $values.Keys) {
$list = New-Object Collections.ArrayList
foreach ($v in $values.GetValues($str2)) {
$null = $list.add($v)
}
$null = $list.Sort();
$builder2 = New-Object Text.StringBuilder
foreach ($obj2 in $list)
{
if ($builder2.Length -gt 0)
{
$null = $builder2.Append(",");
}
$null = $builder2.Append($obj2.ToString());
}
$valueName = if ($str2 -eq $null) {
$str2
} else {
$str2.ToLowerInvariant()
}
$values2.Add($valueName , $builder2.ToString())
}
}
$list2 = New-Object Collections.ArrayList
foreach ($k in $values2.AllKeys) {
$null = $list2.Add($k)
}
$null = $list2.Sort()
foreach ($str3 in $list2)
{
$builder3 = New-Object Text.StringBuilder([string]::Empty);
$null = $builder3.Append($str3);
$null = $builder3.Append(":");
$null = $builder3.Append($values2[$str3]);
$null = $str.Append("`n");
$null = $str.Append($builder3.ToString());
}
return $str.ToString();
}
#$inputList = New-Object Collections.ArrayList
$inputData = New-Object Collections.ArrayList
if (-not $script:alreadyPublicContainers) {
$script:alreadyPublicContainers = @{}
}
if (-not $script:knownContainers) {
$script:knownContainers= @{}
}
}
process {
#$null = $inputList.Add($inputObject)
$null = $inputData.Add((@{} + $psBoundParameters))
}
end {
#region check for and cache the storage account
if (-not $StorageAccount) {
$storageAccount = $script:CachedStorageAccount
}
if (-not $StorageKey) {
$StorageKey = $script:CachedStorageKey
}
if (-not $StorageAccount) {
Write-Error "No storage account provided"
return
}
if (-not $StorageKey) {
Write-Error "No storage key provided"
return
}
$script:CachedStorageAccount = $StorageAccount
$script:CachedStorageKey = $StorageKey
#endregion check for and cache the storage account
foreach ($inputInfo in $inputData) {
if ($inputInfo.Name) {
$Name = $inputInfo.Name
}
if ($inputInfo.Container) {
$Container = $inputInfo.Container
}
$InputObject = $inputInfo.InputObject
$containerBlobList = $null
$Container = "$Container".ToLower()
if (-not $knownContainers[$Container]) {
$method = 'GET'
$uri = "http://$StorageAccount.blob.core.windows.net/${Container}?restype=container&comp=list&include=metadata"
$header = @{
"x-ms-date" = $nowString
"x-ms-version" = "2011-08-18"
"DataServiceVersion" = "2.0;NetFx"
"MaxDataServiceVersion" = "2.0;NetFx"
}
$header."x-ms-date" = [DateTime]::Now.ToUniversalTime().ToString("R", [Globalization.CultureInfo]::InvariantCulture)
$nowString = $header.'x-ms-date'
$header.authorization = . $signMessage -header $Header -url $Uri -nowstring $nowString -storageaccount $StorageAccount -storagekey $StorageKey -contentLength 0 -method GET
$containerBlobList = Get-Web -UseWebRequest -Header $header -Url $Uri -Method GET -ErrorAction SilentlyContinue -ErrorVariable err -HideProgress
if ($containerBlobList) {
$knownContainers[$Container] = $knownContainers[$Container]
}
}
if (-not $containerBlobList) {
# Tries to create the container if it's not found
$method = 'PUT'
$uri = "http://$StorageAccount.blob.core.windows.net/${Container}?restype=container"
$header = @{
"x-ms-date" = $nowString
"x-ms-version" = "2011-08-18"
"DataServiceVersion" = "2.0;NetFx"
"MaxDataServiceVersion" = "2.0;NetFx"
}
$header."x-ms-date" = [DateTime]::Now.ToUniversalTime().ToString("R", [Globalization.CultureInfo]::InvariantCulture)
$nowString = $header.'x-ms-date'
$header.authorization = . $signMessage -header $Header -url $Uri -nowstring $nowString -storageaccount $StorageAccount -storagekey $StorageKey -contentLength 0 -method PUT
$Putresult =
try {
Get-Web -UseWebRequest -Header $header -Url $Uri -Method PUT -HideProgress
} catch {
$_
}
$null = $Putresult
}
if ($Public -and -not $script:alreadyPublicContainers[$Container]){
# Enables public access to the container
$acl =@"
<?xml version="1.0" encoding="utf-8"?>
<SignedIdentifiers>
<SignedIdentifier>
<Id>Policy1</Id>
<AccessPolicy>
<Start>2011-01-01T09:38:05Z</Start>
<Expiry>2011-12-31T09:38:05Z</Expiry>
<Permission>r</Permission>
</AccessPolicy>
</SignedIdentifier>
<SignedIdentifier>
<Id>Policy2</Id>
<AccessPolicy>
<Start>2010-01-01T09:38:05Z</Start>
<Expiry>2012-12-31T09:38:05Z</Expiry>
<Permission>r</Permission>
</AccessPolicy>
</SignedIdentifier>
</SignedIdentifiers>
"@
$aclBytes= [Text.Encoding]::UTF8.GetBytes("$acl")
$method = 'PUT'
$uri = "http://$StorageAccount.blob.core.windows.net/${Container}?restype=container&comp=acl"
$header = @{
"x-ms-date" = $nowString
"x-ms-version" = "2011-08-18"
"x-ms-blob-public-access" = "container"
"DataServiceVersion" = "2.0;NetFx"
"MaxDataServiceVersion" = "2.0;NetFx"
'content-type' = $ct
}
$header."x-ms-date" = [DateTime]::Now.ToUniversalTime().ToString("R", [Globalization.CultureInfo]::InvariantCulture)
$nowString = $header.'x-ms-date'
$ct ='application/x-www-form-urlencoded'
$header.authorization = & $signMessage -header $Header -url $Uri -nowstring $nowString -storageaccount $StorageAccount -storagekey $StorageKey -contentLength $aclBytes.Length -method PUT -md5OrContentType $ct
$Created = Get-Web -UseWebRequest -Header $header -Url $Uri -Method PUT -RequestBody $aclBytes -ErrorAction SilentlyContinue
$null = $Created
$script:alreadyPublicContainers[$Container] = $Container
}
$uri = "http://$StorageAccount.blob.core.windows.net/$Container/$Name"
# Turn our input into bytes
if ($InputObject -is [IO.FileInfo]) {
$bytes = [io.fIle]::ReadAllBytes($InputObject.Fullname)
$extension = [IO.Path]::GetExtension($InputObject.Fullname)
$mimeType = $script:CachedContentTypes[$extension]
if (-not $mimeType) {
$mimetype = "unknown/unknown"
}
} elseif ($InputObject -as [byte[]]) {
$bytes = $InputObject -as [byte[]]
} else {
$bytes = [Text.Encoding]::UTF8.GetBytes("$InputObject")
}
if (-not $mimetype -or $psBoundParameters.ContentType) {
$mimeType = $ContentType
}
$method = 'PUT'
$header = @{
'x-ms-blob-type' = 'BlockBlob'
"x-ms-date" = $nowString
"x-ms-version" = "2011-08-18"
"DataServiceVersion" = "2.0;NetFx"
"MaxDataServiceVersion" = "2.0;NetFx"
'content-type' = $mimeType
}
$header."x-ms-date" = [DateTime]::Now.ToUniversalTime().ToString("R", [Globalization.CultureInfo]::InvariantCulture)
$nowString = $header.'x-ms-date'
$header.authorization = . $signMessage -header $Header -url $Uri -nowstring $nowString -storageaccount $StorageAccount -storagekey $StorageKey -contentLength $bytes.Length -method PUT -md5OrContentType $mimeType
$blobData= Get-Web -UseWebRequest -Header $header -Url $Uri -Method PUT -RequestBody $bytes -ContentType $mimeType
$null = $blobData
}
}
}