-
Notifications
You must be signed in to change notification settings - Fork 135
/
DSC_xRemoteFile.psm1
853 lines (705 loc) · 24.4 KB
/
DSC_xRemoteFile.psm1
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
$errorActionPreference = 'Stop'
Set-StrictMode -Version 'Latest'
$modulePath = Join-Path -Path (Split-Path -Path (Split-Path -Path $PSScriptRoot -Parent) -Parent) -ChildPath 'Modules'
# Import the shared modules
Import-Module -Name (Join-Path -Path $modulePath `
-ChildPath (Join-Path -Path 'xPSDesiredStateConfiguration.Common' `
-ChildPath 'xPSDesiredStateConfiguration.Common.psm1'))
Import-Module -Name (Join-Path -Path $modulePath -ChildPath 'DscResource.Common')
# Import Localization Strings
$script:localizedData = Get-LocalizedData -DefaultUICulture 'en-US'
# Path where cache will be stored. It's cleared whenever LCM gets new configuration.
$script:cacheLocation = "$env:ProgramData\Microsoft\Windows\PowerShell\Configuration\BuiltinProvCache\DSC_xRemoteFile"
<#
.SYNOPSIS
The Get-TargetResource function is used to fetch the status of file
specified in DestinationPath on the target machine.
.PARAMETER DestinationPath
Path under which downloaded or copied file should be accessible after
operation.
.PARAMETER Uri
Uri of a file which should be copied or downloaded. This parameter
supports HTTP and HTTPS values.
.PARAMETER ChecksumType
The algorithm used to calculate the checksum of the file.
#>
function Get-TargetResource
{
[CmdletBinding()]
[OutputType([System.Collections.Hashtable])]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$DestinationPath,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Uri,
[Parameter()]
[System.String]
[ValidateSet('None', 'SHA1', 'SHA256', 'SHA384', 'SHA512', 'MACTripleDES', 'MD5', 'RIPEMD160')]
$ChecksumType = 'None'
)
# Check whether DestinationPath is existing file
$ensure = 'Absent'
$pathItemType = Get-PathItemType -Path $DestinationPath
$checksumValue = ''
switch ($pathItemType)
{
'File'
{
Write-Verbose -Message ($script:localizedData.DestinationPathIsExistingFile -f $DestinationPath)
$ensure = 'Present'
if ($ChecksumType -ine 'None')
{
$getFileHash = Get-FileHash -Path $DestinationPath -Algorithm $ChecksumType
$checksumValue = $getFileHash.Hash
}
}
'Directory'
{
Write-Verbose -Message ($script:localizedData.DestinationPathIsExistingPath -f $DestinationPath)
# If it's existing directory, let's check whether expectedDestinationPath exists
$uriFileName = Split-Path -Path $Uri -Leaf
$expectedDestinationPath = Join-Path -Path $DestinationPath -ChildPath $uriFileName
if (Test-Path -Path $expectedDestinationPath)
{
Write-Verbose -Message ($script:localizedData.FileExistsInDestinationPath -f $uriFileName)
$ensure = 'Present'
if ($ChecksumType -ine 'None')
{
$getFileHash = Get-FileHash -Path $expectedDestinationPath -Algorithm $ChecksumType
$checksumValue = $getFileHash.Hash
}
}
}
'Other'
{
Write-Verbose -Message ($script:localizedData.DestinationPathUnknownType -f $DestinationPath, $pathItemType)
}
'NotExists'
{
Write-Verbose -Message ($script:localizedData.DestinationPathDoesNotExist -f $DestinationPath)
}
}
return @{
DestinationPath = $DestinationPath
Uri = $Uri
Ensure = $ensure
Checksum = $checksumValue
}
}
<#
.SYNOPSIS
The Set-TargetResource function is used to download file found under
Uri location to DestinationPath. Additional parameters can be specified
to configure web request.
.PARAMETER DestinationPath
Path under which downloaded or copied file should be accessible after
operation.
.PARAMETER Uri
Uri of a file which should be copied or downloaded. This parameter
supports HTTP and HTTPS values.
.PARAMETER UserAgent
User agent for the web request.
.PARAMETER Headers
Headers of the web request.
.PARAMETER Credential
Specifies a user account that has permission to send the request.
.PARAMETER MatchSource
A boolean value to indicate whether the remote file should be re-downloaded
if the file in the DestinationPath was modified locally. The default value
is true.
.PARAMETER TimeoutSec
Specifies how long the request can be pending before it times out.
.PARAMETER Proxy
Uses a proxy server for the request, rather than connecting directly
to the Internet resource. Should be the URI of a network proxy server
(e.g 'http://10.20.30.1').
.PARAMETER ProxyCredential
Specifies a user account that has permission to use the proxy server that
is specified by the Proxy parameter.
.PARAMETER Checksum
Specifies the expected checksum value of downloaded file.
.PARAMETER ChecksumType
The algorithm used to calculate the checksum of the file.
#>
function Set-TargetResource
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$DestinationPath,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Uri,
[Parameter()]
[System.String]
$UserAgent,
[Parameter()]
[Microsoft.Management.Infrastructure.CimInstance[]]
$Headers,
[Parameter()]
[System.Management.Automation.Credential()]
[System.Management.Automation.PSCredential]
$Credential,
[Parameter()]
[System.Boolean]
$MatchSource = $true,
[Parameter()]
[System.Uint32]
$TimeoutSec,
[Parameter()]
[System.String]
$Proxy,
[Parameter()]
[System.Management.Automation.Credential()]
[System.Management.Automation.PSCredential]
$ProxyCredential,
[Parameter()]
[System.String]
[ValidateSet('None', 'SHA1', 'SHA256', 'SHA384', 'SHA512', 'MACTripleDES', 'MD5', 'RIPEMD160')]
$ChecksumType = 'None',
[Parameter()]
[System.String]
$Checksum
)
# Validate Uri
if (-not (Test-UriScheme -Uri $Uri -Scheme 'http|https|file'))
{
$errorMessage = $script:localizedData.InvalidWebUriError -f $Uri
New-InvalidDataException `
-ErrorId 'UriValidationFailure' `
-ErrorMessage $errorMessage
}
# Validate DestinationPath scheme
if (-not (Test-UriScheme -Uri $DestinationPath -Scheme 'file'))
{
$errorMessage = $script:localizedData.InvalidDestinationPathSchemeError -f $DestinationPath
New-InvalidDataException `
-ErrorId 'DestinationPathSchemeValidationFailure' `
-ErrorMessage $errorMessage
}
# Validate DestinationPath is not UNC path
if ($DestinationPath.StartsWith('\\'))
{
$errorMessage = $script:localizedData.DestinationPathIsUncError -f $DestinationPath
New-InvalidDataException `
-ErrorId 'DestinationPathIsUncFailure' `
-ErrorMessage $errorMessage
}
# Validate DestinationPath does not contain invalid characters
@('*', '?', '"', '<', '>', '|') | ForEach-Object -Process {
if ($DestinationPath.Contains($_))
{
$errorMessage = $script:localizedData.DestinationPathHasInvalidCharactersError -f $DestinationPath
New-InvalidDataException `
-ErrorId 'DestinationPathHasInvalidCharactersError' `
-ErrorMessage $errorMessage
}
}
# Validate DestinationPath does not end with / or \ (Invoke-WebRequest requirement)
if ($DestinationPath.EndsWith('/') -or $DestinationPath.EndsWith('\'))
{
$errorMessage = $script:localizedData.DestinationPathEndsWithInvalidCharacterError -f $DestinationPath
New-InvalidDataException `
-ErrorId 'DestinationPathEndsWithInvalidCharacterError' `
-ErrorMessage $errorMessage
}
# Check whether DestinationPath's parent directory exists. Create if it doesn't.
$destinationPathParent = Split-Path -Path $DestinationPath -Parent
if (-not (Test-Path $destinationPathParent))
{
$null = New-Item -ItemType Directory -Path $destinationPathParent -Force
}
# Check whether DestinationPath's leaf is an existing folder
$uriFileName = Split-Path -Path $Uri -Leaf
if (Test-Path $DestinationPath -PathType Container)
{
$DestinationPath = Join-Path -Path $DestinationPath -ChildPath $uriFileName
}
# Remove ChecksumType and Checksum from parameters as they are not parameters of Invoke-WebRequest.
$null = $PSBoundParameters.Remove('ChecksumType')
$null = $PSBoundParameters.Remove('Checksum')
# Remove DestinationPath and MatchSource from parameters as they are not parameters of Invoke-WebRequest
$null = $PSBoundParameters.Remove('DestinationPath')
$null = $PSBoundParameters.Remove('MatchSource')
# Convert headers to hashtable
$null = $PSBoundParameters.Remove('Headers')
$headersHashtable = $null
if ($null -ne $Headers)
{
$headersHashtable = Convert-KeyValuePairArrayToHashtable -Array $Headers
}
# Invoke web request
try
{
$currentProgressPreference = $ProgressPreference
$ProgressPreference = 'SilentlyContinue'
Write-Verbose -Message ($script:localizedData.DownloadingURI -f $DestinationPath, $URI)
$count = 0
$success = $false
do
{
try
{
$count++
Invoke-WebRequest `
@PSBoundParameters `
-Headers $headersHashtable `
-OutFile $DestinationPath
$success = $true
}
catch [System.Exception]
{
Write-Verbose -Message ($script:localizedData.DownloadingFailedRetry -f $URI, $count, $_.Exception.Message)
if ($count -gt 5)
{
# Inside catch variable $_ is not the exception itself, but a System.Management.Automation.ErrorRecord that contains the actual Exception
throw $_.Exception
}
Start-Sleep -Seconds 5
}
}
while ($success -eq $false)
}
catch [System.OutOfMemoryException]
{
$errorMessage = $script:localizedData.DownloadOutOfMemoryException -f $_
New-InvalidDataException `
-ErrorId 'SystemOutOfMemoryException' `
-ErrorMessage $errorMessage
}
catch [System.Exception]
{
$errorMessage = $script:localizedData.DownloadException -f $_
New-InvalidDataException `
-ErrorId 'SystemException' `
-ErrorMessage $errorMessage
}
finally
{
$ProgressPreference = $currentProgressPreference
}
# Check checksum
if ($ChecksumType -ine 'None' -and -not [String]::IsNullOrEmpty($Checksum))
{
$fileHashSplat = @{
Path = $DestinationPath
Algorithm = $ChecksumType
}
$getFileHash = Get-FileHash @fileHashSplat
$fileHash = $getFileHash.Hash
if ($fileHash -ine $Checksum)
{
# the checksum failed
$errorMessage = $script:localizedData.ChecksumDoesNotMatch -f $Checksum, $fileHash
New-InvalidDataException `
-ErrorId 'ChecksumDoesNotMatch' `
-ErrorMessage $errorMessage
}
}
# Update cache
if (Test-Path -Path $DestinationPath)
{
$downloadedFile = Get-Item -Path $DestinationPath
$lastWriteTime = $downloadedFile.LastWriteTimeUtc
$filesize = $downloadedFile.Length
$inputObject = @{ }
$inputObject['LastWriteTime'] = $lastWriteTime
$inputObject['FileSize'] = $filesize
Update-Cache -DestinationPath $DestinationPath -Uri $Uri -InputObject $inputObject
}
}
<#
.SYNOPSIS
The Test-TargetResource function is used to validate if the DestinationPath
exists on the machine.
.PARAMETER DestinationPath
Path under which downloaded or copied file should be accessible after
operation.
.PARAMETER Uri
Uri of a file which should be copied or downloaded. This parameter
supports HTTP and HTTPS values.
.PARAMETER UserAgent
User agent for the web request.
.PARAMETER Headers
Headers of the web request.
.PARAMETER Credential
Specifies a user account that has permission to send the request.
.PARAMETER MatchSource
A boolean value to indicate whether the remote file should be re-downloaded
if the file in the DestinationPath was modified locally. The default value
is true.
.PARAMETER TimeoutSec
Specifies how long the request can be pending before it times out.
.PARAMETER Proxy
Uses a proxy server for the request, rather than connecting directly
to the Internet resource. Should be the URI of a network proxy server
(e.g 'http://10.20.30.1').
.PARAMETER ProxyCredential
Specifies a user account that has permission to use the proxy server that
is specified by the Proxy parameter.
.PARAMETER Checksum
Specifies the expected checksum value of downloaded file.
.PARAMETER ChecksumType
The algorithm used to calculate the checksum of the file.
#>
function Test-TargetResource
{
[CmdletBinding()]
[OutputType([System.Boolean])]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$DestinationPath,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Uri,
[Parameter()]
[System.String]
$UserAgent,
[Parameter()]
[Microsoft.Management.Infrastructure.CimInstance[]]
$Headers,
[Parameter()]
[System.Management.Automation.Credential()]
[System.Management.Automation.PSCredential]
$Credential,
[Parameter()]
[System.Boolean]
$MatchSource = $true,
[Parameter()]
[System.Uint32]
$TimeoutSec,
[Parameter()]
[System.String]
$Proxy,
[Parameter()]
[System.Management.Automation.Credential()]
[System.Management.Automation.PSCredential]
$ProxyCredential,
[Parameter()]
[System.String]
[ValidateSet('None', 'SHA1', 'SHA256', 'SHA384', 'SHA512', 'MACTripleDES', 'MD5', 'RIPEMD160')]
$ChecksumType = 'None',
[Parameter()]
[System.String]
$Checksum
)
# Check whether DestinationPath points to existing file or directory
$fileExists = $false
$uriFileName = Split-Path -Path $Uri -Leaf
$pathItemType = Get-PathItemType -Path $DestinationPath
switch ($pathItemType)
{
'File'
{
Write-Verbose -Message ($script:localizedData.DestinationPathIsExistingFile -f $DestinationPath)
if ($MatchSource)
{
$file = Get-Item -Path $DestinationPath
# Getting cache. It's cleared every time user runs Start-DscConfiguration
$cache = Get-Cache -DestinationPath $DestinationPath -Uri $Uri
if ($null -ne $cache `
-and ($cache.LastWriteTime -eq $file.LastWriteTimeUtc) `
-and ($cache.FileSize -eq $file.Length))
{
Write-Verbose -Message $script:localizedData.CacheReflectsCurrentState
$fileExists = $true
}
else
{
Write-Verbose -Message $script:localizedData.CacheIsEmptyOrNotMatchCurrentState
}
}
else
{
Write-Verbose -Message $script:localizedData.MatchSourceFalse
$fileExists = $true
}
if ($ChecksumType -ine 'None' `
-and -not [String]::IsNullOrEmpty($Checksum) `
-and $fileExists -eq $true)
{
$fileHashSplat = @{
Path = $DestinationPath
Algorithm = $ChecksumType
}
$getFileHash = Get-FileHash @fileHashSplat
$fileHash = $getFileHash.Hash
if ($fileHash -ieq $Checksum)
{
$fileExists = $true
}
else
{
# The checksum does not match. The file may match what is in the cached data. Resetting it to false.
$fileExists = $false
}
}
}
'Directory'
{
Write-Verbose -Message ($script:localizedData.DestinationPathIsExistingPath -f $DestinationPath)
$expectedDestinationPath = Join-Path -Path $DestinationPath -ChildPath $uriFileName
if (Test-Path -Path $expectedDestinationPath)
{
if ($MatchSource)
{
$file = Get-Item -Path $expectedDestinationPath
$cache = Get-Cache -DestinationPath $expectedDestinationPath -Uri $Uri
if ($null -ne $cache -and ($cache.LastWriteTime -eq $file.LastWriteTimeUtc))
{
Write-Verbose -Message $script:localizedData.CacheReflectsCurrentState
$fileExists = $true
}
else
{
Write-Verbose -Message $script:localizedData.CacheIsEmptyOrNotMatchCurrentState
}
}
else
{
Write-Verbose -Message $script:localizedData.MatchSourceFalse
$fileExists = $true
}
if ($ChecksumType -ine 'None' `
-and -not [String]::IsNullOrEmpty($Checksum) `
-and $fileExists -eq $true)
{
$fileHashSplat = @{
Path = $expectedDestinationPath
Algorithm = $ChecksumType
}
$getFileHash = Get-FileHash @fileHashSplat
$fileHash = $getFileHash.Hash
if ($fileHash -ieq $Checksum)
{
$fileExists = $true
}
else
{
# The checksum does not match. The file may match what is in the cached data. Resetting it to false.
$fileExists = $false
}
}
}
}
'Other'
{
Write-Verbose -Message ($script:localizedData.DestinationPathUnknownType -f $DestinationPath, $pathItemType)
}
'NotExists'
{
Write-Verbose -Message ($script:localizedData.DestinationPathDoesNotExist -f $DestinationPath)
}
}
$result = $fileExists
return $result
}
<#
.SYNOPSIS
Checks whether given URI represents specific scheme.
.DESCRIPTION
Most common schemes: file, http, https, ftp
We can also specify logical expressions like: [http|https]
.PARAMETER Uri
The path of the item to test the scheme of.
.PARAMETER Scheme
The type of scheme to test the item is.
#>
function Test-UriScheme
{
[CmdletBinding()]
[OutputType([System.Boolean])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$Uri,
[Parameter(Mandatory = $true)]
[System.String]
$Scheme
)
$newUri = $Uri -as [System.URI]
return ($null -ne $newUri.AbsoluteURI -and $newUri.Scheme -match $Scheme)
}
<#
.SYNOPSIS
Gets type of the item which path points to.
.PARAMETER Path
The path of the item to return the item type of.
.OUTPUTS
File, Directory, Other or NotExists.
#>
function Get-PathItemType
{
[CmdletBinding()]
[OutputType([System.String])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$Path
)
$type = $null
# Check whether path exists
if (Test-Path -Path $path)
{
# Check type of the path
$pathItem = Get-Item -Path $Path
$pathItemType = $pathItem.GetType().Name
if ($pathItemType -eq 'FileInfo')
{
$type = 'File'
}
elseif ($pathItemType -eq 'DirectoryInfo')
{
$type = 'Directory'
}
else
{
$type = 'Other'
}
}
else
{
$type = 'NotExists'
}
return $type
}
<#
.SYNOPSIS
Converts CimInstance array of type KeyValuePair to hashtable
.PARAMETER Array
The array of KeyValuePairs to convert to a hashtable.
#>
function Convert-KeyValuePairArrayToHashtable
{
[CmdletBinding()]
[OutputType([System.Collections.Hashtable])]
param
(
[Parameter(Mandatory = $true)]
[Microsoft.Management.Infrastructure.CimInstance[]]
$Array
)
$hashtable = @{ }
foreach ($item in $Array)
{
$hashtable += @{
$item.Key = $item.Value
}
}
return $hashtable
}
<#
.SYNOPSIS
Gets cache for specific DestinationPath and Uri.
.PARAMETER DestinationPath
The path to the cache.
.PARAMETER Uri
The URI of the file to get the cache content for.
#>
function Get-Cache
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$DestinationPath,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Uri
)
$cacheContent = $null
$key = Get-CacheKey -DestinationPath $DestinationPath -Uri $Uri
$path = Join-Path -Path $script:cacheLocation -ChildPath $key
Write-Verbose -Message ($script:localizedData.CacheLookingForPath -f $Path)
if (-not (Test-Path -Path $path))
{
Write-Verbose -Message ($script:localizedData.CacheNotFoundForPath -f $DestinationPath, $Uri, $Key)
$cacheContent = $null
}
else
{
$cacheContent = Import-Clixml -Path $path
Write-Verbose -Message ($script:localizedData.CacheFoundForPath -f $DestinationPath, $Uri, $Key)
}
return $cacheContent
}
<#
.SYNOPSIS
Creates or updates cache for specific DestinationPath and Uri.
.PARAMETER DestinationPath
The path to the cache.
.PARAMETER Uri
The URI of the file to update the cache for.
.PARAMETER Uri
The content of the file to update in the cache.
#>
function Update-Cache
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$DestinationPath,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Uri,
[Parameter(Mandatory = $true)]
[System.Object]
$InputObject
)
$key = Get-CacheKey -DestinationPath $DestinationPath -Uri $Uri
$path = Join-Path -Path $script:cacheLocation -ChildPath $key
if (-not (Test-Path -Path $script:cacheLocation))
{
$null = New-Item -ItemType Directory -Path $script:cacheLocation
}
Write-Verbose -Message ($script:localizedData.UpdatingCache -f $DestinationPath, $Uri, $Key)
Export-Clixml -Path $path -InputObject $InputObject -Force
}
<#
.SYNOPSIS
Returns cache key for given parameters.
.PARAMETER DestinationPath
The path to the cache.
.PARAMETER Uri
The URI of the file to get the cache key for.
#>
function Get-CacheKey
{
[CmdletBinding()]
[OutputType([System.String])]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$DestinationPath,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Uri
)
return [System.String]::Join('', @($DestinationPath, $Uri)).GetHashCode().ToString()
}
Export-ModuleMember -Function Get-TargetResource, Set-TargetResource, Test-TargetResource