-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
ClientPostgreSQL.ts
136 lines (114 loc) · 3.85 KB
/
ClientPostgreSQL.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
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
import { PostgreSQLClient } from "../deps.ts";
import { AbstractClient } from "./AbstractClient.ts";
import type {
AmountMigrateT,
AmountRollbackT,
DBDialects,
QueryT,
} from "../types.ts";
import {
COL_CREATED_AT,
COL_FILE_NAME,
MAX_FILE_NAME_LENGTH,
TABLE_MIGRATIONS,
} from "../consts.ts";
import { NessieError } from "../cli/errors.ts";
export type PostgreSQLClientOptions = ConstructorParameters<
typeof PostgreSQLClient
>;
/** PostgreSQL client */
export class ClientPostgreSQL extends AbstractClient<PostgreSQLClient> {
dialect: DBDialects = "pg";
protected get QUERY_TRANSACTION_START() {
return `BEGIN TRANSACTION;`;
}
protected get QUERY_TRANSACTION_COMMIT() {
return `COMMIT TRANSACTION;`;
}
protected get QUERY_TRANSACTION_ROLLBACK() {
return `ROLLBACK TRANSACTION;`;
}
protected get QUERY_MIGRATION_TABLE_EXISTS() {
return `SELECT * FROM information_schema.tables WHERE table_name = '${TABLE_MIGRATIONS}' LIMIT 1;`;
}
protected get QUERY_CREATE_MIGRATION_TABLE() {
return `CREATE TABLE ${TABLE_MIGRATIONS} (id bigserial PRIMARY KEY, ${COL_FILE_NAME} varchar(${MAX_FILE_NAME_LENGTH}) UNIQUE, ${COL_CREATED_AT} timestamp (0) default current_timestamp);`;
}
protected get QUERY_UPDATE_TIMESTAMPS() {
return `UPDATE ${TABLE_MIGRATIONS} SET ${COL_FILE_NAME} = to_char(to_timestamp(CAST(SPLIT_PART(${COL_FILE_NAME}, '-', 1) AS BIGINT) / 1000), 'yyyymmddHH24MISS') || '-' || SPLIT_PART(${COL_FILE_NAME}, '-', 2) WHERE CAST(SPLIT_PART(${COL_FILE_NAME}, '-', 1) AS BIGINT) < 1672531200000;`;
}
constructor(...params: PostgreSQLClientOptions) {
super({ client: new PostgreSQLClient(...params) });
}
async prepare() {
await this.client.connect();
const queryResult = await this.client
.queryArray(this.QUERY_MIGRATION_TABLE_EXISTS);
const migrationTableExists = queryResult.rows.length > 0 &&
queryResult.rows?.[0].includes(TABLE_MIGRATIONS);
if (!migrationTableExists) {
await this.client.queryArray(this.QUERY_CREATE_MIGRATION_TABLE);
console.info("Database setup complete");
}
}
async updateTimestamps() {
await this.client.connect();
const queryResult = await this.client.queryArray(
this.QUERY_MIGRATION_TABLE_EXISTS,
);
const migrationTableExists =
queryResult.rows?.[0]?.[0] === TABLE_MIGRATIONS;
if (migrationTableExists) {
await this.client.queryArray(this.QUERY_TRANSACTION_START);
try {
await this.client.queryArray(this.QUERY_UPDATE_TIMESTAMPS);
await this.client.queryArray(this.QUERY_TRANSACTION_COMMIT);
console.info("Updated timestamps");
} catch (e) {
await this.client.queryArray(this.QUERY_TRANSACTION_ROLLBACK);
throw e;
}
}
}
async query(query: QueryT) {
if (typeof query === "string") query = this.splitAndTrimQueries(query);
const ra = [];
for await (const qs of query) {
try {
ra.push(await this.client.queryArray(qs));
} catch (e) {
throw new NessieError(query + "\n" + e + "\n" + ra.join("\n"));
}
}
return ra;
}
async close() {
await this.client.end();
}
async migrate(amount: AmountMigrateT) {
const latestMigration = await this.client.queryArray(this.QUERY_GET_LATEST);
await this._migrate(
amount,
latestMigration.rows?.[0]?.[0] as undefined,
this.query.bind(this),
);
}
async rollback(amount: AmountRollbackT) {
const allMigrations = await this.getAll();
await this._rollback(
amount,
allMigrations,
this.query.bind(this),
);
}
async seed(matcher?: string) {
await this._seed(matcher);
}
async getAll() {
const allMigrations = await this.client.queryArray<[string]>(
this.QUERY_GET_ALL,
);
const parsedMigrations: string[] = allMigrations.rows?.map((el) => el?.[0]);
return parsedMigrations;
}
}