Use coroutine() for Zotero.Schema::_updateSchema()

This commit is contained in:
Dan Stillman 2017-01-13 21:16:47 -05:00
parent 56d9372146
commit 7e30afb2a5

View file

@ -1418,26 +1418,24 @@ Zotero.Schema = new function(){
} }
function _updateSchema(schema){ /**
return Zotero.Promise.all([Zotero.Schema.getDBVersion(schema), _getSchemaSQLVersion(schema)]) * Requires a transaction
.spread(function (dbVersion, schemaVersion) { */
if (dbVersion == schemaVersion) { var _updateSchema = Zotero.Promise.coroutine(function* (schema) {
return false; var [dbVersion, schemaVersion] = yield Zotero.Promise.all(
} [Zotero.Schema.getDBVersion(schema), _getSchemaSQLVersion(schema)]
else if (dbVersion < schemaVersion) { );
return _getSchemaSQL(schema) if (dbVersion == schemaVersion) {
.then(function (sql) { return false;
return Zotero.DB.executeSQLFile(sql); }
}) if (dbVersion > schemaVersion) {
.then(function () {
return _updateDBVersion(schema, schemaVersion);
});
}
throw new Error("Zotero '" + schema + "' DB version (" + dbVersion throw new Error("Zotero '" + schema + "' DB version (" + dbVersion
+ ") is newer than SQL file (" + schemaVersion + ")"); + ") is newer than SQL file (" + schemaVersion + ")");
}); }
} let sql = yield _getSchemaSQL(schema);
yield Zotero.DB.executeSQLFile(sql);
return _updateDBVersion(schema, schemaVersion);
});
var _updateCompatibility = Zotero.Promise.coroutine(function* (version) { var _updateCompatibility = Zotero.Promise.coroutine(function* (version) {