aboutsummaryrefslogtreecommitdiff
path: root/deno/tools/service.ts
blob: 1172473092fa3f08f23072afa20d0c9d56053a50 (plain)
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
import { dirname, join, relative } from "@std/path";
import { copySync, existsSync, walkSync } from "@std/fs";
import { parse } from "@std/dotenv";
import { distinct } from "@std/collections";
// @ts-types="npm:@types/mustache"
import Mustache from "mustache";

import { defineYargsModule, DEMAND_COMMAND_MESSAGE } from "./yargs.ts";

const MUSTACHE_RENDER_OPTIONS: Mustache.RenderOptions = {
  tags: ["@@", "@@"],
  escape: (value: unknown) => String(value),
};

function mustacheParse(template: string) {
  return Mustache.parse(template, MUSTACHE_RENDER_OPTIONS.tags);
}

function mustacheRender(template: string, view: Record<string, string>) {
  return Mustache.render(template, view, {}, MUSTACHE_RENDER_OPTIONS);
}

function getVariableKeysOfTemplate(template: string): string[] {
  return distinct(
    mustacheParse(template)
      .filter((v) => v[0] === "name")
      .map((v) => v[1]),
  );
}

function loadTemplatedConfigFiles(
  files: string[],
): Record<string, string> {
  console.log("Scan config files ...");
  const config: Record<string, string> = {};
  for (const file of files) {
    console.log(`  from file ${file}`);
    const text = Deno.readTextFileSync(file);
    for (const [key, valueText] of Object.entries(parse(text))) {
      // TODO: dotenv silently override old values, so everything will be new for now.
      console.log(`    (${key in config ? "override" : "new"}) ${key}`);
      getVariableKeysOfTemplate(valueText).forEach((name) => {
        if (!(name in config)) {
          throw new Error(
            `Variable ${name} is not defined yet, perhaps due to typos or wrong order.`,
          );
        }
      });
      config[key] = mustacheRender(valueText, config);
    }
  }
  return config;
}

const TEMPLATE_FILE_EXT = ".template";

class TemplateDir {
  templates: { path: string; ext: string; text: string; vars: string[] }[] = [];
  plains: { path: string }[] = [];

  constructor(public dir: string) {
    console.log(`Scan template dir ${dir} ...`);
    Array.from(
      walkSync(dir, { includeDirs: false, followSymlinks: true }),
    ).forEach(({ path }) => {
      path = relative(this.dir, path);
      if (path.endsWith(TEMPLATE_FILE_EXT)) {
        console.log(`  (template) ${path}`);
        const text = Deno.readTextFileSync(join(dir, path));
        this.templates.push({
          path,
          ext: TEMPLATE_FILE_EXT,
          text,
          vars: getVariableKeysOfTemplate(text),
        });
      } else {
        console.log(`  (plain) ${path}`);
        this.plains.push({ path });
      }
    });
  }

  allNeededVars() {
    return distinct(this.templates.flatMap((t) => t.vars));
  }

  generate(vars: Record<string, string>, generatedDir?: string) {
    console.log(
      `Generate to dir ${generatedDir ?? "[dry-run]"} ...`,
    );

    const undefinedVars = this.allNeededVars().filter((v) => !(v in vars));
    if (undefinedVars.length !== 0) {
      throw new Error(
        `Needed variables are not defined: ${undefinedVars.join(", ")}`,
      );
    }

    if (generatedDir != null) {
      if (existsSync(generatedDir)) {
        console.log(`  delete old generated dir`);
        Deno.removeSync(generatedDir, { recursive: true });
      }

      for (const file of this.plains) {
        const [source, destination] = [
          join(this.dir, file.path),
          join(generatedDir, file.path),
        ];
        console.log(`  copy ${file.path}`);
        Deno.mkdirSync(dirname(destination), { recursive: true });
        copySync(source, destination);
      }
      for (const file of this.templates) {
        const path = file.path.slice(0, -file.ext.length);
        const destination = join(generatedDir, path);
        console.log(`  generate ${path}`);
        const rendered = mustacheRender(file.text, vars);
        Deno.mkdirSync(dirname(destination), { recursive: true });
        Deno.writeTextFileSync(destination, rendered);
      }
    }
  }
}

export default defineYargsModule({
  command: "service",
  aliases: ["sv"],
  describe: "Manage services.",
  builder: (builder) => {
    return builder
      .option("project-dir", {
        type: "string",
      })
      .demandOption("project-dir")
      .command({
        command: "gen-tmpl",
        describe: "Generate files from templates",
        builder: (builder) => {
          return builder
            .option("dry-run", {
              type: "boolean",
              default: true,
            })
            .strict();
        },
        handler: (argv) => {
          const { projectDir, dryRun } = argv;

          const config = loadTemplatedConfigFiles(
            [
              join(projectDir, "data/config"),
              join(projectDir, "services/config.template"),
            ],
          );

          new TemplateDir(
            join(projectDir, "services/templates"),
          ).generate(
            config,
            dryRun ? undefined : join(projectDir, "services/generated"),
          );
          console.log("Done!");
        },
      })
      .demandCommand(1, DEMAND_COMMAND_MESSAGE);
  },
  handler: () => {},
});