-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathPSScriptFileInfo.cs
More file actions
535 lines (461 loc) · 20.9 KB
/
PSScriptFileInfo.cs
File metadata and controls
535 lines (461 loc) · 20.9 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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Management.Automation;
using System.Linq;
using Microsoft.PowerShell.Commands;
namespace Microsoft.PowerShell.PSResourceGet.UtilClasses
{
/// <summary>
/// This class contains information for a PSScriptFileInfo (representing a .ps1 file contents).
/// </summary>
public sealed class PSScriptFileInfo
{
#region Properties
public PSScriptMetadata ScriptMetadataComment { get; set; }
public PSScriptHelp ScriptHelpComment { get; set; }
public PSScriptRequires ScriptRequiresComment { get; set; }
public PSScriptContents ScriptContent { get; set; }
#endregion
#region Constructor
/// <summary>
/// This constructor takes metadata values that could have been passed in by the calling cmdlet
/// and uses those to create associated script class properties (PSScriptMetadata, PSScriptHelp, PSScriptRequires, PSScriptContents)
/// </summary>
public PSScriptFileInfo(
string version,
Guid guid,
string author,
string companyName,
string copyright,
string[] tags,
Uri licenseUri,
Uri projectUri,
Uri iconUri,
ModuleSpecification[] requiredModules,
string[] externalModuleDependencies,
string[] requiredScripts,
string[] externalScriptDependencies,
string releaseNotes,
string privateData,
string description)
{
PSScriptMetadata scriptMetadataComment = new PSScriptMetadata(
version,
guid,
author,
companyName,
copyright,
tags,
licenseUri,
projectUri,
iconUri,
externalModuleDependencies,
requiredScripts,
externalScriptDependencies,
releaseNotes,
privateData);
PSScriptHelp scriptHelpComment = new PSScriptHelp(description);
PSScriptRequires scriptRequiresComment = new PSScriptRequires(requiredModules);
PSScriptContents scriptRemainingContent = new PSScriptContents(Utils.EmptyStrArray);
ScriptMetadataComment = scriptMetadataComment;
ScriptHelpComment = scriptHelpComment;
ScriptRequiresComment = scriptRequiresComment;
ScriptContent = scriptRemainingContent;
}
/// <summary>
/// This constructor takes script class properties' values that could have been passed in by the calling internal methods.
/// </summary>
public PSScriptFileInfo(
PSScriptMetadata scriptMetadataComment,
PSScriptHelp scriptHelpComment,
PSScriptRequires scriptRequiresComment,
PSScriptContents scriptRemainingContent
)
{
ScriptMetadataComment = scriptMetadataComment;
ScriptHelpComment = scriptHelpComment;
ScriptRequiresComment = scriptRequiresComment;
ScriptContent = scriptRemainingContent;
}
#endregion
#region Internal Static Methods
/// <summary>
/// Parses .ps1 file contents for PSScriptInfo, PSHelpInfo, Requires comments
/// </summary>
internal static bool TryParseScriptFileContents(
string scriptFileInfoPath,
ref List<string> psScriptInfoCommentContent,
ref List<string> helpInfoCommentContent,
ref List<string> requiresCommentContent,
ref string[] remainingFileContent,
out ErrorRecord error)
{
error= null;
psScriptInfoCommentContent = new List<string>();
helpInfoCommentContent = new List<string>();
requiresCommentContent = new List<string>();
remainingFileContent = Utils.EmptyStrArray;
string[] fileContents = File.ReadAllLines(scriptFileInfoPath);
bool reachedPSScriptInfoCommentEnd = false;
bool reachedHelpInfoCommentEnd = false;
int i = 0;
int endOfFileContentsStartIndex = 0;
while (i < fileContents.Length)
{
string line = fileContents[i];
if (line.Trim().StartsWith("<#PSScriptInfo"))
{
int j = i + 1; // start at the next line
// keep grabbing lines until we get to closing #>
while (j < fileContents.Length)
{
string blockLine = fileContents[j];
psScriptInfoCommentContent.Add(blockLine);
if (blockLine.Trim().StartsWith("#>"))
{
reachedPSScriptInfoCommentEnd = true;
i = j + 1;
break;
}
j++;
}
if (!reachedPSScriptInfoCommentEnd)
{
error = new ErrorRecord(
new InvalidOperationException($"Could not parse '{scriptFileInfoPath}' as a PowerShell script file due to missing the closing '#>' for <#PSScriptInfo comment block"),
"MissingEndBracketToPSScriptInfoParseError",
ErrorCategory.ParserError,
null);
return false;
}
}
else if (line.Trim().StartsWith("<#"))
{
// The next comment block must be the help comment block (containing description)
// keep grabbing lines until we get to closing #>
int j = i + 1;
while (j < fileContents.Length)
{
string blockLine = fileContents[j];
if (blockLine.Trim().StartsWith("#>"))
{
reachedHelpInfoCommentEnd = true;
i = j + 1;
endOfFileContentsStartIndex = i;
break;
}
helpInfoCommentContent.Add(blockLine);
j++;
}
if (!reachedHelpInfoCommentEnd)
{
error = new ErrorRecord(
new InvalidOperationException($"Could not parse '{scriptFileInfoPath}' as a PowerShell script file due to missing the closing '#>' for HelpInfo comment block"),
"MissingEndBracketToHelpInfoCommentParseError",
ErrorCategory.ParserError,
null);
return false;
}
}
else if (line.StartsWith("#Requires"))
{
requiresCommentContent.Add(line);
i++;
}
else if (endOfFileContentsStartIndex != 0)
{
break;
}
else
{
// this would be newlines between blocks, or if there was other (unexpected) data between PSScriptInfo, Requires, and HelpInfo blocks
i++;
}
}
if (endOfFileContentsStartIndex != 0 && (endOfFileContentsStartIndex < fileContents.Length))
{
// from this line to fileContents.Length is the endOfFileContents, if any
remainingFileContent = new string[fileContents.Length - endOfFileContentsStartIndex];
Array.Copy(fileContents, endOfFileContentsStartIndex, remainingFileContent, 0, (fileContents.Length - endOfFileContentsStartIndex));
}
if (psScriptInfoCommentContent.Count() == 0)
{
// check for file not containing '<#PSScriptInfo ... #>' comment
error = new ErrorRecord(
new InvalidOperationException($"Could not parse '{scriptFileInfoPath}' as a PowerShell script due to it missing '<#PSScriptInfo #> block"),
"MissingEndBracketToHelpInfoCommentParseError",
ErrorCategory.ParserError,
null);
return false;
}
if (helpInfoCommentContent.Count() == 0)
{
// check for file not containing HelpInfo comment
error = new ErrorRecord(
new InvalidOperationException($"Could not parse '{scriptFileInfoPath}' as a PowerShell script due to it missing HelpInfo comment block"),
"missingHelpInfoCommentError",
ErrorCategory.ParserError,
null);
return false;
}
return true;
}
/// <summary>
/// Populates script info classes (PSScriptMetadata, PSScriptHelp, PSScriptRequires, PSScriptContents) with previously
/// parsed metadata from the ps1 file.
/// </summary>
internal static bool TryPopulateScriptClassesWithParsedContent(
List<string> psScriptInfoCommentContent,
List<string> helpInfoCommentContent,
List<string> requiresCommentContent,
string[] remainingFileContent,
out PSScriptMetadata currentMetadata,
out PSScriptHelp currentHelpInfo,
out PSScriptRequires currentRequiresComment,
out PSScriptContents currentEndOfFileContents,
out ErrorRecord[] errors,
out string[] verboseMsgs)
{
List<ErrorRecord> errorsList = new List<ErrorRecord>();
bool parsedContentSuccessfully = true;
currentMetadata = new PSScriptMetadata();
if (!currentMetadata.ParseContentIntoObj(
commentLines: psScriptInfoCommentContent.ToArray(),
out ErrorRecord[] metadataErrors,
out verboseMsgs))
{
errorsList.AddRange(metadataErrors);
parsedContentSuccessfully = false;
}
currentHelpInfo = new PSScriptHelp();
if (!currentHelpInfo.ParseContentIntoObj(
commentLines: helpInfoCommentContent.ToArray(),
out ErrorRecord helpError))
{
errorsList.Add(helpError);
parsedContentSuccessfully = false;
}
currentRequiresComment = new PSScriptRequires();
if (!currentRequiresComment.ParseContentIntoObj(
commentLines: requiresCommentContent.ToArray(),
out ErrorRecord[] requiresErrors))
{
errorsList.AddRange(requiresErrors);
parsedContentSuccessfully = false;
}
currentEndOfFileContents = new PSScriptContents();
currentEndOfFileContents.ParseContent(commentLines: remainingFileContent);
errors = errorsList.ToArray();
return parsedContentSuccessfully;
}
/// <summary>
/// Tests .ps1 file for validity
/// </summary>
internal static bool TryTestPSScriptFileInfo(
string scriptFileInfoPath,
out PSScriptFileInfo parsedScript,
out ErrorRecord[] errors,
// this is for Uri errors, which aren't required by script but we check if those in the script aren't valid Uri's.
out string[] verboseMsgs)
{
verboseMsgs = Utils.EmptyStrArray;
List<ErrorRecord> errorsList = new List<ErrorRecord>();
parsedScript = null;
List<string> psScriptInfoCommentContent = new List<string>();
List<string> helpInfoCommentContent = new List<string>();
List<string> requiresCommentContent = new List<string>();
string[] remainingFileContent = Utils.EmptyStrArray;
// Parse .ps1 contents out of file into list objects
if (!TryParseScriptFileContents(
scriptFileInfoPath: scriptFileInfoPath,
psScriptInfoCommentContent: ref psScriptInfoCommentContent,
helpInfoCommentContent: ref helpInfoCommentContent,
requiresCommentContent: ref requiresCommentContent,
remainingFileContent: ref remainingFileContent,
out ErrorRecord parseError))
{
errors = new ErrorRecord[]{parseError};
return false;
}
// Populate PSScriptFileInfo object by first creating instances for the property objects
// i.e (PSScriptMetadata, PSScriptHelp, PSScriptRequires, PSScriptContents)
if (!TryPopulateScriptClassesWithParsedContent(
psScriptInfoCommentContent: psScriptInfoCommentContent,
helpInfoCommentContent: helpInfoCommentContent,
requiresCommentContent: requiresCommentContent,
remainingFileContent: remainingFileContent,
currentMetadata: out PSScriptMetadata currentMetadata,
currentHelpInfo: out PSScriptHelp currentHelpInfo,
currentRequiresComment: out PSScriptRequires currentRequiresComment,
currentEndOfFileContents: out PSScriptContents currentEndOfFileContents,
errors: out errors,
out verboseMsgs))
{
return false;
}
// Create PSScriptFileInfo instance with script metadata class instances (PSScriptMetadata, PSScriptHelp, PSScriptRequires, PSScriptContents)
try
{
parsedScript = new PSScriptFileInfo(
scriptMetadataComment: currentMetadata,
scriptHelpComment: currentHelpInfo,
scriptRequiresComment: currentRequiresComment,
scriptRemainingContent: currentEndOfFileContents);
}
catch (Exception e)
{
errors = new ErrorRecord[]{ new ErrorRecord(
new ArgumentException($"PSScriptFileInfo object could not be created from passed in file due to {e.Message}"),
"PSScriptFileInfoObjectNotCreatedFromFileError",
ErrorCategory.ParserError,
null) };
return false;
}
errors = errorsList.ToArray();
return true;
}
/// <summary>
/// Updates .ps1 file.
/// Caller must check that the file to update doesn't have a signature or if it does permission to remove signature has been granted
/// as this method will remove original signature, as updating would have invalidated it.
/// </summary>
internal static bool TryUpdateScriptFileContents(
PSScriptFileInfo scriptInfo,
out string[] updatedPSScriptFileContents,
out ErrorRecord[] errors,
string version,
Guid guid,
string author,
string companyName,
string copyright,
string[] tags,
Uri licenseUri,
Uri projectUri,
Uri iconUri,
ModuleSpecification[] requiredModules,
string[] externalModuleDependencies,
string[] requiredScripts,
string[] externalScriptDependencies,
string releaseNotes,
string privateData,
string description)
{
updatedPSScriptFileContents = Utils.EmptyStrArray;
List<ErrorRecord> errorsList = new List<ErrorRecord>();
bool successfullyUpdated = true;
if (scriptInfo == null)
{
throw new ArgumentNullException(nameof(scriptInfo));
}
if (!scriptInfo.ScriptMetadataComment.UpdateContent(
version: version,
guid: guid,
author: author,
companyName: companyName,
copyright: copyright,
tags: tags,
licenseUri: licenseUri,
projectUri: projectUri,
iconUri: iconUri,
externalModuleDependencies: externalModuleDependencies,
requiredScripts: requiredScripts,
externalScriptDependencies: externalScriptDependencies,
releaseNotes: releaseNotes,
privateData: privateData,
out ErrorRecord metadataUpdateError))
{
errorsList.Add(metadataUpdateError);
successfullyUpdated = false;
}
if (!scriptInfo.ScriptHelpComment.UpdateContent(
description: description,
out ErrorRecord helpUpdateError))
{
errorsList.Add(helpUpdateError);
successfullyUpdated = false;
}
// this doesn't produce errors, as ModuleSpecification creation is already validated before param passed in
// and user can't update endOfFileContents
scriptInfo.ScriptRequiresComment.UpdateContent(requiredModules: requiredModules);
if (!successfullyUpdated)
{
errors = errorsList.ToArray();
return successfullyUpdated;
}
// create string contents for .ps1 file
if (!scriptInfo.TryCreateScriptFileInfoString(
psScriptFileContents: out updatedPSScriptFileContents,
errors: out ErrorRecord[] createUpdatedFileContentErrors))
{
errorsList.AddRange(createUpdatedFileContentErrors);
successfullyUpdated = false;
}
errors = errorsList.ToArray();
return successfullyUpdated;
}
#endregion
#region Internal Methods
/// <summary>
/// Creates .ps1 file content string representation for the PSScriptFileInfo object this called upon, which is used by the caller to write the .ps1 file.
/// </summary>
internal bool TryCreateScriptFileInfoString(
out string[] psScriptFileContents,
out ErrorRecord[] errors
)
{
psScriptFileContents = Utils.EmptyStrArray;
List<string> fileContentsList = new List<string>();
errors = Array.Empty<ErrorRecord>();
List<ErrorRecord> errorsList = new List<ErrorRecord>();
bool fileContentsSuccessfullyCreated = true;
// Step 1: validate object properties for required script properties.
if (!ScriptMetadataComment.ValidateContent(out ErrorRecord[] metadataValidationErrors))
{
errorsList.AddRange(metadataValidationErrors);
fileContentsSuccessfullyCreated = false;
}
if (!ScriptHelpComment.ValidateContent(out ErrorRecord helpValidationError))
{
errorsList.Add(helpValidationError);
fileContentsSuccessfullyCreated = false;
}
if (!fileContentsSuccessfullyCreated)
{
errors = errorsList.ToArray();
return fileContentsSuccessfullyCreated;
}
// Step 2: create string [] that will be used to write to file later
fileContentsList.AddRange(ScriptMetadataComment.EmitContent());
// string psRequiresCommentBlock = ScriptRequiresComment.EmitContent();
fileContentsList.AddRange(ScriptRequiresComment.EmitContent());
fileContentsList.AddRange(ScriptHelpComment.EmitContent());
fileContentsList.AddRange(ScriptContent.EmitContent());
psScriptFileContents = fileContentsList.ToArray();
return fileContentsSuccessfullyCreated;
}
internal Hashtable ToHashtable()
{
Hashtable scriptHashtable = new Hashtable(StringComparer.OrdinalIgnoreCase);
Hashtable metadataObjectHashtable = ScriptMetadataComment.ToHashtable();
foreach(string key in metadataObjectHashtable.Keys)
{
if (!scriptHashtable.ContainsKey(key))
{
// shouldn't have duplicate keys, but just for unexpected error handling
scriptHashtable.Add(key, metadataObjectHashtable[key]);
}
}
scriptHashtable.Add(nameof(ScriptHelpComment.Description), ScriptHelpComment.Description);
if (ScriptRequiresComment.RequiredModules.Length != 0)
{
scriptHashtable.Add(nameof(ScriptRequiresComment.RequiredModules), ScriptRequiresComment.RequiredModules);
}
return scriptHashtable;
}
#endregion
}
}