diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-06-27 23:39:31 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-06-27 23:39:31 +0900 |
| commit | 674fe965550444db87edc7937ff6932e1a918d9d (patch) | |
| tree | e8a80dd958d3e082485286bf5785a7992b6e6b0e /services/blog/nuldoc-src/config.ts | |
| parent | fe4d1d625b53796c5f20399790e5ff8c7a7e1608 (diff) | |
| download | nsfisis.dev-674fe965550444db87edc7937ff6932e1a918d9d.tar.gz nsfisis.dev-674fe965550444db87edc7937ff6932e1a918d9d.tar.zst nsfisis.dev-674fe965550444db87edc7937ff6932e1a918d9d.zip | |
feat(meta): rename vhosts/ directory to services/
Diffstat (limited to 'services/blog/nuldoc-src/config.ts')
| -rw-r--r-- | services/blog/nuldoc-src/config.ts | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/services/blog/nuldoc-src/config.ts b/services/blog/nuldoc-src/config.ts new file mode 100644 index 00000000..adcb5632 --- /dev/null +++ b/services/blog/nuldoc-src/config.ts @@ -0,0 +1,41 @@ +import { join } from "@std/path"; +import { parse as parseToml } from "@std/toml"; +import { z } from "zod/mod.ts"; + +const ConfigSchema = z.object({ + locations: z.object({ + contentDir: z.string(), + destDir: z.string(), + staticDir: z.string(), + }), + rendering: z.object({ + html: z.object({ + indentWidth: z.number(), + }), + }), + blog: z.object({ + author: z.string(), + fqdn: z.string(), + siteName: z.string(), + siteCopyrightYear: z.number(), + postsPerPage: z.number().default(10), + tagLabels: z.record(z.string(), z.string()), + }), +}); + +export type Config = z.infer<typeof ConfigSchema>; + +export function getTagLabel(c: Config, slug: string): string { + if (!(slug in c.blog.tagLabels)) { + throw new Error(`Unknown tag: ${slug}`); + } + return c.blog.tagLabels[slug]; +} + +export function getDefaultConfigPath(): string { + return join(Deno.cwd(), "nuldoc.toml"); +} + +export async function loadConfig(filePath: string): Promise<Config> { + return ConfigSchema.parse(parseToml(await Deno.readTextFile(filePath))); +} |
