mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
115 lines
3.0 KiB
JavaScript
115 lines
3.0 KiB
JavaScript
const BaseSyncTarget = require('./BaseSyncTarget.js');
|
|
const { _ } = require('./locale');
|
|
const { OneDriveApi } = require('./onedrive-api.js');
|
|
const Setting = require('./models/Setting').default;
|
|
const { parameters } = require('./parameters.js');
|
|
const { FileApi } = require('./file-api.js');
|
|
const Synchronizer = require('./Synchronizer').default;
|
|
const { FileApiDriverOneDrive } = require('./file-api-driver-onedrive.js');
|
|
|
|
class SyncTargetOneDrive extends BaseSyncTarget {
|
|
static id() {
|
|
return 3;
|
|
}
|
|
|
|
constructor(db, options = null) {
|
|
super(db, options);
|
|
this.api_ = null;
|
|
}
|
|
|
|
static targetName() {
|
|
return 'onedrive';
|
|
}
|
|
|
|
static label() {
|
|
return _('OneDrive');
|
|
}
|
|
|
|
async isAuthenticated() {
|
|
return !!this.api().auth();
|
|
}
|
|
|
|
syncTargetId() {
|
|
return SyncTargetOneDrive.id();
|
|
}
|
|
|
|
isTesting() {
|
|
const p = parameters();
|
|
return !!p.oneDriveTest;
|
|
}
|
|
|
|
oneDriveParameters() {
|
|
const p = parameters();
|
|
if (p.oneDriveTest) return p.oneDriveTest;
|
|
return p.oneDrive;
|
|
}
|
|
|
|
authRouteName() {
|
|
return 'OneDriveLogin';
|
|
}
|
|
|
|
api() {
|
|
if (this.isTesting()) {
|
|
return this.fileApi_.driver().api();
|
|
}
|
|
|
|
if (this.api_) return this.api_;
|
|
|
|
const isPublic = Setting.value('appType') != 'cli' && Setting.value('appType') != 'desktop';
|
|
|
|
this.api_ = new OneDriveApi(this.oneDriveParameters().id, this.oneDriveParameters().secret, isPublic);
|
|
this.api_.setLogger(this.logger());
|
|
|
|
this.api_.on('authRefreshed', a => {
|
|
this.logger().info('Saving updated OneDrive auth.');
|
|
Setting.setValue(`sync.${this.syncTargetId()}.auth`, a ? JSON.stringify(a) : null);
|
|
});
|
|
|
|
let auth = Setting.value(`sync.${this.syncTargetId()}.auth`);
|
|
if (auth) {
|
|
try {
|
|
auth = JSON.parse(auth);
|
|
} catch (error) {
|
|
this.logger().warn('Could not parse OneDrive auth token');
|
|
this.logger().warn(error);
|
|
auth = null;
|
|
}
|
|
|
|
this.api_.setAuth(auth);
|
|
}
|
|
|
|
return this.api_;
|
|
}
|
|
|
|
async initFileApi() {
|
|
let context = Setting.value(`sync.${this.syncTargetId()}.context`);
|
|
context = context === '' ? null : JSON.parse(context);
|
|
let accountProperties = context ? context.accountProperties : null;
|
|
if (!accountProperties) {
|
|
accountProperties = await this.api_.execAccountPropertiesRequest();
|
|
context ? context.accountProperties = accountProperties : context = { accountProperties: accountProperties };
|
|
Setting.setValue(`sync.${this.syncTargetId()}.context`, JSON.stringify(context));
|
|
}
|
|
this.api_.setAccountProperties(accountProperties);
|
|
const appDir = await this.api().appDirectory();
|
|
const fileApi = new FileApi(appDir, new FileApiDriverOneDrive(this.api()));
|
|
fileApi.setSyncTargetId(this.syncTargetId());
|
|
fileApi.setLogger(this.logger());
|
|
return fileApi;
|
|
}
|
|
|
|
async initSynchronizer() {
|
|
try {
|
|
if (!(await this.isAuthenticated())) throw new Error('User is not authentified');
|
|
return new Synchronizer(this.db(), await this.fileApi(), Setting.value('appType'));
|
|
} catch (error) {
|
|
BaseSyncTarget.dispatch({ type: 'SYNC_REPORT_UPDATE', report: { errors: [error] } });
|
|
throw error;
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|
|
module.exports = SyncTargetOneDrive;
|