cryptpad/scripts/expire-channels.js
2023-10-20 15:35:26 +01:00

47 lines
1.2 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");
var FileStorage = require('../lib/storage/file');
nThen(function (w) {
Logger.create(config, w(function (_log) {
config.log = _log;
}));
}).nThen(function (w) {
FileStorage.create(config, w(function (err, _store) {
config.store = _store;
// config.taskPath
// config.store
// config.filePath
// config.blobPath
// config.coldPath
// config.enableTaskScheduling
}));
}).nThen(function (w) {
Tasks.create(config, w(function (err, _tasks) {
if (err) {
throw err;
}
config.tasks = _tasks;
}));
}).nThen(function (w) {
config.tasks.runAll(w(function (err) {
if (err) {
// either TASK_CONCURRENCY
// or an error from tasks.list
}
}));
}).nThen(function () {
config.store.shutdown();
config.log.shutdown();
});