You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

markdown.go 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package markdown
  5. import (
  6. "bytes"
  7. "fmt"
  8. "io"
  9. "path"
  10. "path/filepath"
  11. "regexp"
  12. "strings"
  13. "github.com/Unknwon/com"
  14. "github.com/microcosm-cc/bluemonday"
  15. "github.com/russross/blackfriday"
  16. "golang.org/x/net/html"
  17. "code.gitea.io/gitea/modules/base"
  18. "code.gitea.io/gitea/modules/setting"
  19. )
  20. // Issue name styles
  21. const (
  22. IssueNameStyleNumeric = "numeric"
  23. IssueNameStyleAlphanumeric = "alphanumeric"
  24. )
  25. // Sanitizer markdown sanitizer
  26. var Sanitizer = bluemonday.UGCPolicy()
  27. // BuildSanitizer initializes sanitizer with allowed attributes based on settings.
  28. // This function should only be called once during entire application lifecycle.
  29. func BuildSanitizer() {
  30. // Normal markdown-stuff
  31. Sanitizer.AllowAttrs("class").Matching(regexp.MustCompile(`[\p{L}\p{N}\s\-_',:\[\]!\./\\\(\)&]*`)).OnElements("code")
  32. // Checkboxes
  33. Sanitizer.AllowAttrs("type").Matching(regexp.MustCompile(`^checkbox$`)).OnElements("input")
  34. Sanitizer.AllowAttrs("checked", "disabled").OnElements("input")
  35. // Custom URL-Schemes
  36. Sanitizer.AllowURLSchemes(setting.Markdown.CustomURLSchemes...)
  37. }
  38. var validLinksPattern = regexp.MustCompile(`^[a-z][\w-]+://`)
  39. // isLink reports whether link fits valid format.
  40. func isLink(link []byte) bool {
  41. return validLinksPattern.Match(link)
  42. }
  43. // IsMarkdownFile reports whether name looks like a Markdown file
  44. // based on its extension.
  45. func IsMarkdownFile(name string) bool {
  46. extension := strings.ToLower(filepath.Ext(name))
  47. for _, ext := range setting.Markdown.FileExtensions {
  48. if strings.ToLower(ext) == extension {
  49. return true
  50. }
  51. }
  52. return false
  53. }
  54. // IsReadmeFile reports whether name looks like a README file
  55. // based on its extension.
  56. func IsReadmeFile(name string) bool {
  57. name = strings.ToLower(name)
  58. if len(name) < 6 {
  59. return false
  60. } else if len(name) == 6 {
  61. return name == "readme"
  62. }
  63. return name[:7] == "readme."
  64. }
  65. var (
  66. // MentionPattern matches string that mentions someone, e.g. @Unknwon
  67. MentionPattern = regexp.MustCompile(`(\s|^|\W)@[0-9a-zA-Z-_\.]+`)
  68. // CommitPattern matches link to certain commit with or without trailing hash,
  69. // e.g. https://try.gogs.io/gogs/gogs/commit/d8a994ef243349f321568f9e36d5c3f444b99cae#diff-2
  70. CommitPattern = regexp.MustCompile(`(\s|^)https?.*commit/[0-9a-zA-Z]+(#+[0-9a-zA-Z-]*)?`)
  71. // IssueFullPattern matches link to an issue with or without trailing hash,
  72. // e.g. https://try.gogs.io/gogs/gogs/issues/4#issue-685
  73. IssueFullPattern = regexp.MustCompile(`(\s|^)https?.*issues/[0-9]+(#+[0-9a-zA-Z-]*)?`)
  74. // IssueNumericPattern matches string that references to a numeric issue, e.g. #1287
  75. IssueNumericPattern = regexp.MustCompile(`( |^|\()#[0-9]+\b`)
  76. // IssueAlphanumericPattern matches string that references to an alphanumeric issue, e.g. ABC-1234
  77. IssueAlphanumericPattern = regexp.MustCompile(`( |^|\()[A-Z]{1,10}-[1-9][0-9]*\b`)
  78. // Sha1CurrentPattern matches string that represents a commit SHA, e.g. d8a994ef243349f321568f9e36d5c3f444b99cae
  79. // FIXME: this pattern matches pure numbers as well, right now we do a hack to check in RenderSha1CurrentPattern
  80. // by converting string to a number.
  81. Sha1CurrentPattern = regexp.MustCompile(`\b[0-9a-f]{40}\b`)
  82. )
  83. // FindAllMentions matches mention patterns in given content
  84. // and returns a list of found user names without @ prefix.
  85. func FindAllMentions(content string) []string {
  86. mentions := MentionPattern.FindAllString(content, -1)
  87. for i := range mentions {
  88. mentions[i] = mentions[i][strings.Index(mentions[i], "@")+1:] // Strip @ character
  89. }
  90. return mentions
  91. }
  92. // Renderer is a extended version of underlying render object.
  93. type Renderer struct {
  94. blackfriday.Renderer
  95. urlPrefix string
  96. }
  97. // Link defines how formal links should be processed to produce corresponding HTML elements.
  98. func (r *Renderer) Link(out *bytes.Buffer, link []byte, title []byte, content []byte) {
  99. if len(link) > 0 && !isLink(link) {
  100. if link[0] != '#' {
  101. link = []byte(path.Join(r.urlPrefix, string(link)))
  102. }
  103. }
  104. r.Renderer.Link(out, link, title, content)
  105. }
  106. // AutoLink defines how auto-detected links should be processed to produce corresponding HTML elements.
  107. // Reference for kind: https://github.com/russross/blackfriday/blob/master/markdown.go#L69-L76
  108. func (r *Renderer) AutoLink(out *bytes.Buffer, link []byte, kind int) {
  109. if kind != blackfriday.LINK_TYPE_NORMAL {
  110. r.Renderer.AutoLink(out, link, kind)
  111. return
  112. }
  113. // Since this method could only possibly serve one link at a time,
  114. // we do not need to find all.
  115. if bytes.HasPrefix(link, []byte(setting.AppURL)) {
  116. m := CommitPattern.Find(link)
  117. if m != nil {
  118. m = bytes.TrimSpace(m)
  119. i := strings.Index(string(m), "commit/")
  120. j := strings.Index(string(m), "#")
  121. if j == -1 {
  122. j = len(m)
  123. }
  124. out.WriteString(fmt.Sprintf(` <code><a href="%s">%s</a></code>`, m, base.ShortSha(string(m[i+7:j]))))
  125. return
  126. }
  127. m = IssueFullPattern.Find(link)
  128. if m != nil {
  129. m = bytes.TrimSpace(m)
  130. i := strings.Index(string(m), "issues/")
  131. j := strings.Index(string(m), "#")
  132. if j == -1 {
  133. j = len(m)
  134. }
  135. out.WriteString(fmt.Sprintf(`<a href="%s">#%s</a>`, m, base.ShortSha(string(m[i+7:j]))))
  136. return
  137. }
  138. }
  139. r.Renderer.AutoLink(out, link, kind)
  140. }
  141. // ListItem defines how list items should be processed to produce corresponding HTML elements.
  142. func (r *Renderer) ListItem(out *bytes.Buffer, text []byte, flags int) {
  143. // Detect procedures to draw checkboxes.
  144. switch {
  145. case bytes.HasPrefix(text, []byte("[ ] ")):
  146. text = append([]byte(`<input type="checkbox" disabled="" />`), text[3:]...)
  147. case bytes.HasPrefix(text, []byte("[x] ")):
  148. text = append([]byte(`<input type="checkbox" disabled="" checked="" />`), text[3:]...)
  149. }
  150. r.Renderer.ListItem(out, text, flags)
  151. }
  152. // Note: this section is for purpose of increase performance and
  153. // reduce memory allocation at runtime since they are constant literals.
  154. var (
  155. svgSuffix = []byte(".svg")
  156. svgSuffixWithMark = []byte(".svg?")
  157. spaceBytes = []byte(" ")
  158. spaceEncodedBytes = []byte("%20")
  159. space = " "
  160. spaceEncoded = "%20"
  161. )
  162. // Image defines how images should be processed to produce corresponding HTML elements.
  163. func (r *Renderer) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte) {
  164. prefix := strings.Replace(r.urlPrefix, "/src/", "/raw/", 1)
  165. if len(link) > 0 {
  166. if isLink(link) {
  167. // External link with .svg suffix usually means CI status.
  168. // TODO: define a keyword to allow non-svg images render as external link.
  169. if bytes.HasSuffix(link, svgSuffix) || bytes.Contains(link, svgSuffixWithMark) {
  170. r.Renderer.Image(out, link, title, alt)
  171. return
  172. }
  173. } else {
  174. if link[0] != '/' {
  175. prefix += "/"
  176. }
  177. link = bytes.Replace([]byte((prefix + string(link))), spaceBytes, spaceEncodedBytes, -1)
  178. fmt.Println(333, string(link))
  179. }
  180. }
  181. out.WriteString(`<a href="`)
  182. out.Write(link)
  183. out.WriteString(`">`)
  184. r.Renderer.Image(out, link, title, alt)
  185. out.WriteString("</a>")
  186. }
  187. // cutoutVerbosePrefix cutouts URL prefix including sub-path to
  188. // return a clean unified string of request URL path.
  189. func cutoutVerbosePrefix(prefix string) string {
  190. if len(prefix) == 0 || prefix[0] != '/' {
  191. return prefix
  192. }
  193. count := 0
  194. for i := 0; i < len(prefix); i++ {
  195. if prefix[i] == '/' {
  196. count++
  197. }
  198. if count >= 3+setting.AppSubURLDepth {
  199. return prefix[:i]
  200. }
  201. }
  202. return prefix
  203. }
  204. // RenderIssueIndexPattern renders issue indexes to corresponding links.
  205. func RenderIssueIndexPattern(rawBytes []byte, urlPrefix string, metas map[string]string) []byte {
  206. urlPrefix = cutoutVerbosePrefix(urlPrefix)
  207. pattern := IssueNumericPattern
  208. if metas["style"] == IssueNameStyleAlphanumeric {
  209. pattern = IssueAlphanumericPattern
  210. }
  211. ms := pattern.FindAll(rawBytes, -1)
  212. for _, m := range ms {
  213. if m[0] == ' ' || m[0] == '(' {
  214. m = m[1:] // ignore leading space or opening parentheses
  215. }
  216. var link string
  217. if metas == nil {
  218. link = fmt.Sprintf(`<a href="%s/issues/%s">%s</a>`, urlPrefix, m[1:], m)
  219. } else {
  220. // Support for external issue tracker
  221. if metas["style"] == IssueNameStyleAlphanumeric {
  222. metas["index"] = string(m)
  223. } else {
  224. metas["index"] = string(m[1:])
  225. }
  226. link = fmt.Sprintf(`<a href="%s">%s</a>`, com.Expand(metas["format"], metas), m)
  227. }
  228. rawBytes = bytes.Replace(rawBytes, m, []byte(link), 1)
  229. }
  230. return rawBytes
  231. }
  232. // RenderSha1CurrentPattern renders SHA1 strings to corresponding links that assumes in the same repository.
  233. func RenderSha1CurrentPattern(rawBytes []byte, urlPrefix string) []byte {
  234. return []byte(Sha1CurrentPattern.ReplaceAllStringFunc(string(rawBytes[:]), func(m string) string {
  235. if com.StrTo(m).MustInt() > 0 {
  236. return m
  237. }
  238. return fmt.Sprintf(`<a href="%s/commit/%s"><code>%s</code></a>`, urlPrefix, m, base.ShortSha(string(m)))
  239. }))
  240. }
  241. // RenderSpecialLink renders mentions, indexes and SHA1 strings to corresponding links.
  242. func RenderSpecialLink(rawBytes []byte, urlPrefix string, metas map[string]string) []byte {
  243. ms := MentionPattern.FindAll(rawBytes, -1)
  244. for _, m := range ms {
  245. m = m[bytes.Index(m, []byte("@")):]
  246. rawBytes = bytes.Replace(rawBytes, m,
  247. []byte(fmt.Sprintf(`<a href="%s/%s">%s</a>`, setting.AppSubURL, m[1:], m)), -1)
  248. }
  249. rawBytes = RenderIssueIndexPattern(rawBytes, urlPrefix, metas)
  250. rawBytes = RenderSha1CurrentPattern(rawBytes, urlPrefix)
  251. return rawBytes
  252. }
  253. // RenderRaw renders Markdown to HTML without handling special links.
  254. func RenderRaw(body []byte, urlPrefix string) []byte {
  255. htmlFlags := 0
  256. htmlFlags |= blackfriday.HTML_SKIP_STYLE
  257. htmlFlags |= blackfriday.HTML_OMIT_CONTENTS
  258. renderer := &Renderer{
  259. Renderer: blackfriday.HtmlRenderer(htmlFlags, "", ""),
  260. urlPrefix: urlPrefix,
  261. }
  262. // set up the parser
  263. extensions := 0
  264. extensions |= blackfriday.EXTENSION_NO_INTRA_EMPHASIS
  265. extensions |= blackfriday.EXTENSION_TABLES
  266. extensions |= blackfriday.EXTENSION_FENCED_CODE
  267. extensions |= blackfriday.EXTENSION_AUTOLINK
  268. extensions |= blackfriday.EXTENSION_STRIKETHROUGH
  269. extensions |= blackfriday.EXTENSION_SPACE_HEADERS
  270. extensions |= blackfriday.EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK
  271. if setting.Markdown.EnableHardLineBreak {
  272. extensions |= blackfriday.EXTENSION_HARD_LINE_BREAK
  273. }
  274. body = blackfriday.Markdown(body, renderer, extensions)
  275. return body
  276. }
  277. var (
  278. leftAngleBracket = []byte("</")
  279. rightAngleBracket = []byte(">")
  280. )
  281. var noEndTags = []string{"img", "input", "br", "hr"}
  282. // PostProcess treats different types of HTML differently,
  283. // and only renders special links for plain text blocks.
  284. func PostProcess(rawHTML []byte, urlPrefix string, metas map[string]string) []byte {
  285. startTags := make([]string, 0, 5)
  286. var buf bytes.Buffer
  287. tokenizer := html.NewTokenizer(bytes.NewReader(rawHTML))
  288. OUTER_LOOP:
  289. for html.ErrorToken != tokenizer.Next() {
  290. token := tokenizer.Token()
  291. switch token.Type {
  292. case html.TextToken:
  293. buf.Write(RenderSpecialLink([]byte(token.String()), urlPrefix, metas))
  294. case html.StartTagToken:
  295. buf.WriteString(token.String())
  296. tagName := token.Data
  297. // If this is an excluded tag, we skip processing all output until a close tag is encountered.
  298. if strings.EqualFold("a", tagName) || strings.EqualFold("code", tagName) || strings.EqualFold("pre", tagName) {
  299. stackNum := 1
  300. for html.ErrorToken != tokenizer.Next() {
  301. token = tokenizer.Token()
  302. // Copy the token to the output verbatim
  303. buf.WriteString(token.String())
  304. if token.Type == html.StartTagToken {
  305. stackNum++
  306. }
  307. // If this is the close tag to the outer-most, we are done
  308. if token.Type == html.EndTagToken {
  309. stackNum--
  310. if stackNum <= 0 && strings.EqualFold(tagName, token.Data) {
  311. break
  312. }
  313. }
  314. }
  315. continue OUTER_LOOP
  316. }
  317. if !com.IsSliceContainsStr(noEndTags, token.Data) {
  318. startTags = append(startTags, token.Data)
  319. }
  320. case html.EndTagToken:
  321. if len(startTags) == 0 {
  322. buf.WriteString(token.String())
  323. break
  324. }
  325. buf.Write(leftAngleBracket)
  326. buf.WriteString(startTags[len(startTags)-1])
  327. buf.Write(rightAngleBracket)
  328. startTags = startTags[:len(startTags)-1]
  329. default:
  330. buf.WriteString(token.String())
  331. }
  332. }
  333. if io.EOF == tokenizer.Err() {
  334. return buf.Bytes()
  335. }
  336. // If we are not at the end of the input, then some other parsing error has occurred,
  337. // so return the input verbatim.
  338. return rawHTML
  339. }
  340. // Render renders Markdown to HTML with special links.
  341. func Render(rawBytes []byte, urlPrefix string, metas map[string]string) []byte {
  342. urlPrefix = strings.Replace(urlPrefix, space, spaceEncoded, -1)
  343. result := RenderRaw(rawBytes, urlPrefix)
  344. result = PostProcess(result, urlPrefix, metas)
  345. result = Sanitizer.SanitizeBytes(result)
  346. return result
  347. }
  348. // RenderString renders Markdown to HTML with special links and returns string type.
  349. func RenderString(raw, urlPrefix string, metas map[string]string) string {
  350. return string(Render([]byte(raw), urlPrefix, metas))
  351. }