2020-12-02 07:35:26 +00:00
|
|
|
|
2020-12-04 16:30:26 +00:00
|
|
|
const MyVC = require('./myvc');
|
2020-12-02 07:35:26 +00:00
|
|
|
const fs = require('fs-extra');
|
2020-12-04 10:53:11 +00:00
|
|
|
const nodegit = require('nodegit');
|
2020-12-04 09:15:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Pushes changes to remote.
|
|
|
|
*
|
|
|
|
* @property {Boolean} force Answer yes to all questions
|
|
|
|
* @property {Boolean} user Whether to change current user version
|
|
|
|
*/
|
2020-12-02 07:35:26 +00:00
|
|
|
class Push {
|
|
|
|
get myOpts() {
|
|
|
|
return {
|
|
|
|
alias: {
|
|
|
|
force: 'f',
|
2020-12-04 09:15:29 +00:00
|
|
|
user: 'u'
|
2020-12-02 07:35:26 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
async run(myvc, opts) {
|
|
|
|
const conn = await myvc.dbConnect();
|
|
|
|
this.conn = conn;
|
|
|
|
|
|
|
|
const version = await myvc.fetchDbVersion() || {};
|
|
|
|
|
|
|
|
console.log(
|
|
|
|
`Database information:`
|
|
|
|
+ `\n -> Version: ${version.number}`
|
|
|
|
+ `\n -> Commit: ${version.gitCommit}`
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!version.number)
|
|
|
|
version.number = '00000';
|
2020-12-05 21:50:45 +00:00
|
|
|
if (!/^[0-9]*$/.test(version.number))
|
|
|
|
throw new Error('Wrong database version');
|
2020-12-02 07:35:26 +00:00
|
|
|
|
|
|
|
if (opts.user) {
|
2021-10-16 06:44:19 +00:00
|
|
|
const user = await this.getDbUser();
|
2020-12-02 07:35:26 +00:00
|
|
|
let [[userVersion]] = await conn.query(
|
|
|
|
`SELECT number, gitCommit
|
|
|
|
FROM versionUser
|
|
|
|
WHERE code = ? AND user = ?`,
|
|
|
|
[opts.code, user]
|
|
|
|
);
|
|
|
|
userVersion = userVersion || {};
|
|
|
|
console.log(
|
|
|
|
`User information:`
|
|
|
|
+ `\n -> User: ${user}`
|
|
|
|
+ `\n -> Version: ${userVersion.number}`
|
|
|
|
+ `\n -> Commit: ${userVersion.gitCommit}`
|
|
|
|
);
|
|
|
|
|
|
|
|
if (userVersion.number > version.number)
|
2021-10-16 06:44:19 +00:00
|
|
|
version.number = userVersion.number;
|
|
|
|
if (userVersion.gitCommit && userVersion.gitCommit !== version.gitCommit)
|
|
|
|
version.gitCommit = userVersion.gitCommit;
|
2020-12-02 07:35:26 +00:00
|
|
|
}
|
|
|
|
|
2020-12-04 16:30:26 +00:00
|
|
|
if (opts.remote == 'production') {
|
2020-12-02 07:35:26 +00:00
|
|
|
console.log(
|
|
|
|
'\n ( ( ) ( ( ) ) '
|
|
|
|
+ '\n )\\ ))\\ ) ( /( )\\ ) ( ))\\ ) ( /( ( /( '
|
|
|
|
+ '\n(()/(()/( )\\()|()/( ( )\\ ) /(()/( )\\()) )\\())'
|
|
|
|
+ '\n /(_))(_)|(_)\\ /(_)) )\\ (((_) ( )(_))(_)|(_)\\ ((_)\\ '
|
|
|
|
+ '\n(_))(_)) ((_|_))_ _ ((_))\\___(_(_()|__)) ((_) _((_)'
|
|
|
|
+ '\n| _ \\ _ \\ / _ \\| \\| | | ((/ __|_ _|_ _| / _ \\| \\| |'
|
|
|
|
+ '\n| _/ /| (_) | |) | |_| || (__ | | | | | (_) | . |'
|
|
|
|
+ '\n|_| |_|_\\ \\___/|___/ \\___/ \\___| |_| |___| \\___/|_|\\_|'
|
|
|
|
+ '\n'
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!opts.force) {
|
|
|
|
const readline = require('readline');
|
|
|
|
const rl = readline.createInterface({
|
|
|
|
input: process.stdin,
|
|
|
|
output: process.stdout
|
|
|
|
});
|
|
|
|
const answer = await new Promise(resolve => {
|
|
|
|
rl.question('Are you sure? (Default: no) [yes|no] ', resolve);
|
|
|
|
});
|
|
|
|
rl.close();
|
|
|
|
|
|
|
|
if (answer !== 'yes')
|
|
|
|
throw new Error('Changes aborted');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('Applying versions.');
|
2020-12-04 12:15:51 +00:00
|
|
|
const pushConn = await myvc.createConnection();
|
2020-12-02 07:35:26 +00:00
|
|
|
|
|
|
|
let nChanges = 0;
|
|
|
|
const versionsDir = `${opts.workspace}/versions`;
|
|
|
|
|
|
|
|
function logVersion(type, version, name) {
|
|
|
|
console.log('', type.bold, `[${version.bold}]`, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (await fs.pathExists(versionsDir)) {
|
|
|
|
const versionDirs = await fs.readdir(versionsDir);
|
|
|
|
|
|
|
|
for (const versionDir of versionDirs) {
|
|
|
|
if (versionDir == 'README.md')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const match = versionDir.match(/^([0-9]{5})-([a-zA-Z0-9]+)?$/);
|
|
|
|
if (!match) {
|
|
|
|
logVersion('[W]'.yellow, '?????', versionDir);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const dirVersion = match[1];
|
|
|
|
const versionName = match[2];
|
|
|
|
|
|
|
|
if (version.number >= dirVersion) {
|
|
|
|
logVersion('[I]'.blue, dirVersion, versionName);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
logVersion('[+]'.green, dirVersion, versionName);
|
|
|
|
const scriptsDir = `${versionsDir}/${versionDir}`;
|
|
|
|
const scripts = await fs.readdir(scriptsDir);
|
|
|
|
|
|
|
|
for (const script of scripts) {
|
|
|
|
if (!/^[0-9]{2}-[a-zA-Z0-9_]+\.sql$/.test(script)) {
|
|
|
|
console.log(` - Ignoring wrong file name: ${script}`);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(` - ${script}`);
|
|
|
|
await this.queryFromFile(pushConn, `${scriptsDir}/${script}`);
|
|
|
|
nChanges++;
|
|
|
|
}
|
|
|
|
|
2020-12-04 10:53:11 +00:00
|
|
|
await this.updateVersion(nChanges, 'number', dirVersion);
|
2020-12-02 07:35:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('Applying changed routines.');
|
|
|
|
|
|
|
|
let nRoutines = 0;
|
|
|
|
let changes = await fs.pathExists(`${opts.workspace}/.git`)
|
|
|
|
? await myvc.changedRoutines(version.gitCommit)
|
|
|
|
: await myvc.cachedChanges();
|
2020-12-04 09:15:29 +00:00
|
|
|
changes = this.parseChanges(changes);
|
2020-12-02 07:35:26 +00:00
|
|
|
|
|
|
|
await conn.query(
|
|
|
|
`CREATE TEMPORARY TABLE tProcsPriv
|
|
|
|
ENGINE = MEMORY
|
|
|
|
SELECT * FROM mysql.procs_priv LIMIT 0`
|
|
|
|
);
|
|
|
|
|
|
|
|
const routines = [];
|
|
|
|
for (const change of changes)
|
|
|
|
if (change.isRoutine)
|
|
|
|
routines.push([change.schema, change.name]);
|
|
|
|
|
|
|
|
if (routines.length) {
|
|
|
|
await conn.query(
|
|
|
|
`DROP TEMPORARY TABLE IF EXISTS tProcsPriv`
|
|
|
|
);
|
|
|
|
await conn.query(
|
|
|
|
`CREATE TEMPORARY TABLE tProcsPriv
|
|
|
|
ENGINE = MEMORY
|
|
|
|
SELECT * FROM mysql.procs_priv
|
|
|
|
WHERE (Db, Routine_name) IN (?)`,
|
|
|
|
[routines]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const change of changes) {
|
2020-12-04 09:15:29 +00:00
|
|
|
const fullPath = `${opts.workspace}/routines/${change.path}.sql`;
|
|
|
|
const exists = await fs.pathExists(fullPath);
|
|
|
|
const actionMsg = exists ? '[+]'.green : '[-]'.red;
|
2020-12-02 07:35:26 +00:00
|
|
|
const typeMsg = `[${change.type.abbr}]`[change.type.color];
|
|
|
|
|
|
|
|
console.log('', actionMsg.bold, typeMsg.bold, change.fullName);
|
|
|
|
|
2020-12-04 09:15:29 +00:00
|
|
|
if (exists)
|
2020-12-02 07:35:26 +00:00
|
|
|
await this.queryFromFile(pushConn, `routines/${change.path}.sql`);
|
|
|
|
else {
|
|
|
|
const escapedName =
|
|
|
|
conn.escapeId(change.schema, true) + '.' +
|
|
|
|
conn.escapeId(change.name, true);
|
|
|
|
|
|
|
|
const query = `DROP ${change.type.name} IF EXISTS ${escapedName}`;
|
|
|
|
await conn.query(query);
|
|
|
|
}
|
|
|
|
|
|
|
|
nRoutines++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (routines.length) {
|
|
|
|
await conn.query(
|
|
|
|
`INSERT IGNORE INTO mysql.procs_priv
|
|
|
|
SELECT * FROM tProcsPriv`
|
|
|
|
);
|
|
|
|
await conn.query(
|
|
|
|
`DROP TEMPORARY TABLE tProcsPriv`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
await pushConn.end();
|
|
|
|
|
|
|
|
if (nRoutines > 0) {
|
|
|
|
await conn.query('FLUSH PRIVILEGES');
|
|
|
|
|
|
|
|
console.log(` -> ${nRoutines} routines have changed.`);
|
|
|
|
} else
|
|
|
|
console.log(` -> No routines changed.`);
|
2021-10-16 06:44:19 +00:00
|
|
|
|
|
|
|
const repo = await nodegit.Repository.open(this.opts.workspace);
|
|
|
|
const head = await repo.getHeadCommit();
|
|
|
|
|
|
|
|
if (version.gitCommit !== head.sha())
|
|
|
|
await this.updateVersion(nRoutines, 'gitCommit', head.sha());
|
2020-12-02 07:35:26 +00:00
|
|
|
}
|
|
|
|
|
2020-12-04 09:15:29 +00:00
|
|
|
parseChanges(changes) {
|
2020-12-02 07:35:26 +00:00
|
|
|
const routines = [];
|
2020-12-05 21:50:45 +00:00
|
|
|
if (changes)
|
|
|
|
for (const change of changes)
|
|
|
|
routines.push(new Routine(change));
|
2020-12-02 07:35:26 +00:00
|
|
|
return routines;
|
|
|
|
}
|
|
|
|
|
2021-10-16 06:44:19 +00:00
|
|
|
async getDbUser() {
|
|
|
|
const [[row]] = await this.conn.query('SELECT USER() `user`');
|
|
|
|
return row.user.substr(0, row.user.indexOf('@'));
|
|
|
|
}
|
|
|
|
|
2020-12-02 07:35:26 +00:00
|
|
|
async updateVersion(nChanges, column, value) {
|
|
|
|
if (nChanges == 0) return;
|
|
|
|
const {opts} = this;
|
|
|
|
|
|
|
|
column = this.conn.escapeId(column, true);
|
|
|
|
|
|
|
|
if (opts.user) {
|
2021-10-16 06:44:19 +00:00
|
|
|
const user = await this.getDbUser();
|
2020-12-02 07:35:26 +00:00
|
|
|
await this.conn.query(
|
|
|
|
`INSERT INTO versionUser
|
|
|
|
SET code = ?,
|
|
|
|
user = ?,
|
|
|
|
${column} = ?
|
|
|
|
ON DUPLICATE KEY UPDATE
|
|
|
|
${column} = VALUES(${column})`,
|
|
|
|
[
|
|
|
|
opts.code,
|
|
|
|
user,
|
|
|
|
value
|
|
|
|
]
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
await this.conn.query(
|
|
|
|
`INSERT INTO version
|
|
|
|
SET code = ?,
|
|
|
|
${column} = ?
|
|
|
|
ON DUPLICATE KEY UPDATE
|
|
|
|
${column} = VALUES(${column})`,
|
|
|
|
[
|
|
|
|
opts.code,
|
|
|
|
value
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Executes an SQL script.
|
|
|
|
*
|
|
|
|
* @param {String} file Path to the SQL script
|
|
|
|
* @returns {Array<Result>} The resultset
|
|
|
|
*/
|
|
|
|
async queryFromFile(conn, file) {
|
|
|
|
let results = [];
|
|
|
|
const stmts = this.querySplit(await fs.readFile(file, 'utf8'));
|
|
|
|
|
|
|
|
for (const stmt of stmts)
|
|
|
|
results = results.concat(await conn.query(stmt));
|
|
|
|
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Splits an SQL muti-query into a single-query array, it does an small
|
|
|
|
* parse to correctly handle the DELIMITER statement.
|
|
|
|
*
|
|
|
|
* @param {Array<String>} stmts The splitted SQL statements
|
|
|
|
*/
|
|
|
|
querySplit(sql) {
|
|
|
|
const stmts = [];
|
|
|
|
let i,
|
|
|
|
char,
|
|
|
|
token,
|
|
|
|
escaped,
|
|
|
|
stmtStart;
|
|
|
|
|
|
|
|
let delimiter = ';';
|
|
|
|
const delimiterRe = /\s*delimiter\s+(\S+)[^\S\r\n]*(?:\r?\n|\r)/yi;
|
|
|
|
|
|
|
|
function begins(str) {
|
|
|
|
let j;
|
|
|
|
for (j = 0; j < str.length; j++)
|
|
|
|
if (sql[i + j] != str[j])
|
|
|
|
return false;
|
|
|
|
i += j;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < sql.length;) {
|
|
|
|
stmtStart = i;
|
|
|
|
|
|
|
|
delimiterRe.lastIndex = i;
|
|
|
|
const match = sql.match(delimiterRe);
|
|
|
|
if (match) {
|
|
|
|
delimiter = match[1];
|
|
|
|
i += match[0].length;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (i < sql.length) {
|
|
|
|
char = sql[i];
|
|
|
|
|
|
|
|
if (token) {
|
|
|
|
if (!escaped && begins(token.end))
|
|
|
|
token = null;
|
|
|
|
else {
|
|
|
|
escaped = !escaped && token.escape(char);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (begins(delimiter)) break;
|
|
|
|
|
|
|
|
const tok = tokenIndex.get(char);
|
|
|
|
if (tok && begins(tok.start))
|
|
|
|
token = tok;
|
|
|
|
else
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const len = i - stmtStart - delimiter.length;
|
|
|
|
stmts.push(sql.substr(stmtStart, len));
|
|
|
|
}
|
|
|
|
|
|
|
|
const len = stmts.length;
|
|
|
|
if (len > 1 && /^\s*$/.test(stmts[len - 1]))
|
|
|
|
stmts.pop();
|
|
|
|
|
|
|
|
return stmts;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-04 09:15:29 +00:00
|
|
|
const typeMap = {
|
|
|
|
events: {
|
|
|
|
name: 'EVENT',
|
|
|
|
abbr: 'EVNT',
|
|
|
|
color: 'cyan'
|
|
|
|
},
|
|
|
|
functions: {
|
|
|
|
name: 'FUNCTION',
|
|
|
|
abbr: 'FUNC',
|
|
|
|
color: 'cyan'
|
|
|
|
},
|
|
|
|
procedures: {
|
|
|
|
name: 'PROCEDURE',
|
|
|
|
abbr: 'PROC',
|
|
|
|
color: 'yellow'
|
|
|
|
},
|
|
|
|
triggers: {
|
|
|
|
name: 'TRIGGER',
|
|
|
|
abbr: 'TRIG',
|
|
|
|
color: 'blue'
|
|
|
|
},
|
|
|
|
views: {
|
|
|
|
name: 'VIEW',
|
|
|
|
abbr: 'VIEW',
|
|
|
|
color: 'magenta'
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
class Routine {
|
|
|
|
constructor(change) {
|
|
|
|
const path = change.path;
|
|
|
|
const split = path.split('/');
|
|
|
|
|
|
|
|
const schema = split[0];
|
|
|
|
const type = typeMap[split[1]];
|
|
|
|
const name = split[2];
|
|
|
|
|
|
|
|
Object.assign(this, {
|
|
|
|
path,
|
|
|
|
mark: change.mark,
|
|
|
|
type,
|
|
|
|
schema,
|
|
|
|
name,
|
|
|
|
fullName: `${schema}.${name}`,
|
|
|
|
isRoutine: ['FUNC', 'PROC'].indexOf(type.abbr) !== -1
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const tokens = {
|
|
|
|
string: {
|
|
|
|
start: '\'',
|
|
|
|
end: '\'',
|
|
|
|
escape: char => char == '\'' || char == '\\'
|
|
|
|
},
|
|
|
|
id: {
|
|
|
|
start: '`',
|
|
|
|
end: '`',
|
|
|
|
escape: char => char == '`'
|
|
|
|
},
|
|
|
|
multiComment: {
|
|
|
|
start: '/*',
|
|
|
|
end: '*/',
|
|
|
|
escape: () => false
|
|
|
|
},
|
|
|
|
singleComment: {
|
|
|
|
start: '-- ',
|
|
|
|
end: '\n',
|
|
|
|
escape: () => false
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const tokenIndex = new Map();
|
|
|
|
for (const tokenId in tokens) {
|
|
|
|
const token = tokens[tokenId];
|
|
|
|
tokenIndex.set(token.start[0], token);
|
|
|
|
}
|
|
|
|
|
2020-12-02 07:35:26 +00:00
|
|
|
module.exports = Push;
|
|
|
|
|
|
|
|
if (require.main === module)
|
|
|
|
new MyVC().run(Push);
|