. // }}} /** * HTML Abstraction * * @author Hugo Sales * @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ namespace App\Util; use Functional as F; abstract class HTML { const ALLOWED_TAGS = ['p', 'br', 'a']; const FORBIDDEN_ATTRIBUTES = ['onerror', 'form', 'onforminput', 'onbeforescriptexecute', 'formaction', 'onfocus', 'onload', 'data', 'event', 'autofocus', 'onactivate', 'onanimationstart', 'onwebkittransitionend', 'onblur', 'poster', 'onratechange', 'ontoggle', 'onscroll', 'actiontype', 'dirname', 'srcdoc', ]; /** * Creates an HTML tag without attributes * * @param string $tag * @param null|mixed $attrs * @param array|string $content * @param bool $empty_tag * * @return array */ public static function tag(string $tag, $attrs = null, $content = null, bool $empty_tag = false): array { return self::attr_tag($tag, $attrs ?? '', $content ?? '', $empty_tag); } /** * Create tag, possibly with attributes and indentation * * @param string $tag * @param array|string $attrs - element attributes * @param array|string $content - what goes inside the tag * @param bool $empty_tag * * @return array */ private static function attr_tag(string $tag, $attrs, $content = '', bool $empty_tag = false): array { $html = '<' . $tag . (is_string($attrs) ? ($attrs ? ' ' : '') . $attrs : self::attr($attrs)); if ($empty_tag) { $html .= '/>'; } else { $inner = Formatting::indent($content); $html .= ">\n" . ($inner == '' ? '' : $inner . "\n") . ""; } return explode("\n", $html); } /** * Attribute with given optional value * * @param array $attrs * * @return string */ private static function attr(array $attrs, array $options = []): string { return ' ' . implode(' ', F\map($attrs, /** * Convert an attr ($key), $val pair to an HTML attribute, but validate to exclude some vectors of injection */ function (string $val, string $key, array $_): string { if (in_array($key, array_merge($options['forbidden_attributes'] ?? [], self::FORBIDDEN_ATTRIBUTES)) || str_starts_with($val, 'javascript:')) { throw new \InvalidArgumentException("HTML::html: Attribute {$key} is not allowed"); } $val = htmlspecialchars($val, flags: ENT_QUOTES | ENT_SUBSTITUTE, double_encode: false); return "{$key}=\"{$val}\""; })); } /** * @param array|string $html The input to convert to HTML * @param array $options = [] ['allowed_tags' => ['a', 'p']] * * @return string */ public static function html(string|array $html, array $options = []): string { if (is_string($html)) { return $html; } else { $out = ''; foreach ($html as $tag => $contents) { if ($contents == 'empty' || isset($contents['empty'])) { $out .= "<{$tag}/>"; } else { $attrs = isset($contents['attrs']) ? self::attr(array_shift($contents)) : ''; $is_tag = preg_match('/[A-Za-z][A-Za-z0-9]*/', $tag); $inner = self::html($contents); if ($is_tag) { if (!in_array($tag, array_merge($options['allowed_tags'] ?? [], self::ALLOWED_TAGS))) { throw new \InvalidArgumentException("HTML::html: Tag {$tag} is not allowed"); } $inner = $inner != '' ? "\n{$inner}\n" : ''; $inner = Formatting::indent($inner); $out .= "<{$tag}{$attrs}>{$inner}"; } $out .= $inner; } } return $out; } } }