2017-06-14 21:59:02 +02:00
|
|
|
import fs from 'fs-extra';
|
2017-07-06 21:48:17 +02:00
|
|
|
import { JoplinDatabase } from 'lib/joplin-database.js';
|
2017-06-24 20:06:28 +02:00
|
|
|
import { DatabaseDriverNode } from 'lib/database-driver-node.js';
|
|
|
|
import { BaseModel } from 'lib/base-model.js';
|
|
|
|
import { Folder } from 'lib/models/folder.js';
|
|
|
|
import { Note } from 'lib/models/note.js';
|
2017-07-06 00:29:03 +02:00
|
|
|
import { Resource } from 'lib/models/resource.js';
|
2017-07-06 21:48:17 +02:00
|
|
|
import { Tag } from 'lib/models/tag.js';
|
|
|
|
import { NoteTag } from 'lib/models/note-tag.js';
|
2017-06-25 17:17:40 +02:00
|
|
|
import { Logger } from 'lib/logger.js';
|
2017-06-24 20:06:28 +02:00
|
|
|
import { Setting } from 'lib/models/setting.js';
|
|
|
|
import { BaseItem } from 'lib/models/base-item.js';
|
|
|
|
import { Synchronizer } from 'lib/synchronizer.js';
|
|
|
|
import { FileApi } from 'lib/file-api.js';
|
|
|
|
import { FileApiDriverMemory } from 'lib/file-api-driver-memory.js';
|
2017-07-23 16:11:44 +02:00
|
|
|
import { FileApiDriverLocal } from 'lib/file-api-driver-local.js';
|
2017-07-06 00:29:03 +02:00
|
|
|
import { FsDriverNode } from '../app/fs-driver-node.js';
|
2017-07-03 20:29:19 +02:00
|
|
|
import { time } from 'lib/time-utils.js';
|
2017-06-14 21:59:02 +02:00
|
|
|
|
2017-06-18 22:19:13 +02:00
|
|
|
let databases_ = [];
|
|
|
|
let synchronizers_ = [];
|
2017-06-14 21:59:02 +02:00
|
|
|
let fileApi_ = null;
|
2017-06-18 22:19:13 +02:00
|
|
|
let currentClient_ = 1;
|
2017-06-14 21:59:02 +02:00
|
|
|
|
2017-07-06 00:29:03 +02:00
|
|
|
const fsDriver = new FsDriverNode();
|
|
|
|
Logger.fsDriver_ = fsDriver;
|
|
|
|
Resource.fsDriver_ = fsDriver;
|
|
|
|
|
2017-07-06 21:48:17 +02:00
|
|
|
const logDir = __dirname + '/../tests/logs';
|
|
|
|
fs.mkdirpSync(logDir, 0o755);
|
|
|
|
|
2017-07-26 22:00:16 +02:00
|
|
|
const syncTargetId_ = Setting.SYNC_TARGET_MEMORY;
|
|
|
|
//const syncTargetId_ = Setting.SYNC_TARGET_FILESYSTEM;
|
|
|
|
//const syncTargetId_ = Setting.SYNC_TARGET_ONEDRIVE;
|
2017-07-23 16:11:44 +02:00
|
|
|
const syncDir = __dirname + '/../tests/sync';
|
|
|
|
|
2017-07-24 20:58:11 +02:00
|
|
|
const sleepTime = syncTargetId_ == Setting.SYNC_TARGET_FILESYSTEM ? 1001 : 200;
|
|
|
|
|
2017-06-25 17:17:40 +02:00
|
|
|
const logger = new Logger();
|
2017-07-06 21:48:17 +02:00
|
|
|
logger.addTarget('file', { path: logDir + '/log.txt' });
|
2017-06-25 17:17:40 +02:00
|
|
|
logger.setLevel(Logger.LEVEL_DEBUG);
|
|
|
|
|
2017-07-06 21:48:17 +02:00
|
|
|
BaseItem.loadClass('Note', Note);
|
|
|
|
BaseItem.loadClass('Folder', Folder);
|
|
|
|
BaseItem.loadClass('Resource', Resource);
|
|
|
|
BaseItem.loadClass('Tag', Tag);
|
|
|
|
BaseItem.loadClass('NoteTag', NoteTag);
|
|
|
|
|
2017-07-07 00:15:31 +02:00
|
|
|
Setting.setConstant('appId', 'net.cozic.joplin-cli');
|
|
|
|
Setting.setConstant('appType', 'cli');
|
|
|
|
|
2017-07-23 16:11:44 +02:00
|
|
|
function syncTargetId() {
|
2017-07-24 20:58:11 +02:00
|
|
|
return syncTargetId_;
|
2017-07-23 16:11:44 +02:00
|
|
|
}
|
|
|
|
|
2017-06-18 22:19:13 +02:00
|
|
|
function sleep(n) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
setTimeout(() => {
|
|
|
|
resolve();
|
2017-06-19 21:18:22 +02:00
|
|
|
}, Math.round(n * 1000));
|
2017-06-18 22:19:13 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-07-03 20:29:19 +02:00
|
|
|
async function switchClient(id) {
|
2017-07-24 20:58:11 +02:00
|
|
|
await time.msleep(sleepTime); // Always leave a little time so that updated_time properties don't overlap
|
2017-07-03 20:29:19 +02:00
|
|
|
await Setting.saveAll();
|
2017-06-20 21:18:19 +02:00
|
|
|
|
2017-06-18 22:19:13 +02:00
|
|
|
currentClient_ = id;
|
|
|
|
BaseModel.db_ = databases_[id];
|
|
|
|
Folder.db_ = databases_[id];
|
|
|
|
Note.db_ = databases_[id];
|
|
|
|
BaseItem.db_ = databases_[id];
|
2017-06-20 21:18:19 +02:00
|
|
|
Setting.db_ = databases_[id];
|
|
|
|
|
|
|
|
return Setting.load();
|
2017-06-18 22:19:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function clearDatabase(id = null) {
|
|
|
|
if (id === null) id = currentClient_;
|
|
|
|
|
|
|
|
let queries = [
|
|
|
|
'DELETE FROM notes',
|
|
|
|
'DELETE FROM folders',
|
2017-07-02 17:46:03 +02:00
|
|
|
'DELETE FROM resources',
|
|
|
|
'DELETE FROM tags',
|
|
|
|
'DELETE FROM note_tags',
|
2017-07-19 21:15:55 +02:00
|
|
|
|
|
|
|
'DELETE FROM deleted_items',
|
|
|
|
'DELETE FROM sync_items',
|
2017-06-18 22:19:13 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
return databases_[id].transactionExecBatch(queries);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setupDatabase(id = null) {
|
|
|
|
if (id === null) id = currentClient_;
|
|
|
|
|
|
|
|
if (databases_[id]) {
|
2017-06-19 20:58:49 +02:00
|
|
|
return clearDatabase(id).then(() => {
|
|
|
|
return Setting.load();
|
|
|
|
});
|
2017-06-14 21:59:02 +02:00
|
|
|
}
|
|
|
|
|
2017-06-18 22:19:13 +02:00
|
|
|
const filePath = __dirname + '/data/test-' + id + '.sqlite';
|
2017-06-14 21:59:02 +02:00
|
|
|
return fs.unlink(filePath).catch(() => {
|
|
|
|
// Don't care if the file doesn't exist
|
|
|
|
}).then(() => {
|
2017-07-06 21:48:17 +02:00
|
|
|
databases_[id] = new JoplinDatabase(new DatabaseDriverNode());
|
2017-06-18 22:19:13 +02:00
|
|
|
return databases_[id].open({ name: filePath }).then(() => {
|
|
|
|
BaseModel.db_ = databases_[id];
|
|
|
|
return setupDatabase(id);
|
2017-06-14 21:59:02 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-18 22:19:13 +02:00
|
|
|
async function setupDatabaseAndSynchronizer(id = null) {
|
|
|
|
if (id === null) id = currentClient_;
|
2017-06-18 01:49:52 +02:00
|
|
|
|
2017-06-18 22:19:13 +02:00
|
|
|
await setupDatabase(id);
|
|
|
|
|
|
|
|
if (!synchronizers_[id]) {
|
2017-07-07 00:15:31 +02:00
|
|
|
synchronizers_[id] = new Synchronizer(db(id), fileApi(), Setting.value('appType'));
|
2017-06-25 17:17:40 +02:00
|
|
|
synchronizers_[id].setLogger(logger);
|
2017-06-18 01:49:52 +02:00
|
|
|
}
|
2017-06-18 22:19:13 +02:00
|
|
|
|
2017-07-24 20:58:11 +02:00
|
|
|
if (syncTargetId_ == Setting.SYNC_TARGET_FILESYSTEM) {
|
2017-07-23 16:11:44 +02:00
|
|
|
fs.removeSync(syncDir)
|
|
|
|
fs.mkdirpSync(syncDir, 0o755);
|
|
|
|
} else {
|
|
|
|
await fileApi().format();
|
|
|
|
}
|
2017-06-14 21:59:02 +02:00
|
|
|
}
|
|
|
|
|
2017-06-18 22:19:13 +02:00
|
|
|
function db(id = null) {
|
|
|
|
if (id === null) id = currentClient_;
|
|
|
|
return databases_[id];
|
2017-06-14 21:59:02 +02:00
|
|
|
}
|
|
|
|
|
2017-06-18 22:19:13 +02:00
|
|
|
function synchronizer(id = null) {
|
|
|
|
if (id === null) id = currentClient_;
|
|
|
|
return synchronizers_[id];
|
2017-06-14 21:59:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function fileApi() {
|
2017-06-18 22:19:13 +02:00
|
|
|
if (fileApi_) return fileApi_;
|
|
|
|
|
2017-07-24 20:58:11 +02:00
|
|
|
if (syncTargetId_ == Setting.SYNC_TARGET_FILESYSTEM) {
|
2017-07-23 16:11:44 +02:00
|
|
|
fs.removeSync(syncDir)
|
|
|
|
fs.mkdirpSync(syncDir, 0o755);
|
|
|
|
fileApi_ = new FileApi(syncDir, new FileApiDriverLocal());
|
2017-07-26 22:00:16 +02:00
|
|
|
} else if (syncTargetId_ == Setting.SYNC_TARGET_MEMORY) {
|
2017-07-23 16:11:44 +02:00
|
|
|
fileApi_ = new FileApi('/root', new FileApiDriverMemory());
|
|
|
|
fileApi_.setLogger(logger);
|
2017-07-24 20:58:11 +02:00
|
|
|
}
|
2017-07-26 22:00:16 +02:00
|
|
|
// } else if (syncTargetId == Setting.SYNC_TARGET_ONEDRIVE) {
|
|
|
|
// let auth = require('./onedrive-auth.json');
|
|
|
|
// if (!auth) {
|
|
|
|
// const oneDriveApiUtils = new OneDriveApiNodeUtils(oneDriveApi);
|
|
|
|
// auth = await oneDriveApiUtils.oauthDance();
|
|
|
|
// fs.writeFileSync('./onedrive-auth.json', JSON.stringify(auth));
|
|
|
|
// process.exit(1);
|
|
|
|
// } else {
|
|
|
|
// auth = JSON.parse(auth);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// // const oneDriveApiUtils = new OneDriveApiNodeUtils(reg.oneDriveApi());
|
|
|
|
// // const auth = await oneDriveApiUtils.oauthDance(this);
|
|
|
|
// // Setting.setValue('sync.3.auth', auth ? JSON.stringify(auth) : null);
|
|
|
|
// // if (!auth) return;
|
|
|
|
// }
|
2017-07-24 20:58:11 +02:00
|
|
|
|
|
|
|
fileApi_.setLogger(logger);
|
|
|
|
fileApi_.setSyncTargetId(syncTargetId_);
|
|
|
|
return fileApi_;
|
2017-06-14 21:59:02 +02:00
|
|
|
}
|
|
|
|
|
2017-07-23 16:11:44 +02:00
|
|
|
export { setupDatabase, setupDatabaseAndSynchronizer, db, synchronizer, fileApi, sleep, clearDatabase, switchClient, syncTargetId };
|