You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
159 lines
5.3 KiB
JavaScript
159 lines
5.3 KiB
JavaScript
define([
|
|
'jquery',
|
|
'/bower_components/marked/marked.min.js',
|
|
'/common/cryptpad-common.js',
|
|
'/common/media-tag.js',
|
|
'/bower_components/diff-dom/diffDOM.js',
|
|
'/bower_components/tweetnacl/nacl-fast.min.js',
|
|
],function ($, Marked, Cryptpad, MediaTag) {
|
|
var DiffMd = {};
|
|
|
|
var DiffDOM = window.diffDOM;
|
|
var renderer = new Marked.Renderer();
|
|
|
|
Marked.setOptions({
|
|
renderer: renderer
|
|
});
|
|
|
|
DiffMd.render = function (md) {
|
|
return Marked(md);
|
|
};
|
|
|
|
// Tasks list
|
|
var checkedTaskItemPtn = /^\s*\[x\]\s*/;
|
|
var uncheckedTaskItemPtn = /^\s*\[ \]\s*/;
|
|
renderer.listitem = function (text) {
|
|
var isCheckedTaskItem = checkedTaskItemPtn.test(text);
|
|
var isUncheckedTaskItem = uncheckedTaskItemPtn.test(text);
|
|
if (isCheckedTaskItem) {
|
|
text = text.replace(checkedTaskItemPtn,
|
|
'<i class="fa fa-check-square" aria-hidden="true"></i> ') + '\n';
|
|
}
|
|
if (isUncheckedTaskItem) {
|
|
text = text.replace(uncheckedTaskItemPtn,
|
|
'<i class="fa fa-square-o" aria-hidden="true"></i> ') + '\n';
|
|
}
|
|
var cls = (isCheckedTaskItem || isUncheckedTaskItem) ? ' class="todo-list-item"' : '';
|
|
return '<li'+ cls + '>' + text + '</li>\n';
|
|
};
|
|
renderer.image = function (href, title, text) {
|
|
if (href.slice(0,6) === '/file/') {
|
|
var parsed = Cryptpad.parsePadUrl(href);
|
|
var hexFileName = Cryptpad.base64ToHex(parsed.hashData.channel);
|
|
var mt = '<media-tag src="/blob/' + hexFileName.slice(0,2) + '/' + hexFileName + '" data-crypto-key="cryptpad:' + parsed.hashData.key + '"></media-tag>';
|
|
return mt;
|
|
}
|
|
var out = '<img src="' + href + '" alt="' + text + '"';
|
|
if (title) {
|
|
out += ' title="' + title + '"';
|
|
}
|
|
out += this.options.xhtml ? '/>' : '>';
|
|
return out;
|
|
};
|
|
|
|
var forbiddenTags = [
|
|
'SCRIPT',
|
|
'IFRAME',
|
|
'OBJECT',
|
|
'APPLET',
|
|
'VIDEO',
|
|
'AUDIO',
|
|
];
|
|
var unsafeTag = function (info) {
|
|
if (info.node && $(info.node).parents('media-tag').length) {
|
|
// Do not remove elements inside a media-tag
|
|
return true;
|
|
}
|
|
if (['addAttribute', 'modifyAttribute'].indexOf(info.diff.action) !== -1) {
|
|
if (/^on/.test(info.diff.name)) {
|
|
console.log("Rejecting forbidden element attribute with name", info.diff.name);
|
|
return true;
|
|
}
|
|
}
|
|
if (['addElement', 'replaceElement'].indexOf(info.diff.action) !== -1) {
|
|
var msg = "Rejecting forbidden tag of type (%s)";
|
|
if (info.diff.element && forbiddenTags.indexOf(info.diff.element.nodeName) !== -1) {
|
|
console.log(msg, info.diff.element.nodeName);
|
|
return true;
|
|
} else if (info.diff.newValue && forbiddenTags.indexOf(info.diff.newValue.nodeName) !== -1) {
|
|
console.log("Replacing restricted element type (%s) with PRE", info.diff.newValue.nodeName);
|
|
info.diff.newValue.nodeName = 'PRE';
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
var slice = function (coll) {
|
|
return Array.prototype.slice.call(coll);
|
|
};
|
|
|
|
/* remove listeners from the DOM */
|
|
var removeListeners = function (root) {
|
|
slice(root.attributes).map(function (attr) {
|
|
if (/^on/.test(attr.name)) {
|
|
root.attributes.removeNamedItem(attr.name);
|
|
}
|
|
});
|
|
// all the way down
|
|
slice(root.children).forEach(removeListeners);
|
|
};
|
|
|
|
var domFromHTML = function (html) {
|
|
var Dom = new DOMParser().parseFromString(html, "text/html");
|
|
removeListeners(Dom.body);
|
|
return Dom;
|
|
};
|
|
|
|
var DD = new DiffDOM({
|
|
preDiffApply: function (info) {
|
|
if (unsafeTag(info)) { return true; }
|
|
},
|
|
});
|
|
|
|
var makeDiff = function (A, B, id) {
|
|
var Err;
|
|
var Els = [A, B].map(function (frag) {
|
|
if (typeof(frag) === 'object') {
|
|
if (!frag || (frag && !frag.body)) {
|
|
Err = "No body";
|
|
return;
|
|
}
|
|
var els = frag.body.querySelectorAll('#'+id);
|
|
if (els.length) {
|
|
return els[0];
|
|
}
|
|
}
|
|
Err = 'No candidate found';
|
|
});
|
|
if (Err) { return Err; }
|
|
var patch = DD.diff(Els[0], Els[1]);
|
|
return patch;
|
|
};
|
|
|
|
DiffMd.apply = function (newHtml, $content) {
|
|
var id = $content.attr('id');
|
|
if (!id) { throw new Error("The element must have a valid id"); }
|
|
var $div = $('<div>', {id: id}).append(newHtml);
|
|
var Dom = domFromHTML($('<div>').append($div).html());
|
|
var oldDom = domFromHTML($content[0].outerHTML);
|
|
var patch = makeDiff(oldDom, Dom, id);
|
|
if (typeof(patch) === 'string') {
|
|
throw new Error(patch);
|
|
} else {
|
|
DD.apply($content[0], patch);
|
|
var $mts = $content.find('media-tag:not(:has(*))');
|
|
$mts.each(function (i, el) {
|
|
MediaTag(el);
|
|
});
|
|
}
|
|
};
|
|
|
|
$(window.document).on('decryption', function (e) {
|
|
var decrypted = e.originalEvent;
|
|
if (decrypted.callback) { decrypted.callback(); }
|
|
});
|
|
|
|
return DiffMd;
|
|
});
|
|
|