2018-01-21 19:01:37 +02:00
|
|
|
const { Logger } = require('lib/logger.js');
|
|
|
|
const { shim } = require('lib/shim.js');
|
|
|
|
const parseXmlString = require('xml2js').parseString;
|
|
|
|
const JoplinError = require('lib/JoplinError');
|
2018-01-25 21:01:14 +02:00
|
|
|
const URL = require('url-parse');
|
2018-01-25 21:01:14 +02:00
|
|
|
const { rtrimSlashes, ltrimSlashes } = require('lib/path-utils.js');
|
2018-01-25 21:01:14 +02:00
|
|
|
const base64 = require('base-64');
|
2018-01-21 19:01:37 +02:00
|
|
|
|
|
|
|
// Note that the d: namespace (the DAV namespace) is specific to Nextcloud. The RFC for example uses "D:" however
|
|
|
|
// we make all the tags and attributes lowercase so we handle both the Nextcloud style and RFC. Hopefully other
|
|
|
|
// implementations use the same namespaces. If not, extra processing can be done in `nameProcessor`, for
|
|
|
|
// example to convert a custom namespace to "d:" so that it can be used by the rest of the code.
|
|
|
|
// In general, we should only deal with things in "d:", which is the standard DAV namespace.
|
|
|
|
|
|
|
|
class WebDavApi {
|
|
|
|
|
2018-01-25 21:01:14 +02:00
|
|
|
constructor(options) {
|
2018-01-21 19:01:37 +02:00
|
|
|
this.logger_ = new Logger();
|
|
|
|
this.options_ = options;
|
|
|
|
}
|
|
|
|
|
|
|
|
setLogger(l) {
|
|
|
|
this.logger_ = l;
|
|
|
|
}
|
|
|
|
|
|
|
|
logger() {
|
|
|
|
return this.logger_;
|
|
|
|
}
|
|
|
|
|
|
|
|
authToken() {
|
2018-01-25 21:01:14 +02:00
|
|
|
if (!this.options_.username() || !this.options_.password()) return null;
|
2018-01-25 21:01:14 +02:00
|
|
|
return base64.encode(this.options_.username() + ':' + this.options_.password());
|
2018-01-21 19:01:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
baseUrl() {
|
2018-01-25 21:01:14 +02:00
|
|
|
return this.options_.baseUrl();
|
|
|
|
}
|
|
|
|
|
|
|
|
relativeBaseUrl() {
|
2018-01-25 21:01:14 +02:00
|
|
|
const url = new URL(this.baseUrl());
|
|
|
|
return url.pathname + url.query;
|
2018-01-21 19:01:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async xmlToJson(xml) {
|
2018-02-02 01:40:05 +02:00
|
|
|
let davNamespaces = []; // Yes, there can be more than one... xmlns:a="DAV:" xmlns:D="DAV:"
|
2018-01-21 19:01:37 +02:00
|
|
|
|
|
|
|
const nameProcessor = (name) => {
|
2018-02-02 01:40:05 +02:00
|
|
|
if (name.indexOf('xmlns:') !== 0) {
|
|
|
|
// Check if the current name is within the DAV namespace. If it is, normalise it
|
|
|
|
// by moving it to the "d:" namespace, which is what all the functions are using.
|
|
|
|
const p = name.split(':');
|
|
|
|
if (p.length == 2) {
|
|
|
|
const ns = p[0];
|
|
|
|
if (davNamespaces.indexOf(ns) >= 0) {
|
|
|
|
name = 'd:' + p[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-21 19:01:37 +02:00
|
|
|
return name.toLowerCase();
|
|
|
|
};
|
|
|
|
|
2018-02-02 01:40:05 +02:00
|
|
|
const attrValueProcessor = (value, name) => {
|
|
|
|
if (value.toLowerCase() === 'dav:') {
|
|
|
|
const p = name.split(':');
|
|
|
|
davNamespaces.push(p[p.length - 1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-21 19:01:37 +02:00
|
|
|
const options = {
|
|
|
|
tagNameProcessors: [nameProcessor],
|
|
|
|
attrNameProcessors: [nameProcessor],
|
2018-02-02 01:40:05 +02:00
|
|
|
attrValueProcessors: [attrValueProcessor]
|
2018-01-21 19:01:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
parseXmlString(xml, options, (error, result) => {
|
|
|
|
if (error) {
|
2018-01-23 22:10:20 +02:00
|
|
|
resolve(null); // Error handled by caller which will display the XML text (or plain text) if null is returned from this function
|
2018-01-21 19:01:37 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
resolve(result);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-01-25 21:01:14 +02:00
|
|
|
valueFromJson(json, keys, type) {
|
2018-01-21 19:01:37 +02:00
|
|
|
let output = json;
|
2018-01-25 21:01:14 +02:00
|
|
|
|
2018-01-21 19:01:37 +02:00
|
|
|
for (let i = 0; i < keys.length; i++) {
|
|
|
|
const key = keys[i];
|
2018-01-25 21:01:14 +02:00
|
|
|
|
|
|
|
// console.info(key, typeof key, typeof output, typeof output === 'object' && (key in output), Array.isArray(output));
|
|
|
|
|
|
|
|
if (typeof key === 'number' && !Array.isArray(output)) return null;
|
|
|
|
if (typeof key === 'string' && (typeof output !== 'object' || !(key in output))) return null;
|
2018-01-21 19:01:37 +02:00
|
|
|
output = output[key];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type === 'string') {
|
2018-02-02 01:40:05 +02:00
|
|
|
// If the XML has not attribute the value is directly a string
|
|
|
|
// If the XML node has attributes, the value is under "_".
|
|
|
|
// Eg for this XML, the string will be under {"_":"Thu, 01 Feb 2018 17:24:05 GMT"}:
|
|
|
|
// <a:getlastmodified b:dt="dateTime.rfc1123">Thu, 01 Feb 2018 17:24:05 GMT</a:getlastmodified>
|
|
|
|
// For this XML, the value will be "Thu, 01 Feb 2018 17:24:05 GMT"
|
|
|
|
// <a:getlastmodified>Thu, 01 Feb 2018 17:24:05 GMT</a:getlastmodified>
|
|
|
|
|
|
|
|
if (typeof output === 'object' && '_' in output) output = output['_'];
|
2018-01-21 19:01:37 +02:00
|
|
|
if (typeof output !== 'string') return null;
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type === 'object') {
|
|
|
|
if (!Array.isArray(output) && typeof output === 'object') return output;
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-01-25 21:01:14 +02:00
|
|
|
if (type === 'array') {
|
|
|
|
return Array.isArray(output) ? output : null;
|
|
|
|
}
|
|
|
|
|
2018-01-21 19:01:37 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
stringFromJson(json, keys) {
|
|
|
|
return this.valueFromJson(json, keys, 'string');
|
|
|
|
}
|
|
|
|
|
|
|
|
objectFromJson(json, keys) {
|
|
|
|
return this.valueFromJson(json, keys, 'object');
|
|
|
|
}
|
|
|
|
|
2018-01-25 21:01:14 +02:00
|
|
|
arrayFromJson(json, keys) {
|
|
|
|
return this.valueFromJson(json, keys, 'array');
|
|
|
|
}
|
|
|
|
|
2018-02-14 21:08:07 +02:00
|
|
|
resourcePropByName(resource, outputType, propName) {
|
|
|
|
const propStats = resource['d:propstat'];
|
|
|
|
let output = null;
|
|
|
|
if (!Array.isArray(propStats)) throw new Error('Missing d:propstat property');
|
|
|
|
for (let i = 0; i < propStats.length; i++) {
|
|
|
|
const props = propStats[i]['d:prop'];
|
|
|
|
if (!Array.isArray(props) || !props.length) continue;
|
|
|
|
const prop = props[0];
|
|
|
|
if (Array.isArray(prop[propName])) {
|
|
|
|
output = prop[propName];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outputType === 'string') {
|
|
|
|
// If the XML has not attribute the value is directly a string
|
|
|
|
// If the XML node has attributes, the value is under "_".
|
|
|
|
// Eg for this XML, the string will be under {"_":"Thu, 01 Feb 2018 17:24:05 GMT"}:
|
|
|
|
// <a:getlastmodified b:dt="dateTime.rfc1123">Thu, 01 Feb 2018 17:24:05 GMT</a:getlastmodified>
|
|
|
|
// For this XML, the value will be "Thu, 01 Feb 2018 17:24:05 GMT"
|
|
|
|
// <a:getlastmodified>Thu, 01 Feb 2018 17:24:05 GMT</a:getlastmodified>
|
|
|
|
|
|
|
|
output = output[0];
|
|
|
|
|
|
|
|
if (typeof output === 'object' && '_' in output) output = output['_'];
|
|
|
|
if (typeof output !== 'string') return null;
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outputType === 'array') {
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new Error('Invalid output type: ' + outputType);
|
|
|
|
}
|
|
|
|
|
2018-01-29 22:51:14 +02:00
|
|
|
async execPropFind(path, depth, fields = null, options = null) {
|
2018-01-21 19:01:37 +02:00
|
|
|
if (fields === null) fields = ['d:getlastmodified'];
|
|
|
|
|
|
|
|
let fieldsXml = '';
|
|
|
|
for (let i = 0; i < fields.length; i++) {
|
|
|
|
fieldsXml += '<' + fields[i] + '/>';
|
|
|
|
}
|
|
|
|
|
|
|
|
// To find all available properties:
|
|
|
|
//
|
2018-01-23 22:10:20 +02:00
|
|
|
// const body=`<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
// <propfind xmlns="DAV:">
|
|
|
|
// <propname/>
|
|
|
|
// </propfind>`;
|
|
|
|
|
|
|
|
const body = `<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<d:propfind xmlns:d="DAV:">
|
|
|
|
<d:prop xmlns:oc="http://owncloud.org/ns">
|
|
|
|
` + fieldsXml + `
|
|
|
|
</d:prop>
|
|
|
|
</d:propfind>`;
|
2018-01-21 19:01:37 +02:00
|
|
|
|
2018-01-29 22:51:14 +02:00
|
|
|
return this.exec('PROPFIND', path, body, { 'Depth': depth }, options);
|
2018-01-21 19:01:37 +02:00
|
|
|
}
|
|
|
|
|
2018-02-12 20:15:22 +02:00
|
|
|
requestToCurl_(url, options) {
|
|
|
|
let output = [];
|
|
|
|
output.push('curl');
|
|
|
|
if (options.method) output.push('-X ' + options.method);
|
|
|
|
if (options.headers) {
|
|
|
|
for (let n in options.headers) {
|
|
|
|
if (!options.headers.hasOwnProperty(n)) continue;
|
|
|
|
output.push('-H ' + '"' + n + ': ' + options.headers[n] + '"');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (options.body) output.push('--data ' + "'" + options.body + "'");
|
|
|
|
output.push(url);
|
|
|
|
|
|
|
|
return output.join(' ');
|
|
|
|
}
|
|
|
|
|
2018-01-21 19:01:37 +02:00
|
|
|
// curl -u admin:123456 'http://nextcloud.local/remote.php/dav/files/admin/' -X PROPFIND --data '<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
// <d:propfind xmlns:d="DAV:">
|
|
|
|
// <d:prop xmlns:oc="http://owncloud.org/ns">
|
|
|
|
// <d:getlastmodified/>
|
|
|
|
// </d:prop>
|
|
|
|
// </d:propfind>'
|
|
|
|
|
2018-01-23 22:10:20 +02:00
|
|
|
async exec(method, path = '', body = null, headers = null, options = null) {
|
2018-01-21 19:01:37 +02:00
|
|
|
if (headers === null) headers = {};
|
2018-01-23 22:10:20 +02:00
|
|
|
if (options === null) options = {};
|
|
|
|
if (!options.responseFormat) options.responseFormat = 'json';
|
|
|
|
if (!options.target) options.target = 'string';
|
2018-01-21 19:01:37 +02:00
|
|
|
|
|
|
|
const authToken = this.authToken();
|
|
|
|
|
|
|
|
if (authToken) headers['Authorization'] = 'Basic ' + authToken;
|
|
|
|
|
2018-02-18 23:14:59 +02:00
|
|
|
// On iOS, the network lib appends a If-None-Match header to PROPFIND calls, which is kind of correct because
|
|
|
|
// the call is idempotent and thus could be cached. According to RFC-7232 though only GET and HEAD should have
|
|
|
|
// this header for caching purposes. It makes no mention of PROPFIND.
|
|
|
|
// So possibly because of this, Seafile (and maybe other WebDAV implementations) responds with a "412 Precondition Failed"
|
|
|
|
// error when this header is present for PROPFIND call on existing resources. This is also kind of correct because there is a resource
|
|
|
|
// with this eTag and since this is neither a GET nor HEAD call, it is supposed to respond with 412 if the resource is present.
|
|
|
|
// The "solution", an ugly one, is to send a purposely invalid string as eTag, which will bypass the If-None-Match check - Seafile
|
|
|
|
// finds out that no resource has this ID and simply sends the requested data.
|
|
|
|
// Also add a random value to make sure the eTag is unique for each call.
|
2018-02-19 20:37:44 +02:00
|
|
|
if (['GET', 'HEAD'].indexOf(method) < 0) headers['If-None-Match'] = 'JoplinIgnore-' + Math.floor(Math.random() * 100000);
|
2018-02-18 23:14:59 +02:00
|
|
|
|
2018-01-21 19:01:37 +02:00
|
|
|
const fetchOptions = {};
|
|
|
|
fetchOptions.headers = headers;
|
|
|
|
fetchOptions.method = method;
|
2018-01-23 22:10:20 +02:00
|
|
|
if (options.path) fetchOptions.path = options.path;
|
2018-01-21 19:01:37 +02:00
|
|
|
if (body) fetchOptions.body = body;
|
|
|
|
|
|
|
|
const url = this.baseUrl() + '/' + path;
|
|
|
|
|
2018-01-23 22:10:20 +02:00
|
|
|
let response = null;
|
2018-01-21 19:01:37 +02:00
|
|
|
|
2018-02-06 20:59:36 +02:00
|
|
|
// console.info('WebDAV Call', method + ' ' + url, headers, options);
|
2018-02-12 20:15:22 +02:00
|
|
|
// console.info(this.requestToCurl_(url, fetchOptions));
|
2018-01-30 22:10:36 +02:00
|
|
|
|
2018-01-23 22:10:20 +02:00
|
|
|
if (options.source == 'file' && (method == 'POST' || method == 'PUT')) {
|
2018-02-15 20:33:08 +02:00
|
|
|
if (fetchOptions.path) {
|
|
|
|
const fileStat = await shim.fsDriver().stat(fetchOptions.path);
|
|
|
|
if (fileStat) fetchOptions.headers['Content-Length'] = fileStat.size + '';
|
|
|
|
}
|
2018-01-23 22:10:20 +02:00
|
|
|
response = await shim.uploadBlob(url, fetchOptions);
|
|
|
|
} else if (options.target == 'string') {
|
2018-02-15 20:33:08 +02:00
|
|
|
if (typeof body === 'string') fetchOptions.headers['Content-Length'] = shim.stringByteLength(body) + '';
|
2018-01-23 22:10:20 +02:00
|
|
|
response = await shim.fetch(url, fetchOptions);
|
|
|
|
} else { // file
|
|
|
|
response = await shim.fetchBlob(url, fetchOptions);
|
2018-01-21 19:01:37 +02:00
|
|
|
}
|
|
|
|
|
2018-01-23 22:10:20 +02:00
|
|
|
const responseText = await response.text();
|
2018-01-21 19:01:37 +02:00
|
|
|
|
2018-02-06 20:59:36 +02:00
|
|
|
// console.info('WebDAV Response', responseText);
|
|
|
|
|
2018-02-18 23:14:59 +02:00
|
|
|
// Creates an error object with as much data as possible as it will appear in the log, which will make debugging easier
|
|
|
|
const newError = (message, code = 0) => {
|
|
|
|
// Gives a shorter response for error messages. Useful for cases where a full HTML page is accidentally loaded instead of
|
|
|
|
// JSON. That way the error message will still show there's a problem but without filling up the log or screen.
|
|
|
|
const shortResponseText = (responseText + '').substr(0, 1024);
|
|
|
|
return new JoplinError(method + ' ' + path + ': ' + message + ' (' + code + '): ' + shortResponseText, code);
|
2018-01-25 21:01:14 +02:00
|
|
|
}
|
|
|
|
|
2018-01-23 22:10:20 +02:00
|
|
|
let responseJson_ = null;
|
|
|
|
const loadResponseJson = async () => {
|
|
|
|
if (!responseText) return null;
|
|
|
|
if (responseJson_) return responseJson_;
|
|
|
|
responseJson_ = await this.xmlToJson(responseText);
|
2018-02-19 20:37:44 +02:00
|
|
|
if (!responseJson_) throw newError('Cannot parse XML response', response.status);
|
2018-01-23 22:10:20 +02:00
|
|
|
return responseJson_;
|
|
|
|
}
|
2018-01-21 19:01:37 +02:00
|
|
|
|
2018-01-23 22:10:20 +02:00
|
|
|
if (!response.ok) {
|
|
|
|
// When using fetchBlob we only get a string (not xml or json) back
|
2018-02-18 23:14:59 +02:00
|
|
|
if (options.target === 'file') throw newError('fetchBlob error', response.status);
|
2018-01-21 19:01:37 +02:00
|
|
|
|
2018-02-19 20:37:44 +02:00
|
|
|
let json = null;
|
|
|
|
try {
|
|
|
|
json = await loadResponseJson();
|
|
|
|
} catch (error) {
|
|
|
|
// Just send back the plain text in newErro()
|
|
|
|
}
|
2018-01-21 19:01:37 +02:00
|
|
|
|
2018-01-28 19:36:11 +02:00
|
|
|
if (json && json['d:error']) {
|
2018-01-23 22:10:20 +02:00
|
|
|
const code = json['d:error']['s:exception'] ? json['d:error']['s:exception'].join(' ') : response.status;
|
2018-02-18 23:14:59 +02:00
|
|
|
const message = json['d:error']['s:message'] ? json['d:error']['s:message'].join("\n") : 'Unknown error 1';
|
2018-02-18 23:52:07 +02:00
|
|
|
throw newError(message + '(Exception ' + code + ')', response.status);
|
2018-01-23 22:10:20 +02:00
|
|
|
}
|
2018-01-21 19:01:37 +02:00
|
|
|
|
2018-02-18 23:14:59 +02:00
|
|
|
throw newError('Unknown error 2', response.status);
|
2018-01-23 22:10:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (options.responseFormat === 'text') return responseText;
|
2018-01-21 19:01:37 +02:00
|
|
|
|
2018-02-19 20:37:44 +02:00
|
|
|
// The following methods may have a response depending on the server but it's not
|
|
|
|
// standard (some return a plain string, other XML, etc.) and we don't check the
|
|
|
|
// response anyway since we rely on the HTTP status code so return null.
|
|
|
|
if (['MKCOL', 'DELETE', 'PUT', 'MOVE'].indexOf(method) >= 0) return null;
|
|
|
|
|
2018-01-25 21:01:14 +02:00
|
|
|
const output = await loadResponseJson();
|
|
|
|
|
|
|
|
// Check that we didn't get for example an HTML page (as an error) instead of the JSON response
|
|
|
|
// null responses are possible, for example for DELETE calls
|
2018-02-19 20:37:44 +02:00
|
|
|
if (output !== null && typeof output === 'object' && !('d:multistatus' in output)) throw newError('Not a valid WebDAV response');
|
2018-01-25 21:01:14 +02:00
|
|
|
|
|
|
|
return output;
|
2018-01-21 19:01:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = WebDavApi;
|