chore: code formatting
This commit is contained in:
98
.github/scripts/build.mjs
vendored
98
.github/scripts/build.mjs
vendored
@@ -1,12 +1,12 @@
|
||||
//Imports
|
||||
import ejs from "ejs"
|
||||
import fs from "fs/promises"
|
||||
import ejs from "ejs"
|
||||
import fss from "fs"
|
||||
import paths from "path"
|
||||
import url from "url"
|
||||
import sgit from "simple-git"
|
||||
import metadata from "../../source/app/metrics/metadata.mjs"
|
||||
import yaml from "js-yaml"
|
||||
import paths from "path"
|
||||
import sgit from "simple-git"
|
||||
import url from "url"
|
||||
import metadata from "../../source/app/metrics/metadata.mjs"
|
||||
|
||||
//Mode
|
||||
const [mode = "dryrun"] = process.argv.slice(2)
|
||||
@@ -25,34 +25,36 @@ const __test_secrets = paths.join(paths.join(__metrics, "tests/secrets.json"))
|
||||
//Git setup
|
||||
const git = sgit(__metrics)
|
||||
const staged = new Set()
|
||||
const secrets = Object.assign(JSON.parse(`${await fs.readFile(__test_secrets)}`), {$regex:/\$\{\{\s*secrets\.(?<secret>\w+)\s*\}\}/})
|
||||
const {plugins, templates} = await metadata({log:false, diff:true})
|
||||
const secrets = Object.assign(JSON.parse(`${await fs.readFile(__test_secrets)}`), { $regex: /\$\{\{\s*secrets\.(?<secret>\w+)\s*\}\}/ })
|
||||
const { plugins, templates } = await metadata({ log: false, diff: true })
|
||||
const workflow = []
|
||||
|
||||
//Config and general documentation auto-generation
|
||||
for (const step of ["config", "documentation"]) {
|
||||
switch (step) {
|
||||
case "config":
|
||||
await update({source:paths.join(__action, "action.yml"), output:"action.yml"})
|
||||
await update({source:paths.join(__web, "settings.example.json"), output:"settings.example.json"})
|
||||
await update({ source: paths.join(__action, "action.yml"), output: "action.yml" })
|
||||
await update({ source: paths.join(__web, "settings.example.json"), output: "settings.example.json" })
|
||||
break
|
||||
case "documentation":
|
||||
await update({source:paths.join(__readme, "README.md"), output:"README.md", options:{root:__readme}})
|
||||
await update({source:paths.join(__readme, "partials/documentation/plugins.md"), output:"source/plugins/README.md"})
|
||||
await update({source:paths.join(__readme, "partials/documentation/templates.md"), output:"source/templates/README.md"})
|
||||
await update({ source: paths.join(__readme, "README.md"), output: "README.md", options: { root: __readme } })
|
||||
await update({ source: paths.join(__readme, "partials/documentation/plugins.md"), output: "source/plugins/README.md" })
|
||||
await update({ source: paths.join(__readme, "partials/documentation/templates.md"), output: "source/templates/README.md" })
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
//Plugins
|
||||
for (const id of Object.keys(plugins)) {
|
||||
const {examples, options, readme, tests, header} = await plugin(id)
|
||||
const { examples, options, readme, tests, header } = await plugin(id)
|
||||
|
||||
//Readme
|
||||
await fs.writeFile(readme.path, readme.content
|
||||
.replace(/(<!--header-->)[\s\S]*(<!--\/header-->)/g, `$1\n${header}\n$2`)
|
||||
.replace(/(<!--examples-->)[\s\S]*(<!--\/examples-->)/g, `$1\n${examples.map(({test, prod, ...step}) => ["```yaml", yaml.dump(step), "```"].join("\n")).join("\n")}\n$2`)
|
||||
.replace(/(<!--options-->)[\s\S]*(<!--\/options-->)/g, `$1\n${options}\n$2`)
|
||||
await fs.writeFile(
|
||||
readme.path,
|
||||
readme.content
|
||||
.replace(/(<!--header-->)[\s\S]*(<!--\/header-->)/g, `$1\n${header}\n$2`)
|
||||
.replace(/(<!--examples-->)[\s\S]*(<!--\/examples-->)/g, `$1\n${examples.map(({ test, prod, ...step }) => ["```yaml", yaml.dump(step), "```"].join("\n")).join("\n")}\n$2`)
|
||||
.replace(/(<!--options-->)[\s\S]*(<!--\/options-->)/g, `$1\n${options}\n$2`),
|
||||
)
|
||||
console.log(`Generating source/plugins/${id}/README.md`)
|
||||
|
||||
@@ -64,12 +66,14 @@ for (const id of Object.keys(plugins)) {
|
||||
|
||||
//Templates
|
||||
for (const id of Object.keys(templates)) {
|
||||
const {examples, readme, tests, header} = await template(id)
|
||||
const { examples, readme, tests, header } = await template(id)
|
||||
|
||||
//Readme
|
||||
await fs.writeFile(readme.path, readme.content
|
||||
.replace(/(<!--header-->)[\s\S]*(<!--\/header-->)/g, `$1\n${header}\n$2`)
|
||||
.replace(/(<!--examples-->)[\s\S]*(<!--\/examples-->)/g, `$1\n${examples.map(({test, prod, ...step}) => ["```yaml", yaml.dump(step), "```"].join("\n")).join("\n")}\n$2`)
|
||||
await fs.writeFile(
|
||||
readme.path,
|
||||
readme.content
|
||||
.replace(/(<!--header-->)[\s\S]*(<!--\/header-->)/g, `$1\n${header}\n$2`)
|
||||
.replace(/(<!--examples-->)[\s\S]*(<!--\/examples-->)/g, `$1\n${examples.map(({ test, prod, ...step }) => ["```yaml", yaml.dump(step), "```"].join("\n")).join("\n")}\n$2`),
|
||||
)
|
||||
console.log(`Generating source/templates/${id}/README.md`)
|
||||
|
||||
@@ -80,7 +84,7 @@ for (const id of Object.keys(templates)) {
|
||||
}
|
||||
|
||||
//Example workflows
|
||||
await update({source:paths.join(__metrics, ".github/scripts/files/examples.yml"), output:".github/workflows/examples.yml", context:{steps:yaml.dump(workflow)}})
|
||||
await update({ source: paths.join(__metrics, ".github/scripts/files/examples.yml"), output: ".github/workflows/examples.yml", context: { steps: yaml.dump(workflow) } })
|
||||
|
||||
//Commit and push
|
||||
if (mode === "publish") {
|
||||
@@ -98,10 +102,10 @@ console.log("Success!")
|
||||
//==================================================================================
|
||||
|
||||
//Update generated files
|
||||
async function update({source, output, context = {}, options = {}}) {
|
||||
async function update({ source, output, context = {}, options = {} }) {
|
||||
console.log(`Generating ${output}`)
|
||||
const {plugins, templates, packaged, descriptor} = await metadata({log:false})
|
||||
const content = await ejs.renderFile(source, {plugins, templates, packaged, descriptor, ...context}, {async:true, ...options})
|
||||
const { plugins, templates, packaged, descriptor } = await metadata({ log: false })
|
||||
const content = await ejs.renderFile(source, { plugins, templates, packaged, descriptor, ...context }, { async: true, ...options })
|
||||
const file = paths.join(__metrics, output)
|
||||
await fs.writeFile(file, content)
|
||||
staged.add(file)
|
||||
@@ -114,16 +118,16 @@ async function plugin(id) {
|
||||
const examples = paths.join(path, "examples.yml")
|
||||
const tests = paths.join(__test_cases, `${id}.plugin.yml`)
|
||||
return {
|
||||
readme:{
|
||||
path:readme,
|
||||
content:`${await fs.readFile(readme)}`
|
||||
readme: {
|
||||
path: readme,
|
||||
content: `${await fs.readFile(readme)}`,
|
||||
},
|
||||
tests:{
|
||||
path:tests
|
||||
tests: {
|
||||
path: tests,
|
||||
},
|
||||
examples:fss.existsSync(examples) ? yaml.load(await fs.readFile(examples), "utf8") ?? [] : [],
|
||||
options:plugins[id].readme.table,
|
||||
header:plugins[id].readme.header
|
||||
examples: fss.existsSync(examples) ? yaml.load(await fs.readFile(examples), "utf8") ?? [] : [],
|
||||
options: plugins[id].readme.table,
|
||||
header: plugins[id].readme.header,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -134,45 +138,45 @@ async function template(id) {
|
||||
const examples = paths.join(path, "examples.yml")
|
||||
const tests = paths.join(__test_cases, `${id}.template.yml`)
|
||||
return {
|
||||
readme:{
|
||||
path:readme,
|
||||
content:`${await fs.readFile(readme)}`
|
||||
readme: {
|
||||
path: readme,
|
||||
content: `${await fs.readFile(readme)}`,
|
||||
},
|
||||
tests:{
|
||||
path:tests
|
||||
tests: {
|
||||
path: tests,
|
||||
},
|
||||
examples:fss.existsSync(examples) ? yaml.load(await fs.readFile(examples), "utf8") ?? [] : [],
|
||||
header:templates[id].readme.header
|
||||
examples: fss.existsSync(examples) ? yaml.load(await fs.readFile(examples), "utf8") ?? [] : [],
|
||||
header: templates[id].readme.header,
|
||||
}
|
||||
}
|
||||
|
||||
//Testcase generator
|
||||
function testcase(name, env, args) {
|
||||
const {prod = {}, test = {}, ...step} = JSON.parse(JSON.stringify(args))
|
||||
const context = {prod, test}[env] ?? {}
|
||||
const { prod = {}, test = {}, ...step } = JSON.parse(JSON.stringify(args))
|
||||
const context = { prod, test }[env] ?? {}
|
||||
if (context.skip)
|
||||
return null
|
||||
|
||||
Object.assign(step.with, context.with ?? {})
|
||||
delete context.with
|
||||
const result = {...step, ...context, name:`${name} - ${step.name ?? "(unnamed)"}`}
|
||||
const result = { ...step, ...context, name: `${name} - ${step.name ?? "(unnamed)"}` }
|
||||
for (const [k, v] of Object.entries(result.with)) {
|
||||
if ((env === "test")&&(secrets.$regex.test(v)))
|
||||
if ((env === "test") && (secrets.$regex.test(v)))
|
||||
result.with[k] = v.replace(secrets.$regex, secrets[v.match(secrets.$regex)?.groups?.secret])
|
||||
}
|
||||
|
||||
if (env === "prod") {
|
||||
result.if = "${{ success() || failure() }}"
|
||||
result.uses = "lowlighter/metrics@master"
|
||||
Object.assign(result.with, {plugins_errors_fatal:"yes", output_action:"none", delay:120})
|
||||
Object.assign(result.with, { plugins_errors_fatal: "yes", output_action: "none", delay: 120 })
|
||||
}
|
||||
|
||||
if (env === "test") {
|
||||
if (!result.with.base)
|
||||
delete result.with.base
|
||||
delete result.with.filename
|
||||
Object.assign(result.with, {use_mocked_data:"yes", verify:"yes"})
|
||||
Object.assign(result.with, { use_mocked_data: "yes", verify: "yes" })
|
||||
}
|
||||
|
||||
return result
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user