2017-04-13 08:22:24 +05:30
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
|
|
// Copyright 2017 The Gogs Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2017-04-13 08:22:24 +05:30
|
|
|
|
2017-09-16 22:47:57 +05:30
|
|
|
package markup
|
2017-04-13 08:22:24 +05:30
|
|
|
|
|
|
|
import (
|
2019-12-31 07:23:28 +05:30
|
|
|
"io"
|
2017-04-13 08:22:24 +05:30
|
|
|
"regexp"
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
|
|
|
"github.com/microcosm-cc/bluemonday"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Sanitizer is a protection wrapper of *bluemonday.Policy which does not allow
|
|
|
|
// any modification to the underlying policies once it's been created.
|
|
|
|
type Sanitizer struct {
|
2021-06-24 02:39:51 +05:30
|
|
|
defaultPolicy *bluemonday.Policy
|
|
|
|
rendererPolicies map[string]*bluemonday.Policy
|
|
|
|
init sync.Once
|
2017-04-13 08:22:24 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
var sanitizer = &Sanitizer{}
|
|
|
|
|
|
|
|
// NewSanitizer initializes sanitizer with allowed attributes based on settings.
|
|
|
|
// Multiple calls to this function will only create one instance of Sanitizer during
|
|
|
|
// entire application lifecycle.
|
|
|
|
func NewSanitizer() {
|
|
|
|
sanitizer.init.Do(func() {
|
2021-06-24 02:39:51 +05:30
|
|
|
InitializeSanitizer()
|
2019-10-15 07:01:09 +05:30
|
|
|
})
|
|
|
|
}
|
2017-04-13 08:22:24 +05:30
|
|
|
|
2021-06-24 02:39:51 +05:30
|
|
|
// InitializeSanitizer (re)initializes the current sanitizer to account for changes in settings
|
|
|
|
func InitializeSanitizer() {
|
|
|
|
sanitizer.rendererPolicies = map[string]*bluemonday.Policy{}
|
|
|
|
sanitizer.defaultPolicy = createDefaultPolicy()
|
|
|
|
|
|
|
|
for name, renderer := range renderers {
|
|
|
|
sanitizerRules := renderer.SanitizerRules()
|
|
|
|
if len(sanitizerRules) > 0 {
|
|
|
|
policy := createDefaultPolicy()
|
|
|
|
addSanitizerRules(policy, sanitizerRules)
|
|
|
|
sanitizer.rendererPolicies[name] = policy
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func createDefaultPolicy() *bluemonday.Policy {
|
|
|
|
policy := bluemonday.UGCPolicy()
|
2021-11-16 13:46:05 +05:30
|
|
|
|
|
|
|
// For JS code copy and Mermaid loading state
|
|
|
|
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^code-block( is-loading)?$`)).OnElements("pre")
|
|
|
|
|
2022-10-21 17:30:53 +05:30
|
|
|
// For color preview
|
|
|
|
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^color-preview$`)).OnElements("span")
|
|
|
|
|
2022-11-09 05:41:26 +05:30
|
|
|
// For attention
|
|
|
|
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^attention-\w+$`)).OnElements("strong")
|
|
|
|
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^attention-icon attention-\w+$`)).OnElements("span", "strong")
|
|
|
|
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^svg octicon-\w+$`)).OnElements("svg")
|
|
|
|
policy.AllowAttrs("viewBox", "width", "height", "aria-hidden").OnElements("svg")
|
|
|
|
policy.AllowAttrs("fill-rule", "d").OnElements("path")
|
|
|
|
|
2020-07-01 03:04:03 +05:30
|
|
|
// For Chroma markdown plugin
|
2022-09-13 22:03:37 +05:30
|
|
|
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^(chroma )?language-[\w-]+( display)?( is-loading)?$`)).OnElements("code")
|
2017-04-13 08:22:24 +05:30
|
|
|
|
2019-10-15 07:01:09 +05:30
|
|
|
// Checkboxes
|
2021-06-24 02:39:51 +05:30
|
|
|
policy.AllowAttrs("type").Matching(regexp.MustCompile(`^checkbox$`)).OnElements("input")
|
|
|
|
policy.AllowAttrs("checked", "disabled", "data-source-position").OnElements("input")
|
2019-10-14 03:59:10 +05:30
|
|
|
|
2019-10-15 07:01:09 +05:30
|
|
|
// Custom URL-Schemes
|
2021-04-06 03:08:31 +05:30
|
|
|
if len(setting.Markdown.CustomURLSchemes) > 0 {
|
2021-06-24 02:39:51 +05:30
|
|
|
policy.AllowURLSchemes(setting.Markdown.CustomURLSchemes...)
|
2021-04-06 03:08:31 +05:30
|
|
|
}
|
2019-10-15 07:01:09 +05:30
|
|
|
|
2020-01-20 10:09:21 +05:30
|
|
|
// Allow classes for anchors
|
2021-09-15 14:15:27 +05:30
|
|
|
policy.AllowAttrs("class").Matching(regexp.MustCompile(`ref-issue( ref-external-issue)?`)).OnElements("a")
|
2020-01-20 10:09:21 +05:30
|
|
|
|
2020-03-09 00:47:03 +05:30
|
|
|
// Allow classes for task lists
|
2021-06-24 02:39:51 +05:30
|
|
|
policy.AllowAttrs("class").Matching(regexp.MustCompile(`task-list-item`)).OnElements("li")
|
2020-03-09 00:47:03 +05:30
|
|
|
|
2020-04-24 18:52:36 +05:30
|
|
|
// Allow icons
|
2021-06-24 02:39:51 +05:30
|
|
|
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^icon(\s+[\p{L}\p{N}_-]+)+$`)).OnElements("i")
|
2020-04-26 10:39:08 +05:30
|
|
|
|
|
|
|
// Allow unlabelled labels
|
2021-06-24 02:39:51 +05:30
|
|
|
policy.AllowNoAttrs().OnElements("label")
|
2020-04-24 18:52:36 +05:30
|
|
|
|
2020-04-28 23:35:39 +05:30
|
|
|
// Allow classes for emojis
|
2021-06-24 02:39:51 +05:30
|
|
|
policy.AllowAttrs("class").Matching(regexp.MustCompile(`emoji`)).OnElements("img")
|
2020-04-28 23:35:39 +05:30
|
|
|
|
2021-06-16 06:32:03 +05:30
|
|
|
// Allow icons, emojis, chroma syntax and keyword markup on span
|
2022-09-13 22:03:37 +05:30
|
|
|
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^((icon(\s+[\p{L}\p{N}_-]+)+)|(emoji)|(language-math display)|(language-math inline))$|^([a-z][a-z0-9]{0,2})$|^` + keywordClass + `$`)).OnElements("span")
|
2021-03-30 02:14:28 +05:30
|
|
|
|
2022-07-15 12:08:10 +05:30
|
|
|
// Allow 'style' attribute on text elements.
|
|
|
|
policy.AllowAttrs("style").OnElements("span", "p")
|
|
|
|
|
2022-10-21 17:30:53 +05:30
|
|
|
// Allow 'color' and 'background-color' properties for the style attribute on text elements.
|
|
|
|
policy.AllowStyles("color", "background-color").OnElements("span", "p")
|
2022-07-15 12:08:10 +05:30
|
|
|
|
2020-02-29 01:35:12 +05:30
|
|
|
// Allow generally safe attributes
|
2022-01-20 23:16:10 +05:30
|
|
|
generalSafeAttrs := []string{
|
|
|
|
"abbr", "accept", "accept-charset",
|
2020-02-29 01:35:12 +05:30
|
|
|
"accesskey", "action", "align", "alt",
|
|
|
|
"aria-describedby", "aria-hidden", "aria-label", "aria-labelledby",
|
|
|
|
"axis", "border", "cellpadding", "cellspacing", "char",
|
|
|
|
"charoff", "charset", "checked",
|
|
|
|
"clear", "cols", "colspan", "color",
|
|
|
|
"compact", "coords", "datetime", "dir",
|
|
|
|
"disabled", "enctype", "for", "frame",
|
|
|
|
"headers", "height", "hreflang",
|
|
|
|
"hspace", "ismap", "label", "lang",
|
|
|
|
"maxlength", "media", "method",
|
|
|
|
"multiple", "name", "nohref", "noshade",
|
|
|
|
"nowrap", "open", "prompt", "readonly", "rel", "rev",
|
|
|
|
"rows", "rowspan", "rules", "scope",
|
|
|
|
"selected", "shape", "size", "span",
|
|
|
|
"start", "summary", "tabindex", "target",
|
|
|
|
"title", "type", "usemap", "valign", "value",
|
|
|
|
"vspace", "width", "itemprop",
|
|
|
|
}
|
|
|
|
|
|
|
|
generalSafeElements := []string{
|
|
|
|
"h1", "h2", "h3", "h4", "h5", "h6", "h7", "h8", "br", "b", "i", "strong", "em", "a", "pre", "code", "img", "tt",
|
|
|
|
"div", "ins", "del", "sup", "sub", "p", "ol", "ul", "table", "thead", "tbody", "tfoot", "blockquote",
|
|
|
|
"dl", "dt", "dd", "kbd", "q", "samp", "var", "hr", "ruby", "rt", "rp", "li", "tr", "td", "th", "s", "strike", "summary",
|
|
|
|
"details", "caption", "figure", "figcaption",
|
|
|
|
"abbr", "bdo", "cite", "dfn", "mark", "small", "span", "time", "wbr",
|
|
|
|
}
|
|
|
|
|
2021-06-24 02:39:51 +05:30
|
|
|
policy.AllowAttrs(generalSafeAttrs...).OnElements(generalSafeElements...)
|
2020-02-29 01:35:12 +05:30
|
|
|
|
Allow `<video>` in MarkDown (#22892)
As you can imagine, for the Blender development process it is rather
nice to be able to include videos in issues, pull requests, etc.
This PR allows the `<video>` HTML tag to be used in MarkDown, with the
`src`, `autoplay`, and `controls` attributes.
## Help Needed
To have this fully functional, personally I feel the following things
are still missing, and would appreciate some help from the Gitea team.
### Styling
Some CSS is needed, but I couldn't figure out which of the LESS files
would work. I tried `web_src/less/markup/content.less` and
`web_src/less/_base.less`, but after running `make` the changes weren't
seen in the frontend.
This I would consider a minimal set of CSS rules to be applied:
```css
video {
max-width: 100%;
max-height: 100vh;
}
```
### Default Attributes
It would be fantastic if Gitea could add some default attributes to the
`<video>` tag. Basically `controls` should always be there, as there is
no point in disallowing scrolling through videos, looping them, etc.
### Integration with the attachments system
Another thing that could be added, but probably should be done in a
separate PR, is the integration with the attachments system. Dragging in
a video should attach it, then generate the appropriate MarkDown/HTML.
2023-03-02 03:00:51 +05:30
|
|
|
policy.AllowAttrs("src", "autoplay", "controls").OnElements("video")
|
|
|
|
|
2021-06-24 02:39:51 +05:30
|
|
|
policy.AllowAttrs("itemscope", "itemtype").OnElements("div")
|
2020-02-29 01:35:12 +05:30
|
|
|
|
|
|
|
// FIXME: Need to handle longdesc in img but there is no easy way to do it
|
|
|
|
|
2019-12-08 01:19:04 +05:30
|
|
|
// Custom keyword markup
|
2021-06-24 02:39:51 +05:30
|
|
|
addSanitizerRules(policy, setting.ExternalSanitizerRules)
|
|
|
|
|
|
|
|
return policy
|
|
|
|
}
|
|
|
|
|
|
|
|
func addSanitizerRules(policy *bluemonday.Policy, rules []setting.MarkupSanitizerRule) {
|
|
|
|
for _, rule := range rules {
|
|
|
|
if rule.AllowDataURIImages {
|
|
|
|
policy.AllowDataURIImages()
|
|
|
|
}
|
|
|
|
if rule.Element != "" {
|
|
|
|
if rule.Regexp != nil {
|
|
|
|
policy.AllowAttrs(rule.AllowAttr).Matching(rule.Regexp).OnElements(rule.Element)
|
|
|
|
} else {
|
|
|
|
policy.AllowAttrs(rule.AllowAttr).OnElements(rule.Element)
|
|
|
|
}
|
2019-12-08 01:19:04 +05:30
|
|
|
}
|
|
|
|
}
|
2017-04-13 08:22:24 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// Sanitize takes a string that contains a HTML fragment or document and applies policy whitelist.
|
|
|
|
func Sanitize(s string) string {
|
2017-04-19 16:46:36 +05:30
|
|
|
NewSanitizer()
|
2021-06-24 02:39:51 +05:30
|
|
|
return sanitizer.defaultPolicy.Sanitize(s)
|
2017-04-13 08:22:24 +05:30
|
|
|
}
|
|
|
|
|
2019-12-31 07:23:28 +05:30
|
|
|
// SanitizeReader sanitizes a Reader
|
2021-11-19 16:16:47 +05:30
|
|
|
func SanitizeReader(r io.Reader, renderer string, w io.Writer) error {
|
2019-12-31 07:23:28 +05:30
|
|
|
NewSanitizer()
|
2021-06-24 02:39:51 +05:30
|
|
|
policy, exist := sanitizer.rendererPolicies[renderer]
|
|
|
|
if !exist {
|
|
|
|
policy = sanitizer.defaultPolicy
|
|
|
|
}
|
2021-11-19 16:16:47 +05:30
|
|
|
return policy.SanitizeReaderToWriter(r, w)
|
2019-12-31 07:23:28 +05:30
|
|
|
}
|