correct onebox rendering so it fills in cached

the onebox plugin needs to pull in the actual cached onebox
and bypass the whitelister for onebox content
This commit is contained in:
Sam 2017-06-26 13:09:02 -04:00
parent c6408550cd
commit df5ee0cfc1
2 changed files with 69 additions and 3 deletions

View File

@ -1,5 +1,6 @@
import { default as WhiteLister, whiteListFeature } from 'pretty-text/white-lister'; import { default as WhiteLister, whiteListFeature } from 'pretty-text/white-lister';
import { sanitize } from 'pretty-text/sanitizer'; import { sanitize } from 'pretty-text/sanitizer';
import guid from 'pretty-text/guid';
function deprecate(feature, name){ function deprecate(feature, name){
return function() { return function() {
@ -61,6 +62,21 @@ function setupInlineBBCode(md) {
md.inline.bbcode_ruler = new Ruler(); md.inline.bbcode_ruler = new Ruler();
} }
function renderHoisted(tokens, idx, options) {
const content = tokens[idx].content;
if (content && content.length > 0) {
let id = guid();
options.discourse.hoisted[id] = tokens[idx].content;
return id;
} else {
return '';
}
}
function setupHoister(md) {
md.renderer.rules.html_raw = renderHoisted;
}
export function setup(opts, siteSettings, state) { export function setup(opts, siteSettings, state) {
if (opts.setup) { if (opts.setup) {
return; return;
@ -120,6 +136,7 @@ export function setup(opts, siteSettings, state) {
typographer: false typographer: false
}); });
setupHoister(opts.engine);
setupBlockBBCode(opts.engine); setupBlockBBCode(opts.engine);
setupInlineBBCode(opts.engine); setupInlineBBCode(opts.engine);
@ -140,5 +157,33 @@ export function setup(opts, siteSettings, state) {
export function cook(raw, opts) { export function cook(raw, opts) {
const whiteLister = new WhiteLister(opts.discourse); const whiteLister = new WhiteLister(opts.discourse);
return opts.discourse.sanitizer(opts.engine.render(raw), whiteLister).trim();
// we still have to hoist html_raw nodes so they bypass the whitelister
// this is the case for oneboxes
let hoisted = {};
opts.discourse.hoisted = hoisted;
let cooked = opts.discourse.sanitizer(opts.engine.render(raw), whiteLister).trim();
const keys = Object.keys(hoisted);
if (keys.length) {
let found = true;
const unhoist = function(key) {
cooked = cooked.replace(new RegExp(key, "g"), function() {
found = true;
return hoisted[key];
});
};
while (found) {
found = false;
keys.forEach(unhoist);
}
}
delete opts.discourse.hoisted;
return cooked;
} }

View File

@ -1,3 +1,5 @@
import { lookupCache } from 'pretty-text/oneboxer';
function applyOnebox(state, silent) { function applyOnebox(state, silent) {
if (silent || !state.tokens || state.tokens.length < 3) { if (silent || !state.tokens || state.tokens.length < 3) {
return; return;
@ -47,8 +49,27 @@ function applyOnebox(state, silent) {
continue; continue;
} }
// decorate... // we already determined earlier that 0 0 was href
attrs.push(["class", "onebox"]); let cached = lookupCache(attrs[0][1]);
if (cached) {
// replace link with 2 blank text nodes and inline html for onebox
child.type = 'html_raw';
child.content = cached;
child.inline = true;
text.type = 'html_raw';
text.content = '';
text.inline = true;
close.type = 'html_raw';
close.content = '';
close.inline = true;
} else {
// decorate...
attrs.push(["class", "onebox"]);
}
} }
} }
} }