mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-14 03:32:06 +00:00
143 lines
4.7 KiB
JavaScript
143 lines
4.7 KiB
JavaScript
var db = require("../database");
|
|
import Promise from 'bluebird';
|
|
|
|
const LOGGER = require('@calzoneman/jsli')('database/update');
|
|
|
|
const DB_VERSION = 12;
|
|
var hasUpdates = [];
|
|
|
|
module.exports.checkVersion = function () {
|
|
db.query("SELECT `key`,`value` FROM `meta` WHERE `key`=?", ["db_version"], function (err, rows) {
|
|
if (err) {
|
|
return;
|
|
}
|
|
|
|
if (rows.length === 0) {
|
|
LOGGER.warn("db_version key missing from database. Setting " +
|
|
"db_version=" + DB_VERSION);
|
|
db.query("INSERT INTO `meta` (`key`, `value`) VALUES ('db_version', ?)",
|
|
[DB_VERSION],
|
|
function (_err) {
|
|
});
|
|
} else {
|
|
var v = parseInt(rows[0].value);
|
|
if (v >= DB_VERSION) {
|
|
return;
|
|
}
|
|
var next = function () {
|
|
hasUpdates.push(v);
|
|
LOGGER.info("Updated database to version " + v);
|
|
if (v < DB_VERSION) {
|
|
update(v++, next);
|
|
} else {
|
|
db.query("UPDATE `meta` SET `value`=? WHERE `key`='db_version'",
|
|
[DB_VERSION]);
|
|
}
|
|
};
|
|
update(v++, next);
|
|
}
|
|
});
|
|
};
|
|
|
|
function update(version, cb) {
|
|
if (version < 7) {
|
|
LOGGER.error('Cannot auto-upgrade: db_version 4 is too old!');
|
|
process.exit(1);
|
|
} else if (version < 8) {
|
|
addUsernameDedupeColumn(cb);
|
|
} else if (version < 9) {
|
|
populateUsernameDedupeColumn(cb);
|
|
} else if (version < 10) {
|
|
addChannelLastLoadedColumn(cb);
|
|
} else if (version < 11) {
|
|
addChannelOwnerLastSeenColumn(cb);
|
|
} else if (version < 12) {
|
|
addUserInactiveColumn(cb);
|
|
}
|
|
}
|
|
|
|
function addUsernameDedupeColumn(cb) {
|
|
LOGGER.info("Adding name_dedupe column on the users table");
|
|
db.query("ALTER TABLE users ADD COLUMN name_dedupe VARCHAR(20) UNIQUE DEFAULT NULL", (error) => {
|
|
if (error) {
|
|
LOGGER.error(`Unable to add name_dedupe column: ${error}`);
|
|
} else {
|
|
cb();
|
|
}
|
|
});
|
|
}
|
|
|
|
function populateUsernameDedupeColumn(cb) {
|
|
const dbUsers = require("./accounts");
|
|
LOGGER.info("Populating name_dedupe column on the users table");
|
|
db.query("SELECT id, name FROM users WHERE name_dedupe IS NULL", (err, rows) => {
|
|
if (err) {
|
|
LOGGER.error("Unable to perform database upgrade to add dedupe column: " + err);
|
|
return;
|
|
}
|
|
|
|
Promise.map(rows, row => {
|
|
const dedupedName = dbUsers.dedupeUsername(row.name);
|
|
LOGGER.info(`Deduping [${row.name}] as [${dedupedName}]`);
|
|
return db.getDB().knex.raw("UPDATE users SET name_dedupe = ? WHERE id = ?", [dedupedName, row.id])
|
|
.catch(error => {
|
|
if (error.errno === 1062) {
|
|
LOGGER.info(`WARNING: could not set name_dedupe for [${row.name}] due to an existing row for [${dedupedName}]`);
|
|
} else {
|
|
throw error;
|
|
}
|
|
});
|
|
}, { concurrency: 10 }).then(() => {
|
|
cb();
|
|
}).catch(error => {
|
|
LOGGER.error("Unable to perform database upgrade to add dedupe column: " + (error.stack ? error.stack : error));
|
|
});
|
|
});
|
|
}
|
|
|
|
function addChannelLastLoadedColumn(cb) {
|
|
db.query("ALTER TABLE channels ADD COLUMN last_loaded TIMESTAMP NOT NULL DEFAULT 0", error => {
|
|
if (error) {
|
|
LOGGER.error(`Failed to add last_loaded column: ${error}`);
|
|
return;
|
|
}
|
|
|
|
db.query("ALTER TABLE channels ADD INDEX i_last_loaded (last_loaded)", error => {
|
|
if (error) {
|
|
LOGGER.error(`Failed to add index on last_loaded column: ${error}`);
|
|
return;
|
|
}
|
|
|
|
cb();
|
|
});
|
|
});
|
|
}
|
|
|
|
function addChannelOwnerLastSeenColumn(cb) {
|
|
db.query("ALTER TABLE channels ADD COLUMN owner_last_seen TIMESTAMP NOT NULL DEFAULT 0", error => {
|
|
if (error) {
|
|
LOGGER.error(`Failed to add owner_last_seen column: ${error}`);
|
|
return;
|
|
}
|
|
|
|
db.query("ALTER TABLE channels ADD INDEX i_owner_last_seen (owner_last_seen)", error => {
|
|
if (error) {
|
|
LOGGER.error(`Failed to add index on owner_last_seen column: ${error}`);
|
|
return;
|
|
}
|
|
|
|
cb();
|
|
});
|
|
});
|
|
}
|
|
|
|
function addUserInactiveColumn(cb) {
|
|
db.query("ALTER TABLE users ADD COLUMN inactive BOOLEAN DEFAULT FALSE", error => {
|
|
if (error) {
|
|
LOGGER.error(`Failed to add inactive column: ${error}`);
|
|
cb(error);
|
|
} else {
|
|
cb();
|
|
}
|
|
});
|
|
}
|