-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbicep-readme.ps1
131 lines (123 loc) · 4.26 KB
/
bicep-readme.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
#requires -Modules @{ModuleName='PSDocs';ModuleVersion='0.9.0'}, @{ModuleName='PSDocs.Azure';ModuleVersion='0.3.0'}
# Make sure the below modules are installed:
# Install-Module PSDocs
# Install-Module PSDocs.Azure
# If you have done that before, proceed onto the next steps:
# Create a new metadata.json in the relevant modules folder and fill out some details
# Then to generate ReadMe run the below command example BEFORE PR
# .scripts\bicep-readme.ps1 -templatePath file.bicep -Verbose
<#
===============================================
AUTHOR: Tao Yang
DATE: 02/02/2023
NAME: generateBicepReadme.ps1
VERSION: 1.0.0
COMMENT: Generate Readme.md for Bicep template
===============================================
#>
[CmdletBinding()]
Param
(
[Parameter(Mandatory = $true, HelpMessage = "Template Path.")]
[ValidateScript({ test-path $_ -PathType leaf })][String]$templatePath
)
#region functions
Function ValidateMetadata {
[CmdletBinding()]
[outputType([boolean])]
Param
(
[Parameter(Mandatory = $true)][String]$metadataPath
)
$bValidMetadata = $true
$requiredAttributes = 'itemDisplayName', 'description', 'summary'
If (Test-Path $metadataPath) {
try {
$metadata = Get-Content $metadataPath -Raw | convertFrom-Json
Foreach ($attribute in $requiredAttributes) {
if (!$($metadata.$attribute) -or $($($metadata.$attribute).length) -eq 0) {
Write-Error "Metadata is missing attribute: $attribute or $attribute is empty"
$bValidMetadata = $false
break
}
}
} catch {
$bValidMetadata = $false
}
} else {
$bValidMetadata = $false
}
$bValidMetadata
}
Function BicepBuild {
[CmdletBinding()]
Param
(
[Parameter(Mandatory = $true)][String]$bicepPath
)
$bicepDir = (Get-Item -Path $bicepPath).DirectoryName;
$bicepFileBaseName = (Get-Item -Path $bicepPath).BaseName
$outputFile = Join-Path $bicepDir "$bicepFileBaseName`.json"
Write-Verbose "Building ARM template $outputFile from Bicep file $bicepPath"
az bicep Build --file $bicepPath --outfile $outputFile
$outputFile
}
#endregion
#region main
$docName = "README"
$currentDir = $PWD
Write-Output "Current working directory '$currentDir'"
$templateDir = (Get-Item -Path $templatePath).DirectoryName;
Write-Verbose "Template Directory '$templateDir'"
set-location $templateDir
Write-Verbose "Detecting git root directory"
$gitRootDir = invoke-expression 'git rev-parse --show-toplevel' -ErrorAction SilentlyContinue
if ($gitRootDir.length -gt 0) {
Write-Verbose "Git root directory '$gitRootDir'"
} else {
Write-Verbose "Not a git repository"
}
set-location $currentDir
Import-Module PSDocs.Azure;
$metadataPath = Join-Path $templateDir 'metadata.json';
Write-Verbose "metadata.json file path: '$metadataPath'"
#Validate metadata'
$ValidMetaData = ValidateMetadata -metadataPath $metadataPath
#Convert Bicep to ARM template if input file is bicep
$removeARM = $false
if ((get-item $templatePath).Extension -ieq '.bicep') {
Write-Verbose "Comping bicep file $templatePath to ARM template"
$tempPath = BicepBuild -bicepPath $templatePath
$removeARM = $true
} else {
$tempPath = $templatePath
}
Write-Verbose "Generating Document for $tempPath"
if ($ValidMetaData) {
Get-AzDocTemplateFile -Path $tempPath | ForEach-Object {
# Generate a standard name of the markdown file. i.e. <name>_<version>.md
$template = Get-Item -Path $_.TemplateFile;
# Generate markdown
Invoke-PSDocument -Module PSDocs.Azure -OutputPath $templateDir -InputObject $template.FullName -InstanceName $docName -Culture en-GB
}
} else {
Throw "Invalid metadata in $metadataPath"
Exit -1
}
$outputFilePath = join-path $templateDir "$docName`.md"
If (Test-Path $outputFilePath) {
if ($gitRootDir.length -gt 0) {
# replace the git root dir with a relative path in generated markdown file
Write-Verbose "replacing git root dir '$gitRootDir' with '.' in generated markdown file '$outputFilePath'"
(Get-Content $outputFilePath -Raw) -replace $gitRootDir, '.' | Set-Content $outputFilePath
}
Write-Output "Generated document '$outputFilePath'"
} else {
Write-Error "'$outputFilePath' not found"
}
#Remove temp ARM template if required
if ($removeARM) {
Write-Verbose "Remove temp ARM template $tempPath"
Remove-Item -Path $tempPath -Force
}
#endregion