mirror of https://github.com/xwiki-labs/cryptpad
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
// SPDX-FileCopyrightText: 2023 XWiki CryptPad Team <contact@cryptpad.org> and contributors
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
var nThen = require("nthen");
|
|
var Tasks = require("../../lib/storage/tasks");
|
|
var Logger = require("../../lib/log");
|
|
|
|
var config = require("../../lib/load-config");
|
|
|
|
// this isn't strictly necessary for what we want to do
|
|
// but the API requires it, and I don't feel like changing that
|
|
// --ansuz
|
|
var FileStorage = require("../../lib/storage/file");
|
|
var tasks;
|
|
nThen(function (w) {
|
|
Logger.create(config, w(function (_log) {
|
|
config.log = _log;
|
|
}));
|
|
}).nThen(function (w) {
|
|
FileStorage.create(config, w(function (err, _store) {
|
|
if (err) { throw err; }
|
|
config.store = _store;
|
|
}));
|
|
}).nThen(function (w) {
|
|
Tasks.create(config, w(function (err, _tasks) {
|
|
if (err) { throw err; }
|
|
tasks = config.tasks = _tasks;
|
|
}));
|
|
}).nThen(function (w) {
|
|
tasks.migrate(w(function (err) {
|
|
if (err) {
|
|
throw err;
|
|
}
|
|
}));
|
|
}).nThen(function () {
|
|
config.store.shutdown();
|
|
config.log.shutdown();
|
|
});
|