Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add config.yaml json schemas #411

Merged
merged 2 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions docs/config.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "kontinuous config.yaml JSON schema",
"markdownDescription": "See [config documentation](https://socialgouv.github.io/kontinuous/#/./advanced/configuration)",
"type": "object",
"properties": {
"projectName": {
"title": "Name of the rancher project. useful to guess the namespace rancher-project-id",
"type": "string"
},
"ciNamespace": {
"title": "Name of the CI namespace. useful to copy secrets",
"examples": [
"ci-myapp"
],
"type": "string"
},
"config": {
"title": "project kontinuous configuration",
"markdownDescription": "see [documentation](https://socialgouv.github.io/kontinuous/#/./advanced/configuration)",
"type": "object"
},
"options": {
"title": "project kontinuous options",
"markdownDescription": "see [documentation](https://socialgouv.github.io/kontinuous/#/./advanced/configuration)",
"type": "object"
},
"dependencies": {
"type": "object",
"properties": {
"fabrique": {
"$ref": "../plugins/fabrique/config.schema.json"
},
"contrib": {
"$ref": "../plugins/contrib/config.schema.json"
}
},
"required": []
}
},
"required": []
}
156 changes: 156 additions & 0 deletions docs/extract-plugin-config-schema.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
/*
* Extract plugins configurations JSON schemas
*/

const { readdirSync, existsSync, writeFileSync } = require("node:fs")
const camelCase = require("lodash.camelcase")

const folders =
"patches,post-deploy,pre-deploy,validators,values-compilers".split(",")

// extract list of files from a folder
const getFilesFromPath = (path, camelify = false) =>
(existsSync(path) &&
readdirSync(path)
.map((file) => ({
id: camelify
? camelCase(file.replace(/^[\d.]+(.*?)\.js/g, "$1"))
: file,
path: file,
}))
.filter(Boolean)) ||
[]

const getDependencies = (path) => ({
type: "object",
properties: {
fabrique: {
$ref: `${path}/plugins/fabrique/config.schema.json`,
},
contrib: {
$ref: `${path}/plugins/contrib/config.schema.json`,
},
},
required: [],
})

const getPluginSchema = (plugin, dependencies) => {
const properties = folders.reduce((allFolders, folder) => {
const folderPath = `../plugins/${plugin}/${folder}`
if (!existsSync(folderPath)) return allFolders
const folderProperties = getFilesFromPath(folderPath, true).reduce(
(a, file) => ({
...a,
[file.id]: {
type: "object",
title: file.id,
markdownDescription: `Configuration of the ${file.id} plugin\n\nSee [plugin source](https://github.com/SocialGouv/kontinuous/blob/master/plugins/${plugin}/${folder}/${file.path})`,
additionalProperties: true,
properties: {
enabled: {
title: `${file.id}.enabled`,
description: "Enable or disable this plugin",
type: "boolean",
},
options: {
title: `${file.id}.options`,
markdownDescription: `Options of the ${file.id} plugin\n\nSee [plugin source](https://github.com/SocialGouv/kontinuous/blob/master/plugins/${plugin}/${folder}/${file.path})`,
type: "object",
additionalProperties: true,
properties: {},
},
},
},
}),
{}
)
return {
...allFolders,
[folder]: {
type: "object",
title: folder,
markdownDescription: `Options from the ${folder} type.`,
properties: folderProperties,
},
}
}, {})

const extendsEnum = getFilesFromPath(`../plugins/${plugin}/extends`).map(
(file) => file.path.replace(/\.yaml$/, "")
)
return {
type: "object",
title: `kontinuous ${plugin} plugin configuration.`,
markdownDescription: `See ${plugin} plugin [default configuration](https://github.com/SocialGouv/kontinuous/blob/master/plugins/${plugin}/kontinuous.yaml)`,
properties: {
...properties,
dependencies,
extends: {
title: "Additional configs to extend from",
type: "array",
items: {
type: "object",
properties: {
name: {
type: "string",
enum: (extendsEnum.length && extendsEnum) || undefined,
},
ifEnv: {
type: "array",
items: {
type: "string",
enum: ["dev", "preprod", "prod"],
},
},
},
},
},
},
}
}

const baseJsonSchema = {
$schema: "http://json-schema.org/draft-07/schema#",
title: "kontinuous config.yaml JSON schema",
markdownDescription:
"See [config documentation](https://socialgouv.github.io/kontinuous/#/./advanced/configuration)",
type: "object",
properties: {
projectName: {
title:
"Name of the rancher project. useful to guess the namespace rancher-project-id",
type: "string",
},
ciNamespace: {
title: "Name of the CI namespace. useful to copy secrets",
examples: ["ci-myapp"],
type: "string",
},
config: {
title: "project kontinuous configuration",
markdownDescription:
"see [documentation](https://socialgouv.github.io/kontinuous/#/./advanced/configuration)",
type: "object",
},
options: {
title: "project kontinuous options",
markdownDescription:
"see [documentation](https://socialgouv.github.io/kontinuous/#/./advanced/configuration)",
type: "object",
},
dependencies: getDependencies(".."),
},
required: [],
}

writeFileSync("./config.schema.json", JSON.stringify(baseJsonSchema, null, 2))

writeFileSync(
"../plugins/contrib/config.schema.json",
JSON.stringify(getPluginSchema("contrib", getDependencies("../..")), null, 2)
)

writeFileSync(
"../plugins/fabrique/config.schema.json",
JSON.stringify(getPluginSchema("fabrique", getDependencies("../..")), null, 2)
)
Loading