-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathget-commands.ps1
55 lines (38 loc) · 1.4 KB
/
get-commands.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
$json = @();
# get all files in the srcfiles folder
$files = Get-ChildItem -Path ".\pnppsdocs" -Filter "*.md" -Recurse;
# set id to 1
$id = 1;
# loop through each file
$files | ForEach-Object {
# get file name without extension
$baseName = $_.BaseName;
# get the file data
$fileData = Get-Content $_.FullName -Raw;
# create a regex pattern to match the example code
$pattern = "(?s)(?<=### EXAMPLE .*``````powershell)(.*?)(?=``````)"
if($baseName.ToLower() -eq "connect-pnponline") {
$pattern = "(?s)(?<=### EXAMPLE .*``````)(.*?)(?=``````)";
}
$options = [Text.RegularExpressions.RegexOptions]'IgnoreCase, CultureInvariant'
$result = [regex]::Matches($fileData, $pattern, $options);
$i = 1;
foreach ($item in $result) {
$value = $item.Value.Trim();
# replace \n with a semicolon
$value = $value.Replace("`n", " ; ");
# if the item value begins with the name of the file then add it to the json
if ($value.ToLower() -match "^$($baseName.ToLower()).*") {
$json += @{
"CommandName" = $baseName
"Command" = $value
"Rank" = $i
"Id" = $id
}
$i++;
$id++;
}
}
}
# write the json to a file
$json | ConvertTo-Json -Depth 10 | Out-File -FilePath ".\PnP.PowerShell.Suggestions.json" -Encoding UTF8 -Force;