forked from ankitects/anki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql_format.ts
46 lines (42 loc) · 1.42 KB
/
sql_format.ts
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
import sqlFormatter from "@sqltools/formatter";
import * as Diff from "diff";
import process from "process";
import path from "path";
import fs from "fs";
const workspace = process.env.BUILD_WORKSPACE_DIRECTORY;
const wantFix = workspace !== undefined;
function fixFile(relpath: string, newText: string): void {
const workspacePath = path.join(workspace!, relpath);
fs.writeFileSync(workspacePath, newText);
}
function formatText(text: string): string {
const newText: string = sqlFormatter.format(text, {
indent: " ",
reservedWordCase: "upper",
});
// 'type' is treated as a reserved word, but Anki uses it in various sql
// tables, so we don't want it uppercased
return newText.replace(/\bTYPE\b/g, "type");
}
let errorFound = false;
for (const path of process.argv.slice(2)) {
const orig = fs.readFileSync(path).toString();
const formatted = formatText(orig);
if (orig !== formatted) {
if (wantFix) {
fixFile(path, formatted);
console.log(`Fixed ${path}`);
} else {
if (!errorFound) {
errorFound = true;
console.log("SQL formatting issues found:");
}
console.log(Diff.createPatch(path, orig, formatted));
}
}
}
if (errorFound) {
console.log("Use 'bazel run //rslib:sql_format' to fix.");
console.log(process.env.BUILD_WORKSPACE_DIRECTORY);
process.exit(1);
}