gitlin/utils/ugcpolicy.go

207 行
5.7 KiB
Go
Raw 通常表示 履歴

2023-02-13 18:25:39 +09:00
package utils
2023-02-13 22:59:44 +09:00
2023-02-13 18:25:39 +09:00
import (
2023-06-06 20:25:00 +09:00
"github.com/microcosm-cc/bluemonday"
"regexp"
2023-02-13 18:25:39 +09:00
)
2023-02-13 22:59:44 +09:00
2023-02-13 18:25:39 +09:00
// copied from bluemonday's GitHub repostiory, with some adaptations
func UGCPolicy() *bluemonday.Policy {
2023-06-06 20:25:00 +09:00
p := bluemonday.NewPolicy()
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
///////////////////////
// Global attributes //
///////////////////////
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "class" is not permitted as we are not allowing users to style their own
// content
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
p.AllowStandardAttributes()
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
//////////////////////////////
// Global URL format policy //
//////////////////////////////
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
p.AllowStandardURLs()
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
////////////////////////////////
// Declarations and structure //
////////////////////////////////
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "xml" "xslt" "DOCTYPE" "html" "head" are not permitted as we are
// expecting user generated content to be a fragment of HTML and not a full
// document.
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
//////////////////////////
// Sectioning root tags //
//////////////////////////
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "article" and "aside" are permitted and takes no attributes
p.AllowElements("article", "aside")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "body" is not permitted as we are expecting user generated content to be a fragment
// of HTML and not a full document.
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "details" is permitted, including the "open" attribute which can either
// be blank or the value "open".
p.AllowAttrs(
"open",
).Matching(regexp.MustCompile(`(?i)^(|open)$`)).OnElements("details")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "fieldset" is not permitted as we are not allowing forms to be created.
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "figure" is permitted and takes no attributes
p.AllowElements("figure")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "nav" is not permitted as it is assumed that the site (and not the user)
// has defined navigation elements
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "section" is permitted and takes no attributes
p.AllowElements("section")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "summary" is permitted and takes no attributes
p.AllowElements("summary")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
//////////////////////////
// Headings and footers //
//////////////////////////
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "footer" is not permitted as we expect user content to be a fragment and
// not structural to this extent
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "h1" through "h6" are permitted and take no attributes
p.AllowElements("h1", "h2", "h3", "h4", "h5", "h6")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "header" is not permitted as we expect user content to be a fragment and
// not structural to this extent
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "hgroup" is permitted and takes no attributes
p.AllowElements("hgroup")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
/////////////////////////////////////
// Content grouping and separating //
/////////////////////////////////////
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "blockquote" is permitted, including the "cite" attribute which must be
// a standard URL.
p.AllowAttrs("cite").OnElements("blockquote")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "br" "div" "hr" "p" "span" "wbr" are permitted and take no attributes
p.AllowElements("br", "div", "hr", "p", "span", "wbr")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
///////////
// Links //
///////////
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "a" is permitted
p.AllowAttrs("href").OnElements("a")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "area" is permitted along with the attributes that map image maps work
p.AllowAttrs("name").Matching(
regexp.MustCompile(`^([\p{L}\p{N}_-]+)$`),
).OnElements("map")
p.AllowAttrs("alt").Matching(bluemonday.Paragraph).OnElements("area")
p.AllowAttrs("coords").Matching(
regexp.MustCompile(`^([0-9]+,)+[0-9]+$`),
).OnElements("area")
p.AllowAttrs("href").OnElements("area")
p.AllowAttrs("rel").Matching(bluemonday.SpaceSeparatedTokens).OnElements("area")
p.AllowAttrs("shape").Matching(
regexp.MustCompile(`(?i)^(default|circle|rect|poly)$`),
).OnElements("area")
2023-06-06 20:25:00 +09:00
// "img" is permitted
p.AllowImages()
p.AllowAttrs("usemap").Matching(
regexp.MustCompile(`(?i)^#[\p{L}\p{N}_-]+$`),
).OnElements("img")
p.AllowAttrs("src").Matching(
regexp.MustCompile(`(?i)^\/[\p{L}\p{N}\/\.]+$`),
).OnElements("img")
p.AllowAttrs("style").OnElements("img")
p.AllowAttrs("alt").OnElements("img")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "link" is not permitted
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
/////////////////////
// Phrase elements //
/////////////////////
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// The following are all inline phrasing elements
p.AllowElements("abbr", "acronym", "cite", "code", "dfn", "em",
"figcaption", "mark", "s", "samp", "strong", "sub", "sup", "var")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "q" is permitted and "cite" is a URL and handled by URL policies
p.AllowAttrs("cite").OnElements("q")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "time" is permitted
p.AllowAttrs("datetime").Matching(bluemonday.ISO8601).OnElements("time")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
////////////////////
// Style elements //
////////////////////
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// block and inline elements that impart no semantic meaning but style the
// document
p.AllowElements("b", "i", "pre", "small", "strike", "tt", "u")
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "style" is not permitted as we are not yet sanitising CSS and it is an
// XSS attack vector
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
//////////////////////
// HTML5 Formatting //
//////////////////////
2023-02-13 18:25:39 +09:00
2023-06-06 20:25:00 +09:00
// "bdi" "bdo" are permitted
p.AllowAttrs("dir").Matching(bluemonday.Direction).OnElements("bdi", "bdo")
// "rp" "rt" "ruby" are permitted
p.AllowElements("rp", "rt", "ruby")
///////////////////////////
// HTML5 Change tracking //
///////////////////////////
// "del" "ins" are permitted
p.AllowAttrs("cite").Matching(bluemonday.Paragraph).OnElements("del", "ins")
p.AllowAttrs("datetime").Matching(bluemonday.ISO8601).OnElements("del", "ins")
///////////
// Lists //
///////////
p.AllowLists()
////////////
// Tables //
////////////
p.AllowTables()
///////////
// Forms //
///////////
// By and large, forms are not permitted. However there are some form
// elements that can be used to present data, and we do permit those
//
// "button" "fieldset" "input" "keygen" "label" "output" "select" "datalist"
// "textarea" "optgroup" "option" are all not permitted
// "meter" is permitted
p.AllowAttrs(
"value",
"min",
"max",
"low",
"high",
"optimum",
).Matching(bluemonday.Number).OnElements("meter")
// "progress" is permitted
p.AllowAttrs("value", "max").Matching(bluemonday.Number).OnElements("progress")
return p
2023-02-13 18:25:39 +09:00
}