-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDSC_KeyValuePairFile.psm1
More file actions
577 lines (465 loc) · 16.7 KB
/
DSC_KeyValuePairFile.psm1
File metadata and controls
577 lines (465 loc) · 16.7 KB
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
Set-StrictMode -Version 'Latest'
$modulePath = Join-Path -Path (Split-Path -Path (Split-Path -Path $PSScriptRoot -Parent) -Parent) -ChildPath 'Modules'
# Import the Networking Common Modules
Import-Module -Name (Join-Path -Path $modulePath `
-ChildPath (Join-Path -Path 'FileContentDsc.Common' `
-ChildPath 'FileContentDsc.Common.psm1'))
Import-Module -Name (Join-Path -Path $modulePath -ChildPath 'DscResource.Common')
# Import Localization Strings
$script:localizedData = Get-LocalizedData -DefaultUICulture 'en-US'
<#
.SYNOPSIS
Retrieves the current state of a key in a key value pair text file.
.PARAMETER Path
The path to the key value pair text file.
.PARAMETER Name
The name of the key.
#>
function Get-TargetResource
{
[OutputType([Hashtable])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Path,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Name
)
Assert-ParametersValid @PSBoundParameters
$ensure = 'Absent'
$text = $null
$fileEncoding = $null
if (Test-Path -Path $Path)
{
$fileEncoding = Get-FileEncoding $Path -ErrorAction SilentlyContinue
$fileContent = Get-FileContent -Path $Path -Encoding $fileEncoding
if (-not [string]::IsNullOrEmpty($fileContent))
{
Write-Verbose -Message ($script:localizedData.SearchForKeyMessage -f $Path, $Name)
# Setup the Regex Options that will be used
$regExOptions = [System.Text.RegularExpressions.RegexOptions]::Multiline
# Search the key that matches the requested key
$results = [regex]::Matches($fileContent, "^[\s]*$Name=([^\n\r]*)", $regExOptions)
if ($results.Count -eq 0)
{
# No matches found
Write-Verbose -Message ($script:localizedData.KeyNotFoundMessage -f $Path, $Name)
}
else
{
# One of more key value pairs were found
$ensure = 'Present'
$textValues = @()
foreach ($match in $results)
{
$textValues += $match.Groups[1].Value
}
$text = ($textValues -join ',')
Write-Verbose -Message ($script:localizedData.KeyFoundMessage -f $Path, $Name, $text)
} # if
}
else
{
Write-Verbose -Message ($script:localizedData.KeyValuePairFileIsEmpty -f $Path)
}
}
else
{
Write-Verbose -Message ($script:localizedData.KeyValuePairFileNotFound -f $Path)
}
return @{
Path = $Path
Name = $Name
Encoding = $fileEncoding
Ensure = $ensure
Type = 'Text'
Text = $text
IgnoreNameCase = $false
IgnoreValueCase = $false
}
}
<#
.SYNOPSIS
Sets the current state of a key in a key value pair text file.
.PARAMETER Path
The path to the key value pair text file.
.PARAMETER Name
The name of the key.
.PARAMETER Ensure
Specifies the if the key value pair with the specified key should exist in the file.
.PARAMETER Type
Specifies the value type to use as the replacement string. Defaults to 'Text'.
.PARAMETER Text
The text to replace the value with in the identified key.
Only used when Type is set to 'Text'.
.PARAMETER Secret
The secret text to replace the value with in the identified key.
Only used when Type is set to 'Secret'.
.PARAMETER IgnoreNameCase
Ignore the case of the name of the key. Defaults to $False.
.PARAMETER IgnoreValueCase
Ignore the case of any text or secret when determining if it they need to be updated.
Defaults to $False.
.PARAMETER Encoding
Specifies the file encoding. Defaults to ASCII.
#>
function Set-TargetResource
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Path,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Name,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[ValidateSet('Text', 'Secret')]
[System.String]
$Type = 'Text',
[Parameter()]
[System.String]
$Text,
[Parameter()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$Secret,
[Parameter()]
[System.Boolean]
$IgnoreNameCase = $false,
[Parameter()]
[System.Boolean]
$IgnoreValueCase = $false,
[Parameter()]
[ValidateSet('ASCII', 'BigEndianUnicode', 'BigEndianUTF32', 'UTF8', 'UTF8BOM', 'UTF8NoBOM', 'UTF32')]
[System.String]
$Encoding
)
Assert-ParametersValid @PSBoundParameters
$fileEncoding = Get-FileEncoding $Path -ErrorAction SilentlyContinue
$fileContent = Get-FileContent -Path $Path -Encoding $fileEncoding -ErrorAction SilentlyContinue
$fileProperties = @{
Path = $Path
NoNewline = $true
Force = $true
}
Write-Verbose -Message ($script:localizedData.SearchForKeyMessage -f $Path, $Name)
if ($Type -eq 'Secret')
{
$Text = $Secret.GetNetworkCredential().Password
} # if
if ($null -ne $fileContent)
{
# Determine the EOL characters used in the file
$eolChars = Get-TextEolCharacter -Text $fileContent
# Setup the Regex Options that will be used
$regExOptions = [System.Text.RegularExpressions.RegexOptions]::Multiline
if ($IgnoreNameCase)
{
$regExOptions += [System.Text.RegularExpressions.RegexOptions]::IgnoreCase
}
# Search the key that matches the requested key
$results = [regex]::Matches($fileContent, "^[\s]*$Name=([^\n\r]*)", $regExOptions)
if ($Ensure -eq 'Present')
{
# The key value pair should exist
$keyValuePair = '{0}={1}{2}' -f $Name, $Text, $eolChars
if ($results.Count -eq 0)
{
# The key value pair was not found so add it to the end of the file
if (-not $fileContent.EndsWith($eolChars))
{
$fileContent += $eolChars
} # if
$fileContent += $keyValuePair
Write-Verbose -Message ($script:localizedData.KeyAddMessage -f $Path, $Name)
}
else
{
# The key value pair was found so update it
$fileContent = [regex]::Replace($fileContent, "^[\s]*$Name=(.*)($eolChars*)", $keyValuePair, $regExOptions)
Write-Verbose -Message ($script:localizedData.KeyUpdateMessage -f $Path, $Name)
} # if
}
else
{
if ($results.Count -eq 0)
{
if ($PSBoundParameters.ContainsKey('Encoding') -and `
(Test-FileEncodingEqual -FileEncoding $fileEncoding -ExpectedEncoding $Encoding)
)
{
# The Key does not exists and should not, and encoding is in the desired state, so don't do anything
return
}
else
{
Write-Verbose -Message ($script:localizedData.FileEncodingNotInDesiredState -f $fileEncoding, $Encoding)
}
}
else
{
# The Key exists in the file but should not so remove it
$fileContent = [regex]::Replace($fileContent, "^[\s]*$Name=(.*)$eolChars", '', $regExOptions)
Write-Verbose -Message ($script:localizedData.KeyRemoveMessage -f $Path, $Name)
}
} # if
}
else
{
$fileContent = '{0}={1}' -f $Name, $Text
} # if
$fileProperties.Add('Value', $fileContent)
# Verify encoding is not set to the passed parameter or the default of ASCII
if ($PSBoundParameters.ContainsKey('Encoding') -and ($Encoding -ne ($fileEncoding -or 'ASCII')))
{
# Add encoding parameter and value to the hashtable
$fileProperties.Add('Encoding', $Encoding)
}
Set-TextContent @fileProperties
}
<#
.SYNOPSIS
Tests the current state of a key in a key value pair text file.
.PARAMETER Path
The path to the key value pair text file.
.PARAMETER Name
The name of the key.
.PARAMETER Ensure
Specifies the if the key value pair with the specified key should exist in the file.
.PARAMETER Type
Specifies the value type to use as the replacement string. Defaults to 'Text'.
.PARAMETER Text
The text to replace the value with in the identified key.
Only used when Type is set to 'Text'.
.PARAMETER Secret
The secret text to replace the value with in the identified key.
Only used when Type is set to 'Secret'.
.PARAMETER IgnoreNameCase
Ignore the case of the name of the key. Defaults to $False.
.PARAMETER IgnoreValueCase
Ignore the case of any text or secret when determining if it they need to be updated.
Defaults to $False.
.PARAMETER Encoding
Specifies the file encoding. Defaults to ASCII.
#>
function Test-TargetResource
{
[OutputType([System.Boolean])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Path,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Name,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[ValidateSet('Text', 'Secret')]
[System.String]
$Type = 'Text',
[Parameter()]
[System.String]
$Text,
[Parameter()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$Secret,
[Parameter()]
[System.Boolean]
$IgnoreNameCase = $false,
[Parameter()]
[System.Boolean]
$IgnoreValueCase = $false,
[Parameter()]
[ValidateSet('ASCII', 'BigEndianUnicode', 'BigEndianUTF32', 'UTF8', 'UTF8BOM', 'UTF8NoBOM', 'UTF32')]
[System.String]
$Encoding
)
Assert-ParametersValid @PSBoundParameters
<#
If the file being managed does not exist then return true if
the key should be absent or false if it should be present.
#>
if (-not (Test-Path -Path $Path))
{
Write-Verbose -Message ($script:localizedData.KeyValuePairFileNotFound -f $Path)
return ($Ensure -eq 'Absent')
}
$fileEncoding = Get-FileEncoding $Path -ErrorAction SilentlyContinue
$fileContent = Get-FileContent -Path $Path -Encoding $fileEncoding
if ([string]::IsNullOrEmpty($fileContent))
{
Write-Verbose -Message ($script:localizedData.KeyValuePairFileIsEmpty -f $Path)
return ($Ensure -eq 'Absent')
}
$desiredConfigurationMatch = $true
$regExOptions = [System.Text.RegularExpressions.RegexOptions]::Multiline
Write-Verbose -Message ($script:localizedData.SearchForKeyMessage -f $Path, $Name)
if ($IgnoreNameCase)
{
$regExOptions += [System.Text.RegularExpressions.RegexOptions]::IgnoreCase
}
# Search the key that matches the requested key
$results = [regex]::Matches($fileContent, "^[\s]*$Name=([^\n\r]*)", $regExOptions)
if ($results.Count -eq 0)
{
# No matches found
if ($Ensure -eq 'Present')
{
# The key value pairs should exist but do not
Write-Verbose -Message ($script:localizedData.KeyNotFoundButShouldExistMessage -f $Path, $Name)
$desiredConfigurationMatch = $false
}
else
{
# The key value pairs should exist and do
Write-Verbose -Message ($script:localizedData.KeyNotFoundAndShouldNotExistMessage -f $Path, $Name)
} # if
}
else
{
# One or more key value pairs were found
if ($Ensure -eq 'Present')
{
# The key value pairs should exist - but check values
if ($Type -eq 'Secret')
{
$Text = $Secret.GetNetworkCredential().Password
} # if
# Check each found key value pair and check it has the correct value
foreach ($match in $results)
{
if (($IgnoreValueCase -and ($match.Groups[1].Value -ne $Text)) -or `
(-not $IgnoreValueCase -and ($match.Groups[1].Value -cne $Text)))
{
$desiredConfigurationMatch = $false
} #
} # foreach
if ($desiredConfigurationMatch)
{
Write-Verbose -Message ($script:localizedData.KeyFoundButNoReplacementMessage -f $Path, $Name)
}
}
else
{
# The key value pairs should not exist
Write-Verbose -Message ($script:localizedData.KeyFoundButShouldNotExistMessage -f $Path, $Name)
$desiredConfigurationMatch = $false
} # if
} # if
if ($PSBoundParameters.ContainsKey('Encoding') -and ($Encoding -ne $fileEncoding))
{
if ($Encoding -eq 'UTF8' -and $fileEncoding -like 'UTF8*')
{
#If the Encoding specified as UTF8, Either UTF8NoBOM or UTF8BOM is acceptable
$desiredConfigurationMatch = $true
}
elseif ($Encoding -eq 'UTF8NoBOM' -and $fileEncoding -eq 'ASCII')
{
#If the Encoding specified as UTF8NoBOM, Either UTF8NoBOM or ASCII is acceptable
$desiredConfigurationMatch = $true
}
else
{
# File encoding is not in desired state
Write-Verbose -Message ($script:localizedData.FileEncodingNotInDesiredState -f $fileEncoding, $Encoding)
$desiredConfigurationMatch = $false
}
}
return $desiredConfigurationMatch
}
<#
.SYNOPSIS
Validates the parameters that have been passed are valid.
If they are not valid then an exception will be thrown.
.PARAMETER Path
The path to the key value pair text file.
.PARAMETER Name
The name of the key.
.PARAMETER Ensure
Specifies the if the key value pair with the specified key should exist in the file.
.PARAMETER Type
Specifies the value type to use as the replacement string. Defaults to 'Text'.
.PARAMETER Text
The text to replace the value with in the identified key.
Only used when Type is set to 'Text'.
.PARAMETER Secret
The secret text to replace the value with in the identified key.
Only used when Type is set to 'Secret'.
.PARAMETER IgnoreNameCase
Ignore the case of the name of the key. Defaults to $False.
.PARAMETER IgnoreValueCase
Ignore the case of any text or secret when determining if it they need to be updated.
Defaults to $False.
.PARAMETER Encoding
Specifies the file encoding. Defaults to ASCII.
#>
function Assert-ParametersValid
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Path,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$Name,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[ValidateSet('Text', 'Secret')]
[System.String]
$Type = 'Text',
[Parameter()]
[System.String]
$Text,
[Parameter()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$Secret,
[Parameter()]
[System.Boolean]
$IgnoreNameCase = $false,
[Parameter()]
[System.Boolean]
$IgnoreValueCase = $false,
[Parameter()]
[ValidateSet('ASCII', 'BigEndianUnicode', 'BigEndianUTF32', 'UTF8', 'UTF8BOM', 'UTF8NoBOM', 'UTF32')]
[System.String]
$Encoding
)
# Does the file's parent path exist?
$parentPath = Split-Path -Path $Path -Parent
if (-not (Test-Path -Path $parentPath))
{
New-InvalidArgumentException `
-Message ($script:localizedData.FileParentNotFoundError -f $Path) `
-ArgumentName 'Path'
} # if
}
Export-ModuleMember -Function *-TargetResource