forked from stride3d/stride-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BuildDocs.ps1
551 lines (430 loc) · 19.5 KB
/
BuildDocs.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
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
<#
.SYNOPSIS
This script builds documentation (manuals, tutorials, release notes) in selected language(s) from the languages.json file and optionally includes API documentation.
.DESCRIPTION
The script allows the user to build documentation in English or any other available language specified in the languages.json file. It provides options to build documentation in all available languages, run a local website for the documentation, or cancel the operation. If the user chooses to build the documentation, the script also prompts whether API documentation should be included.
.NOTES
The documentation files are expected to be in Markdown format (.md). The script uses the DocFX tool to build the documentation and optionally includes API documentation. The script generates the API documentation from C# source files using DocFX metadata and can run a local website using the DocFX serve command. This script can also be run from GitHub Actions.
.LINK
https://github.com/stride3d/stride-docs
.LINK
https://github.com/stride3d/stride-docs/blob/master/en/languages.json
.LINK
https://dotnet.github.io/docfx/index.html
.PARAMETER BuildAll
Switch parameter. If provided, the script will build documentation in all available languages and include API documentation.
.PARAMETER Version
The Version to build the Docs, the default is the latest version
.PARAMETER SkipPdfBuilding
Switch parameter. If provided, It skips Pdf generation step.
.EXAMPLE
.\BuildDocs.ps1 -BuildAll
In this example, the script will build the documentation in all available languages and include API documentation. Use this in GitHub Actions.
.EXAMPLE
.\BuildDocs.ps1
In this example, the script will prompt the user to select an operation and an optional language. If the user chooses to build the documentation, the script will also ask if they want to include API documentation.
.EXAMPLE
.\BuildDocs.ps1 -SkipPdfBuilding
#>
param (
[switch]$BuildAll,
[ArgumentCompleter({
[OutputType([System.Management.Automation.CompletionResult])]
param([string] $CommandName,[string] $ParameterName,[string] $WordToComplete,[System.Management.Automation.Language.CommandAst] $CommandAst,[System.Collections.IDictionary] $FakeBoundParameters)
return (Get-Content $PSScriptRoot\versions.json -Encoding UTF8 | ConvertFrom-Json).versions
})]
[switch]$SkipPdfBuilding,
$Version = $((Get-Content $PSScriptRoot\versions.json -Encoding UTF8 | ConvertFrom-Json).versions | Sort-Object -Descending | Select-Object -First 1)
)
$Settings = [PSCustomObject]@{
Version = $Version
SiteDirectory = "_site/$Version"
LocalTestHostUrl = "http://localhost:8080/$Version/en/index.html"
LanguageJsonPath = "en\languages.json"
LogPath = ".\build.log"
TempDirectory = "_tmp"
WebDirectory = "_site"
IndexFileName = "index.md"
ManualFolderName = "manual"
DocsUrl = "https://doc.stride3d.net"
}
# To Do fix, GitHub references, fix sitemap links to latest/en/
function Read-LanguageConfigurations {
return Get-Content $Settings.LanguageJsonPath -Encoding UTF8 | ConvertFrom-Json
}
function Get-UserInput {
Write-Host ""
Write-Host -ForegroundColor Cyan "Please select an option:"
Write-Host ""
Write-Host -ForegroundColor Yellow " [en] Build English documentation"
foreach ($lang in $languages) {
if ($lang.Enabled -and -not $lang.IsPrimary) {
Write-Host -ForegroundColor Yellow " [$($lang.Code)] Build $($lang.Name) documentation"
}
}
Write-Host -ForegroundColor Yellow " [all] Build documentation in all available languages"
Write-Host -ForegroundColor Yellow " [r] Run local website"
Write-Host -ForegroundColor Yellow " [c] Cancel"
Write-Host ""
$validOptions = @('all', 'r', 'c') + $($languages | Select-Object -ExpandProperty Code)
while($true)
{
$userChoice = Read-Host -Prompt "Your choice"
if($validOptions -contains $userChoice)
{
return $userChoice.ToLower()
}
}
Write-Error "No valid Choice was given."
}
function Ask-IncludeAPI {
Write-Host ""
Write-Host -ForegroundColor Cyan "Do you want to include API?"
Write-Host ""
Write-Host -ForegroundColor Yellow " [Y] Yes or ENTER"
Write-Host -ForegroundColor Yellow " [N] No"
Write-Host ""
$answer = Read-Host -Prompt "Your choice [Y, N, or ENTER (default is Y)]"
return ($answer -ieq "y" -or $answer -eq "")
}
function Ask-UseExistingAPI {
Write-Host ""
Write-Host -ForegroundColor Cyan "Do you want to use already generated API metadata?"
Write-Host ""
Write-Host -ForegroundColor Yellow " [Y] Yes or ENTER"
Write-Host -ForegroundColor Yellow " [N] No"
Write-Host ""
$answer = Read-Host -Prompt "Your choice [Y, N, or ENTER (default is Y)]"
return ($answer -ieq "y" -or $answer -eq "")
}
function Copy-ExtraItems {
Write-Host -ForegroundColor Yellow "Copying versions.json into $($Settings.WebDirectory)/"
Write-Host ""
Copy-Item versions.json "$($Settings.WebDirectory)/"
Write-Host -ForegroundColor Yellow "Copying web.config into $($Settings.WebDirectory)/"
Write-Host ""
Copy-Item web.config "$($Settings.WebDirectory)/"
Write-Host -ForegroundColor Yellow "Updating web.config"
Write-Host ""
$webConfig = "$($Settings.WebDirectory)/web.config"
$content = Get-Content $webConfig -Encoding UTF8
$content = $content -replace "%deployment_version%", $Settings.Version
$content | Set-Content -Encoding UTF8 $webConfig
Write-Host -ForegroundColor Green "Updating web.config completed."
Write-Host ""
# This is needed for Stride Launcher, which loads Release Notes
Write-Host -ForegroundColor Yellow "Copying ReleaseNotes.md into $($Settings.SiteDirectory)/en/ReleaseNotes/"
Write-Host ""
Copy-Item en/ReleaseNotes/ReleaseNotes.md "$($Settings.SiteDirectory)/en/ReleaseNotes/"
Write-Host -ForegroundColor Yellow "Copying robots.txt into $($Settings.WebDirectory)/"
Write-Host ""
Copy-Item robots.txt "$($Settings.WebDirectory)/"
}
function Start-LocalWebsite {
Write-Host -ForegroundColor Green "Running local website..."
Write-Host -ForegroundColor Green "Navigate manually to non English website, if you didn't build English documentation."
Stop-Transcript
New-Item -ItemType Directory -Verbose -Force -Path $Settings.WebDirectory | Out-Null
Set-Location $Settings.WebDirectory
Start-Process -FilePath $Settings.LocalTestHostUrl
docfx serve
Set-Location ..
}
function Generate-APIDoc {
Write-Host -ForegroundColor Green "Generating API documentation..."
Write-Host ""
# Build metadata from C# source, docfx runs dotnet restore
docfx metadata en/docfx.json | Write-Host
return $LastExitCode
}
function Remove-APIDoc {
Write-Host ""
Write-Host -ForegroundColor Green "Erasing API documentation..."
$APIDocPath = "en/api/.manifest"
if (Test-Path $APIDocPath) {
Remove-Item en/api/*yml -recurse -Verbose
Remove-Item $APIDocPath -Verbose
} else{
Write-Warning "Could not delete APIDoc. The Path $APIDocPath does not exist or is not valid."
}
}
function Build-EnglishDoc {
$outputDirectory = "$($Settings.SiteDirectory)/en"
Write-Host -ForegroundColor Yellow "Start building English documentation. Output: $($outputDirectory)"
Write-Host ""
# Output to both build.log and console
docfx build en/docfx.json -o $outputDirectory | Write-Host
Build-EnglishPdf -SkipBuilding $SkipPdfBuilding
return $LastExitCode
}
function Build-EnglishPdf
{
param (
$SkipBuilding
)
if(!$SkipBuilding)
{
# Build pdf files
docfx pdf en/docfx.json -o $outputDirectory | Write-Host
}
}
function Build-NonEnglishDoc {
param (
$SelectedLanguage
)
if ($SelectedLanguage -and $SelectedLanguage.Code -ne 'en') {
Write-Host "-------------------------------------------------------------------------------"
Write-Host ""
Write-Host -ForegroundColor Yellow "Start building $($SelectedLanguage.Name) documentation."
Write-Host ""
$langFolder = "$($SelectedLanguage.Code)$($Settings.TempDirectory)"
if (Test-Path $langFolder) {
Remove-Item $langFolder/* -recurse -Verbose
}
else {
$discard = New-Item -Path $langFolder -ItemType Directory -Verbose
}
# Copy all files from en folder to the selected language folder, this way we can keep en files that are not translated
Copy-Item en/* -Recurse $langFolder -Force
# Get all previously copied en files from the selected language folder
$files = Get-ChildItem "$langFolder/$($Settings.ManualFolderName)/*.md" -Recurse -Force
Write-Host "Start write files:"
# Mark files as not translated if they are not a toc.md file
foreach ($file in $files)
{
if($file.ToString().Contains("toc.md")) {
continue;
}
$data = Get-Content $file -Encoding UTF8
for ($i = 0; $i -lt $data.Length; $i++)
{
$line = $data[$i];
if ($line.length -le 0)
{
Write-Host $file
$data[$i]="> [!WARNING]`r`n> " + $SelectedLanguage.NotTranslatedMessage + "`r`n"
$data | Out-File -Encoding UTF8 $file
break
}
}
}
Write-Host "End write files"
$indexFile = $Settings.IndexFileName
# overwrite en manual page with translated manual page
if (Test-Path ($SelectedLanguage.Code + "/" + $indexFile)) {
Copy-Item ($SelectedLanguage.Code + "/" + $indexFile) $langFolder -Force
}
else {
Write-Warning "$($SelectedLanguage.Code)/"+ $indexFile +" not found. English version will be used."
}
# overwrite en manual pages with translated manual pages
if (Test-Path ($SelectedLanguage.Code + "/" + $Settings.ManualFolderName)) {
Copy-Item ($SelectedLanguage.Code + "/" + $Settings.ManualFolderName) -Recurse -Destination $langFolder -Force
}
else {
Write-Warning "$($SelectedLanguage.Code)/$($Settings.ManualFolderName) not found."
}
# we copy the docfx.json file from en folder to the selected language folder, so we can keep the same settings and maitain just one docfx.json file
Copy-Item en/docfx.json $langFolder -Force
$SiteDir = $Settings.SiteDirectory
# we replace the en folder with the selected language folder in the docfx.json file
(Get-Content $langFolder/docfx.json) -replace "$SiteDir/en","$SiteDir/$($SelectedLanguage.Code)" | Set-Content -Encoding UTF8 $langFolder/docfx.json
$outputDirectory = "$($Settings.SiteDirectory)/$($SelectedLanguage.Code)"
docfx build $langFolder/docfx.json -o $outputDirectory | Write-Host
if (!$BuildAll) {
Remove-Item $langFolder -Recurse -Verbose
}
PostProcessing-DocFxDocUrl -SelectedLanguage $SelectedLanguage
Write-Host -ForegroundColor Green "$($SelectedLanguage.Name) documentation built."
return $LastExitCode
}
}
function Build-AllLanguagesDocs {
param (
[array]$Languages
)
foreach ($lang in $Languages) {
if ($lang.Enabled -and -not $lang.IsPrimary) {
Build-NonEnglishDoc -SelectedLanguage $lang
if ($exitCode -ne 0)
{
Write-Error "Failed to build $($SelectedLanguage.Name) documentation. ExitCode: $exitCode"
Stop-Transcript
return $exitCode
}
}
}
}
function PostProcessing-DocFxDocUrl {
<#
.SYNOPSIS
DocFX generates GitHub link based on the temp _tmp folder, which we need to fix to correct GitHub links. This function performs the needed adjustments.
.DESCRIPTION
This function takes a selected language as input and iterates through the relevant HTML and markdown files. It corrects the meta tag "docfx:docurl" and anchor tags to reflect the correct GitHub URL by replacing the temporary folder path.
.PARAMETER SelectedLanguage
The Language to find the relevant HTML and markdown Files
.NOTES
1. This function assumes that the folder structure and naming conventions meet the specified conditions.
2. Progress is displayed interactively, and is suppressed in non-interactive sessions such as CI/CD pipelines.
#>
param (
$SelectedLanguage
)
$translatedFiles = Get-ChildItem "$($SelectedLanguage.Code)/*.md" -Recurse -Force
# Get a list of all HTML files in the _site/<language> directory
$htmlFiles = Get-ChildItem "$($Settings.SiteDirectory)/$($SelectedLanguage.Code)/*.html" -Recurse
# Get the relative paths of the translated files
$relativeTranslatedFilesPaths = $translatedFiles | ForEach-Object { $_.FullName.Replace((Resolve-Path $SelectedLanguage.Code).Path + '\', '') }
Write-Host -ForegroundColor Yellow "Post-processing docfx:docurl in $($htmlFiles.Count) files..."
for ($i = 0; $i -lt $htmlFiles.Count; $i++) {
$htmlFile = $htmlFiles[$i]
# Get the relative path of the HTML file
$relativeHtmlPath = $htmlFile.FullName.Replace((Resolve-Path "$($Settings.SiteDirectory)/$($SelectedLanguage.Code)").Path + '\', '').Replace('.html', '.md')
# Read the content of the HTML file
$content = Get-Content $htmlFile -Encoding UTF8
# Define a regex pattern to match the meta tag with name="docfx:docurl"
$pattern = '(<meta name="docfx:docurl" content=".*?)(/' + $SelectedLanguage.Code + $Settings.TempDirectory+ '/)(.*?">)'
# Define a regex pattern to match the href attribute in the <a> tags
$pattern2 = '(<a href=".*?)(/' + $SelectedLanguage.Code + $Settings.TempDirectory + '/)(.*?">)'
# Check if the HTML file is from the $translatedFiles collection, if so, we will update the path to the
# existing file in GitHub
if ($relativeTranslatedFilesPaths -contains $relativeHtmlPath) {
# Replace /<language>_tmp/ with /<language>/ in the content
$content = $content -replace $pattern, "`${1}/$($SelectedLanguage.Code)/`${3}"
$content = $content -replace $pattern2, "`${1}/$($SelectedLanguage.Code)/`${3}"
} else {
# Replace /<language>_tmp/ with /en/ in the content
$content = $content -replace $pattern, '${1}/en/${3}'
$content = $content -replace $pattern2, '${1}/en/${3}'
}
# Write the updated content back to the HTML file
$content | Set-Content -Encoding UTF8 $htmlFile
# Check if the script is running in an interactive session before writing progress
# We don't want to write progress when running in a non-interactive session, such as in a build pipeline
if ($host.UI.RawUI) {
Write-Progress -Activity "Processing files" -Status "$i of $($htmlFiles.Count) processed" -PercentComplete (($i / $htmlFiles.Count) * 100)
}
}
Write-Host ""
Write-Host -ForegroundColor Green "Post-processing completed."
Write-Host ""
}
# we need to update all urls to /latest/en
function PostProcessing-FixingSitemap {
Write-Host -ForegroundColor Yellow "Post-processing sitemap.xml, adding latest/en to url"
Write-Host ""
$sitemapFile = "$($Settings.SiteDirectory)/en/sitemap.xml"
# Read the content of the sitemap.xml file with UTF8 encoding
$content = Get-Content $sitemapFile -Encoding UTF8
# Replace DocsUrl with DocsUrl + latest/en
$content = $content -replace $Settings.DocsUrl, "$($Settings.DocsUrl)/latest/en"
# Write the updated content back to the sitemap.xml file with UTF8 encoding
$content | Set-Content -Encoding UTF8 $sitemapFile
Write-Host -ForegroundColor Green "Post-processing sitemap.xml completed."
Write-Host ""
}
function PostProcessing-Fixing404AbsolutePath {
Write-Host -ForegroundColor Yellow "Post-processing 404.html, adding version/en to url"
Write-Host ""
$file404 = "$($Settings.SiteDirectory)/en/404.html"
$content = Get-Content $file404 -Encoding UTF8
$keysToReplace = @("favicon.ico", "public/docfx.min.css", "public/main.css", "toc.html", "media/stride-logo-red.svg")
foreach ($key in $keysToReplace) {
$replacement = "/$($Settings.Version)/en/$key"
$content = $content -replace $key, $replacement
}
$content = $content -replace "./public/main.js", "/$($Settings.Version)/en/public/main.js"
$content = $content -replace "./public/docfx.min.js", "/$($Settings.Version)/en/public/docfx.min.js"
$content = $content -replace '<a class="navbar-brand" href="index.html">', '<a class="navbar-brand" href="/">'
$content | Set-Content -Encoding UTF8 $file404
Write-Host -ForegroundColor Green "Post-processing 404.html completed."
Write-Host ""
}
# Main script execution starts here
$languages = Read-LanguageConfigurations
Start-Transcript -Path $Settings.LogPath
[bool]$isAllLanguages = $false
if ($BuildAll)
{
$isAllLanguages = $true
$API = $true
$ReuseAPI = $false
}
else {
$userInput = Get-UserInput
[bool]$isEnLanguage = $userInput -ieq "en"
[bool]$shouldRunLocalWebsite = $userInput -ieq "r"
[bool]$isCanceled = $userInput -ieq "c"
$isAllLanguages = $userInput -ieq "all"
# Check if user input matches any non-English language build
$selectedLanguage = $languages | Where-Object { $_.Code -eq $userInput -and $_.Enabled -and -not $_.IsPrimary }
if ($selectedLanguage)
{
[bool]$shouldBuildSelectedLanguage = $true
}
# Ask if the user wants to include API
if ($isEnLanguage -or $isAllLanguages -or $shouldBuildSelectedLanguage)
{
$API = Ask-IncludeAPI
if ($API)
{
# Check for .yml files
$ymlFiles = Get-ChildItem -Path "en/api/" -Filter "*.yml"
if ($ymlFiles.Count -gt 0)
{
$ReuseAPI = Ask-UseExistingAPI
}
}
} elseif ($isCanceled) {
Write-Host -ForegroundColor Red "Operation canceled by user."
Stop-Transcript
Read-Host -Prompt "Press ENTER key to exit..."
return
} elseif ($shouldRunLocalWebsite) {
Start-LocalWebsite
return
}
}
# Generate API doc
if ($ReuseAPI)
{
Write-Host -ForegroundColor Green "Generating API documentation from existing mete data..."
} elseif ($API)
{
$exitCode = Generate-APIDoc
if($exitCode -ne 0)
{
Write-Error "Failed to generate API metadata. ExitCode: $exitCode"
Stop-Transcript
Read-Host -Prompt "Press any ENTER to exit..."
return $exitCode
}
} else {
Remove-APIDoc
}
Write-Host -ForegroundColor Green "Generating documentation..."
Write-Host ""
Write-Warning "Note that when building docs without API, you will get UidNotFound warnings and invalid references warnings"
Write-Host ""
if ($isEnLanguage -or $isAllLanguages)
{
$exitCode = Build-EnglishDoc
if ($exitCode -ne 0)
{
Write-Error "Failed to build English documentation. ExitCode: $exitCode"
Stop-Transcript
Read-Host -Prompt "Press any ENTER to exit..."
return $exitCode
}
PostProcessing-FixingSitemap
PostProcessing-Fixing404AbsolutePath
Copy-ExtraItems
}
# Build non-English language if selected or build all languages if selected
if ($isAllLanguages) {
Build-AllLanguagesDocs -Languages $languages
} elseif ($selectedLanguage) {
Build-NonEnglishDoc -SelectedLanguage $selectedLanguage
}
Stop-Transcript
Read-Host -Prompt "Press any ENTER to exit..."