summaryrefslogtreecommitdiff
path: root/lib/lib_rss.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lib_rss.php')
-rw-r--r--lib/lib_rss.php172
1 files changed, 157 insertions, 15 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php
index 01c8a0088..5e19ec628 100644
--- a/lib/lib_rss.php
+++ b/lib/lib_rss.php
@@ -366,22 +366,164 @@ function customSimplePie(array $attributes = [], array $curl_options = []): \Sim
$simplePie->set_curl_options($curl_options);
$simplePie->strip_comments(true);
- $simplePie->strip_htmltags([
- 'base', 'blink', 'body', 'doctype', 'embed',
- 'font', 'form', 'frame', 'frameset', 'html',
- 'link', 'input', 'marquee', 'meta', 'noscript',
- 'object', 'param', 'plaintext', 'script', 'style',
- 'svg', //TODO: Support SVG after sanitizing and URL rewriting of xlink:href
- ]);
$simplePie->rename_attributes(['id', 'class']);
- $simplePie->strip_attributes(array_merge($simplePie->strip_attributes, [
- 'alink', 'autoplay', 'background', 'bgcolor', 'class', 'form', 'formaction',
- 'link', 'onblur', 'onchange', 'onclick', 'ondblclick', 'onfocus',
- 'onkeydown', 'onkeypress', 'onkeyup', 'onload', 'onmousedown', 'onmousemove',
- 'onmouseout', 'onmouseover', 'onmouseup', 'onselect', 'onunload',
- 'seamless', 'sizes', 'srcdoc', 'srcset', 'text', 'vlink', 'referrerpolicy', 'ping',
- 'target', 'rel', 'name', 'download', 'attributionsrc',
- ]));
+ $simplePie->allow_aria_attr(true);
+ $simplePie->allow_data_attr(true);
+ $simplePie->allowed_html_attributes([
+ // HTML
+ 'dir', 'draggable', 'hidden', 'lang', 'role', 'title',
+ // MathML
+ 'displaystyle', 'mathsize', 'scriptlevel',
+ ]);
+ $simplePie->allowed_html_elements_with_attributes([
+ // HTML
+ 'a' => ['href', 'hreflang', 'type'],
+ 'abbr' => [],
+ 'acronym' => [],
+ 'address' => [],
+ // 'area' => [], // TODO: support <area> after rewriting ids with a format like #ugc-<insert original id here> (maybe)
+ 'article' => [],
+ 'aside' => [],
+ 'audio' => ['controlslist', 'loop', 'muted', 'src'],
+ 'b' => [],
+ 'bdi' => [],
+ 'bdo' => [],
+ 'big' => [],
+ 'blink' => [],
+ 'blockquote' => ['cite'],
+ 'br' => ['clear'],
+ 'button' => ['disabled'],
+ 'canvas' => ['width', 'height'],
+ 'caption' => ['align'],
+ 'center' => [],
+ 'cite' => [],
+ 'code' => [],
+ 'col' => ['span', 'align', 'valign', 'width'],
+ 'colgroup' => ['span', 'align', 'valign', 'width'],
+ 'data' => ['value'],
+ 'datalist' => [],
+ 'dd' => [],
+ 'del' => ['cite', 'datetime'],
+ 'details' => ['open'],
+ 'dfn' => [],
+ 'dialog' => [],
+ 'dir' => [],
+ 'div' => ['align'],
+ 'dl' => [],
+ 'dt' => [],
+ 'em' => [],
+ 'fieldset' => ['disabled'],
+ 'figcaption' => [],
+ 'figure' => [],
+ 'footer' => [],
+ 'h1' => [],
+ 'h2' => [],
+ 'h3' => [],
+ 'h4' => [],
+ 'h5' => [],
+ 'h6' => [],
+ 'header' => [],
+ 'hgroup' => [],
+ 'hr' => ['align', 'noshade', 'size', 'width'],
+ 'i' => [],
+ 'iframe' => ['src', 'align', 'frameborder', 'longdesc', 'marginheight', 'marginwidth', 'scrolling'],
+ 'image' => ['src', 'alt', 'width', 'height', 'align', 'border', 'hspace', 'longdesc', 'vspace'],
+ 'img' => ['src', 'alt', 'width', 'height', 'align', 'border', 'hspace', 'longdesc', 'vspace'],
+ 'ins' => ['cite', 'datetime'],
+ 'kbd' => [],
+ 'label' => [],
+ 'legend' => [],
+ 'li' => ['value', 'type'],
+ 'main' => [],
+ // 'map' => [], // TODO: support <map> after rewriting ids with a format like #ugc-<insert original id here> (maybe)
+ 'mark' => [],
+ 'marquee' => ['behavior', 'direction', 'height', 'hspace', 'loop', 'scrollamount', 'scrolldelay', 'truespeed', 'vspace', 'width'],
+ 'menu' => [],
+ 'meter' => ['value', 'min', 'max', 'low', 'high', 'optimum'],
+ 'nav' => [],
+ 'nobr' => [],
+ // 'noembed' => [], // <embed> is not allowed, so we want to display the contents of <noembed>
+ 'noframes' => [],
+ // 'noscript' => [], // From the perspective of the feed content, JS isn't allowed so we want to display the contents of <noscript>
+ 'ol' => ['reversed', 'start', 'type'],
+ 'optgroup' => ['disabled', 'label'],
+ 'option' => ['disabled', 'label', 'selected', 'value'],
+ 'output' => [],
+ 'p' => ['align'],
+ 'picture' => [],
+ // 'plaintext' => [], // Can't be closed. See: https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/plaintext
+ 'pre' => ['width', 'wrap'],
+ 'progress' => ['max', 'value'],
+ 'q' => ['cite'],
+ 'rb' => [],
+ 'rp' => [],
+ 'rt' => [],
+ 'rtc' => [],
+ 'ruby' => [],
+ 's' => [],
+ 'samp' => [],
+ 'search' => [],
+ 'section' => [],
+ 'select' => ['disabled', 'multiple', 'size'],
+ 'small' => [],
+ 'source' => ['type', 'src', 'media', 'height', 'width'],
+ 'span' => [],
+ 'strike' => [],
+ 'strong' => [],
+ 'sub' => [],
+ 'summary' => [],
+ 'sup' => [],
+ 'table' => ['align', 'border', 'cellpadding', 'cellspacing', 'rules', 'summary', 'width'],
+ 'tbody' => ['align', 'char', 'charoff', 'valign'],
+ 'td' => ['colspan', 'headers', 'rowspan', 'abbr', 'align', 'height', 'scope', 'valign', 'width'],
+ 'textarea' => ['cols', 'disabled', 'maxlength', 'minlength', 'placeholder', 'readonly', 'rows', 'wrap'],
+ 'tfoot' => ['align', 'valign'],
+ 'th' => ['abbr', 'colspan', 'rowspan', 'scope', 'align', 'height', 'valign', 'width'],
+ 'thead' => ['align', 'valign'],
+ 'time' => ['datetime'],
+ 'tr' => ['align', 'valign'],
+ 'track' => ['default', 'kind', 'srclang', 'label', 'src'],
+ 'tt' => [],
+ 'u' => [],
+ 'ul' => ['type'],
+ 'var' => [],
+ 'video' => ['src', 'poster', 'controlslist', 'height', 'loop', 'muted', 'playsinline', 'width'],
+ 'wbr' => [],
+ 'xmp' => [],
+ // MathML
+ 'maction' => ['actiontype', 'selection'],
+ 'math' => ['display'],
+ 'menclose' => ['notation'],
+ 'merror' => [],
+ 'mfenced' => ['close', 'open', 'separators'],
+ 'mfrac' => ['denomalign', 'linethickness', 'numalign'],
+ 'mi' => ['mathvariant'],
+ 'mmultiscripts' => ['subscriptshift', 'superscriptshift'],
+ 'mn' => [],
+ 'mo' => ['accent', 'fence', 'form', 'largeop', 'lspace', 'maxsize', 'minsize', 'movablelimits', 'rspace', 'separator', 'stretchy', 'symmetric'],
+ 'mover' => ['accent'],
+ 'mpadded' => ['depth', 'height', 'lspace', 'voffset', 'width'],
+ 'mphantom' => [],
+ 'mprescripts' => [],
+ 'mroot' => [],
+ 'mrow' => [],
+ 'ms' => [],
+ 'mspace' => ['depth', 'height', 'width'],
+ 'msqrt' => [],
+ 'msub' => [],
+ 'msubsup' => ['subscriptshift', 'superscriptshift'],
+ 'msup' => ['superscriptshift'],
+ 'mtable' => ['align', 'columnalign', 'columnlines', 'columnspacing', 'frame', 'framespacing', 'rowalign', 'rowlines', 'rowspacing', 'width'],
+ 'mtd' => ['columnspan', 'rowspan', 'columnalign', 'rowalign'],
+ 'mtext' => [],
+ 'mtr' => ['columnalign', 'rowalign'],
+ 'munder' => ['accentunder'],
+ 'munderover' => ['accent', 'accentunder'],
+ // TODO: Support SVG after sanitizing and URL rewriting of xlink:href
+ ]);
+ $simplePie->strip_attributes([
+ 'data-auto-leave-validation', 'data-leave-validation', 'data-no-leave-validation', 'data-original',
+ ]);
$simplePie->add_attributes([
'audio' => ['controls' => 'controls', 'preload' => 'none'],
'iframe' => [