mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
95 lines
2.4 KiB
JavaScript
95 lines
2.4 KiB
JavaScript
const BaseSyncTarget = require('./BaseSyncTarget').default;
|
|
const { _ } = require('./locale');
|
|
const Setting = require('./models/Setting').default;
|
|
const { FileApi } = require('./file-api.js');
|
|
const Synchronizer = require('./Synchronizer').default;
|
|
const WebDavApi = require('./WebDavApi');
|
|
const { FileApiDriverWebDav } = require('./file-api-driver-webdav');
|
|
const checkProviderIsSupported = require('./utils/webDAVUtils').default;
|
|
|
|
class SyncTargetWebDAV extends BaseSyncTarget {
|
|
static id() {
|
|
return 6;
|
|
}
|
|
|
|
static supportsConfigCheck() {
|
|
return true;
|
|
}
|
|
|
|
static targetName() {
|
|
return 'webdav';
|
|
}
|
|
|
|
static label() {
|
|
return _('WebDAV');
|
|
}
|
|
|
|
static description() {
|
|
return 'The WebDAV protocol allows users to create, change and move documents on a server. There are many WebDAV compatible servers, including SeaFile, Nginx or Apache.';
|
|
}
|
|
|
|
async isAuthenticated() {
|
|
return true;
|
|
}
|
|
|
|
static requiresPassword() {
|
|
return true;
|
|
}
|
|
|
|
static async newFileApi_(syncTargetId, options) {
|
|
const apiOptions = {
|
|
baseUrl: () => options.path(),
|
|
username: () => options.username(),
|
|
password: () => options.password(),
|
|
ignoreTlsErrors: () => options.ignoreTlsErrors(),
|
|
};
|
|
|
|
const api = new WebDavApi(apiOptions);
|
|
const driver = new FileApiDriverWebDav(api);
|
|
const fileApi = new FileApi('', driver);
|
|
fileApi.setSyncTargetId(syncTargetId);
|
|
return fileApi;
|
|
}
|
|
|
|
static async checkConfig(options) {
|
|
const fileApi = await SyncTargetWebDAV.newFileApi_(SyncTargetWebDAV.id(), options);
|
|
fileApi.requestRepeatCount_ = 0;
|
|
|
|
const output = {
|
|
ok: false,
|
|
errorMessage: '',
|
|
};
|
|
|
|
try {
|
|
checkProviderIsSupported(options.path());
|
|
const result = await fileApi.stat('');
|
|
if (!result) throw new Error(`WebDAV directory not found: ${options.path()}`);
|
|
output.ok = true;
|
|
} catch (error) {
|
|
output.errorMessage = error.message;
|
|
if (error.code) output.errorMessage += ` (Code ${error.code})`;
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
async initFileApi() {
|
|
const fileApi = await SyncTargetWebDAV.newFileApi_(SyncTargetWebDAV.id(), {
|
|
path: () => Setting.value('sync.6.path'),
|
|
username: () => Setting.value('sync.6.username'),
|
|
password: () => Setting.value('sync.6.password'),
|
|
ignoreTlsErrors: () => Setting.value('net.ignoreTlsErrors'),
|
|
});
|
|
|
|
fileApi.setLogger(this.logger());
|
|
|
|
return fileApi;
|
|
}
|
|
|
|
async initSynchronizer() {
|
|
return new Synchronizer(this.db(), await this.fileApi(), Setting.value('appType'));
|
|
}
|
|
}
|
|
|
|
module.exports = SyncTargetWebDAV;
|