2014-04-10 23:50:58 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package base
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2015-03-09 09:44:50 +05:30
|
|
|
"io"
|
2014-04-10 23:50:58 +05:30
|
|
|
"net/http"
|
|
|
|
"path"
|
|
|
|
"path/filepath"
|
|
|
|
"regexp"
|
|
|
|
"strings"
|
|
|
|
|
2015-11-20 16:07:51 +05:30
|
|
|
"github.com/Unknwon/com"
|
2014-10-05 02:45:22 +05:30
|
|
|
"github.com/russross/blackfriday"
|
2015-03-24 04:02:24 +05:30
|
|
|
"golang.org/x/net/html"
|
2014-10-05 02:45:22 +05:30
|
|
|
|
2014-09-14 23:05:22 +05:30
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-04-10 23:50:58 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
func isletter(c byte) bool {
|
|
|
|
return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')
|
|
|
|
}
|
|
|
|
|
|
|
|
func isalnum(c byte) bool {
|
|
|
|
return (c >= '0' && c <= '9') || isletter(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
var validLinks = [][]byte{[]byte("http://"), []byte("https://"), []byte("ftp://"), []byte("mailto://")}
|
|
|
|
|
|
|
|
func isLink(link []byte) bool {
|
|
|
|
for _, prefix := range validLinks {
|
|
|
|
if len(link) > len(prefix) && bytes.Equal(bytes.ToLower(link[:len(prefix)]), prefix) && isalnum(link[len(prefix)]) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsMarkdownFile(name string) bool {
|
|
|
|
name = strings.ToLower(name)
|
|
|
|
switch filepath.Ext(name) {
|
2014-08-23 18:43:55 +05:30
|
|
|
case ".md", ".markdown", ".mdown", ".mkd":
|
2014-04-10 23:50:58 +05:30
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsTextFile(data []byte) (string, bool) {
|
|
|
|
contentType := http.DetectContentType(data)
|
|
|
|
if strings.Index(contentType, "text/") != -1 {
|
|
|
|
return contentType, true
|
|
|
|
}
|
|
|
|
return contentType, false
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsImageFile(data []byte) (string, bool) {
|
|
|
|
contentType := http.DetectContentType(data)
|
|
|
|
if strings.Index(contentType, "image/") != -1 {
|
|
|
|
return contentType, true
|
|
|
|
}
|
|
|
|
return contentType, false
|
|
|
|
}
|
|
|
|
|
2015-02-03 09:34:36 +05:30
|
|
|
// IsReadmeFile returns true if given file name suppose to be a README file.
|
2014-04-10 23:50:58 +05:30
|
|
|
func IsReadmeFile(name string) bool {
|
|
|
|
name = strings.ToLower(name)
|
|
|
|
if len(name) < 6 {
|
|
|
|
return false
|
2015-02-03 09:34:36 +05:30
|
|
|
} else if len(name) == 6 {
|
|
|
|
if name == "readme" {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
2014-04-10 23:50:58 +05:30
|
|
|
}
|
2015-02-03 09:34:36 +05:30
|
|
|
if name[:7] == "readme." {
|
2014-04-10 23:50:58 +05:30
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-01-09 08:29:04 +05:30
|
|
|
var (
|
|
|
|
MentionPattern = regexp.MustCompile(`(\s|^)@[0-9a-zA-Z_\.]+`)
|
|
|
|
commitPattern = regexp.MustCompile(`(\s|^)https?.*commit/[0-9a-zA-Z]+(#+[0-9a-zA-Z-]*)?`)
|
|
|
|
issueFullPattern = regexp.MustCompile(`(\s|^)https?.*issues/[0-9]+(#+[0-9a-zA-Z-]*)?`)
|
|
|
|
issueIndexPattern = regexp.MustCompile(`( |^|\()#[0-9]+\b`)
|
|
|
|
sha1CurrentPattern = regexp.MustCompile(`\b[0-9a-f]{40}\b`)
|
|
|
|
)
|
|
|
|
|
2014-04-10 23:50:58 +05:30
|
|
|
type CustomRender struct {
|
2014-10-05 02:45:22 +05:30
|
|
|
blackfriday.Renderer
|
2014-04-10 23:50:58 +05:30
|
|
|
urlPrefix string
|
|
|
|
}
|
|
|
|
|
2016-01-09 08:29:04 +05:30
|
|
|
func (r *CustomRender) Link(out *bytes.Buffer, link []byte, title []byte, content []byte) {
|
2014-04-10 23:50:58 +05:30
|
|
|
if len(link) > 0 && !isLink(link) {
|
|
|
|
if link[0] == '#' {
|
|
|
|
// link = append([]byte(options.urlPrefix), link...)
|
|
|
|
} else {
|
2016-01-09 08:29:04 +05:30
|
|
|
link = []byte(path.Join(r.urlPrefix, string(link)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
r.Renderer.Link(out, link, title, content)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *CustomRender) AutoLink(out *bytes.Buffer, link []byte, kind int) {
|
|
|
|
if kind != 1 {
|
|
|
|
r.Renderer.AutoLink(out, link, kind)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// This method could only possibly serve one link at a time, no need to find all.
|
|
|
|
m := commitPattern.Find(link)
|
|
|
|
if m != nil {
|
|
|
|
m = bytes.TrimSpace(m)
|
|
|
|
i := strings.Index(string(m), "commit/")
|
|
|
|
j := strings.Index(string(m), "#")
|
|
|
|
if j == -1 {
|
|
|
|
j = len(m)
|
|
|
|
}
|
|
|
|
out.WriteString(fmt.Sprintf(` <code><a href="%s">%s</a></code>`, m, ShortSha(string(m[i+7:j]))))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
m = issueFullPattern.Find(link)
|
|
|
|
if m != nil {
|
|
|
|
m = bytes.TrimSpace(m)
|
|
|
|
i := strings.Index(string(m), "issues/")
|
|
|
|
j := strings.Index(string(m), "#")
|
|
|
|
if j == -1 {
|
|
|
|
j = len(m)
|
2014-04-10 23:50:58 +05:30
|
|
|
}
|
2016-01-09 08:29:04 +05:30
|
|
|
out.WriteString(fmt.Sprintf(` <a href="%s">#%s</a>`, m, ShortSha(string(m[i+7:j]))))
|
|
|
|
return
|
2014-04-10 23:50:58 +05:30
|
|
|
}
|
|
|
|
|
2016-01-09 08:29:04 +05:30
|
|
|
r.Renderer.AutoLink(out, link, kind)
|
2014-04-10 23:50:58 +05:30
|
|
|
}
|
|
|
|
|
2016-01-13 17:55:52 +05:30
|
|
|
func (options *CustomRender) ListItem(out *bytes.Buffer, text []byte, flags int) {
|
|
|
|
switch {
|
|
|
|
case bytes.HasPrefix(text, []byte("[ ] ")):
|
|
|
|
text = append([]byte(`<input type="checkbox" disabled="" />`), text[3:]...)
|
|
|
|
case bytes.HasPrefix(text, []byte("[x] ")):
|
|
|
|
text = append([]byte(`<input type="checkbox" disabled="" checked="" />`), text[3:]...)
|
|
|
|
}
|
|
|
|
options.Renderer.ListItem(out, text, flags)
|
|
|
|
}
|
|
|
|
|
2015-11-20 16:07:51 +05:30
|
|
|
var (
|
|
|
|
svgSuffix = []byte(".svg")
|
|
|
|
svgSuffixWithMark = []byte(".svg?")
|
|
|
|
)
|
|
|
|
|
2016-01-09 08:29:04 +05:30
|
|
|
func (r *CustomRender) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte) {
|
|
|
|
prefix := strings.Replace(r.urlPrefix, "/src/", "/raw/", 1)
|
2015-11-20 16:07:51 +05:30
|
|
|
if len(link) > 0 {
|
|
|
|
if isLink(link) {
|
|
|
|
// External link with .svg suffix usually means CI status.
|
|
|
|
if bytes.HasSuffix(link, svgSuffix) || bytes.Contains(link, svgSuffixWithMark) {
|
2016-01-09 08:29:04 +05:30
|
|
|
r.Renderer.Image(out, link, title, alt)
|
2015-11-20 16:07:51 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if link[0] != '/' {
|
|
|
|
prefix += "/"
|
|
|
|
}
|
|
|
|
link = []byte(prefix + string(link))
|
2015-11-06 21:40:27 +05:30
|
|
|
}
|
2014-10-15 09:14:34 +05:30
|
|
|
}
|
|
|
|
|
2015-11-06 21:40:27 +05:30
|
|
|
out.WriteString(`<a href="`)
|
|
|
|
out.Write(link)
|
|
|
|
out.WriteString(`">`)
|
2016-01-09 08:29:04 +05:30
|
|
|
r.Renderer.Image(out, link, title, alt)
|
2015-11-06 21:40:27 +05:30
|
|
|
out.WriteString("</a>")
|
2014-10-15 09:14:34 +05:30
|
|
|
}
|
|
|
|
|
2015-11-16 04:07:26 +05:30
|
|
|
func cutoutVerbosePrefix(prefix string) string {
|
|
|
|
count := 0
|
|
|
|
for i := 0; i < len(prefix); i++ {
|
|
|
|
if prefix[i] == '/' {
|
|
|
|
count++
|
|
|
|
}
|
|
|
|
if count >= 3 {
|
|
|
|
return prefix[:i]
|
|
|
|
}
|
2015-11-16 02:52:25 +05:30
|
|
|
}
|
2015-11-16 04:07:26 +05:30
|
|
|
return prefix
|
|
|
|
}
|
|
|
|
|
2015-12-05 08:00:33 +05:30
|
|
|
func RenderIssueIndexPattern(rawBytes []byte, urlPrefix string, metas map[string]string) []byte {
|
2015-11-16 04:07:26 +05:30
|
|
|
urlPrefix = cutoutVerbosePrefix(urlPrefix)
|
2014-12-01 04:00:21 +05:30
|
|
|
ms := issueIndexPattern.FindAll(rawBytes, -1)
|
2014-04-10 23:50:58 +05:30
|
|
|
for _, m := range ms {
|
2015-03-24 04:02:24 +05:30
|
|
|
var space string
|
|
|
|
m2 := m
|
2015-12-13 02:31:54 +05:30
|
|
|
if m2[0] != '#' {
|
|
|
|
space = string(m2[0])
|
2015-03-24 04:02:24 +05:30
|
|
|
m2 = m2[1:]
|
|
|
|
}
|
2015-12-05 08:00:33 +05:30
|
|
|
if metas == nil {
|
|
|
|
rawBytes = bytes.Replace(rawBytes, m, []byte(fmt.Sprintf(`%s<a href="%s/issues/%s">%s</a>`,
|
|
|
|
space, urlPrefix, m2[1:], m2)), 1)
|
|
|
|
} else {
|
|
|
|
// Support for external issue tracker
|
|
|
|
metas["index"] = string(m2[1:])
|
|
|
|
rawBytes = bytes.Replace(rawBytes, m, []byte(fmt.Sprintf(`%s<a href="%s">%s</a>`,
|
|
|
|
space, com.Expand(metas["format"], metas), m2)), 1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rawBytes
|
|
|
|
}
|
|
|
|
|
|
|
|
func RenderSpecialLink(rawBytes []byte, urlPrefix string, metas map[string]string) []byte {
|
|
|
|
ms := MentionPattern.FindAll(rawBytes, -1)
|
|
|
|
for _, m := range ms {
|
|
|
|
m = bytes.TrimSpace(m)
|
|
|
|
rawBytes = bytes.Replace(rawBytes, m,
|
|
|
|
[]byte(fmt.Sprintf(`<a href="%s/%s">%s</a>`, setting.AppSubUrl, m[1:], m)), -1)
|
|
|
|
}
|
|
|
|
|
|
|
|
rawBytes = RenderIssueIndexPattern(rawBytes, urlPrefix, metas)
|
|
|
|
rawBytes = RenderSha1CurrentPattern(rawBytes, urlPrefix)
|
|
|
|
return rawBytes
|
|
|
|
}
|
|
|
|
|
|
|
|
func RenderSha1CurrentPattern(rawBytes []byte, urlPrefix string) []byte {
|
|
|
|
ms := sha1CurrentPattern.FindAll(rawBytes, -1)
|
|
|
|
for _, m := range ms {
|
|
|
|
rawBytes = bytes.Replace(rawBytes, m, []byte(fmt.Sprintf(
|
|
|
|
`<a href="%s/commit/%s"><code>%s</code></a>`, urlPrefix, m, ShortSha(string(m)))), -1)
|
2014-04-10 23:50:58 +05:30
|
|
|
}
|
|
|
|
return rawBytes
|
|
|
|
}
|
|
|
|
|
2014-05-05 22:38:01 +05:30
|
|
|
func RenderRawMarkdown(body []byte, urlPrefix string) []byte {
|
2014-04-10 23:50:58 +05:30
|
|
|
htmlFlags := 0
|
2014-10-05 02:45:22 +05:30
|
|
|
htmlFlags |= blackfriday.HTML_SKIP_STYLE
|
|
|
|
htmlFlags |= blackfriday.HTML_OMIT_CONTENTS
|
2014-04-10 23:50:58 +05:30
|
|
|
renderer := &CustomRender{
|
2014-10-05 02:45:22 +05:30
|
|
|
Renderer: blackfriday.HtmlRenderer(htmlFlags, "", ""),
|
2014-04-10 23:50:58 +05:30
|
|
|
urlPrefix: urlPrefix,
|
|
|
|
}
|
|
|
|
|
|
|
|
// set up the parser
|
|
|
|
extensions := 0
|
2014-10-05 02:45:22 +05:30
|
|
|
extensions |= blackfriday.EXTENSION_NO_INTRA_EMPHASIS
|
|
|
|
extensions |= blackfriday.EXTENSION_TABLES
|
|
|
|
extensions |= blackfriday.EXTENSION_FENCED_CODE
|
|
|
|
extensions |= blackfriday.EXTENSION_AUTOLINK
|
|
|
|
extensions |= blackfriday.EXTENSION_STRIKETHROUGH
|
|
|
|
extensions |= blackfriday.EXTENSION_SPACE_HEADERS
|
|
|
|
extensions |= blackfriday.EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK
|
|
|
|
|
2015-09-01 18:02:02 +05:30
|
|
|
if setting.Markdown.EnableHardLineBreak {
|
|
|
|
extensions |= blackfriday.EXTENSION_HARD_LINE_BREAK
|
|
|
|
}
|
|
|
|
|
2014-10-05 02:45:22 +05:30
|
|
|
body = blackfriday.Markdown(body, renderer, extensions)
|
2014-05-05 22:38:01 +05:30
|
|
|
return body
|
|
|
|
}
|
|
|
|
|
2015-11-20 12:22:11 +05:30
|
|
|
var (
|
|
|
|
leftAngleBracket = []byte("</")
|
|
|
|
rightAngleBracket = []byte(">")
|
|
|
|
)
|
|
|
|
|
2015-11-20 16:07:51 +05:30
|
|
|
var noEndTags = []string{"img", "input", "br", "hr"}
|
|
|
|
|
2015-03-24 04:02:24 +05:30
|
|
|
// PostProcessMarkdown treats different types of HTML differently,
|
|
|
|
// and only renders special links for plain text blocks.
|
2015-12-05 08:00:33 +05:30
|
|
|
func PostProcessMarkdown(rawHtml []byte, urlPrefix string, metas map[string]string) []byte {
|
2015-11-20 16:07:51 +05:30
|
|
|
startTags := make([]string, 0, 5)
|
2015-03-09 09:44:50 +05:30
|
|
|
var buf bytes.Buffer
|
|
|
|
tokenizer := html.NewTokenizer(bytes.NewReader(rawHtml))
|
2015-11-20 16:07:51 +05:30
|
|
|
|
|
|
|
OUTER_LOOP:
|
2015-03-09 09:44:50 +05:30
|
|
|
for html.ErrorToken != tokenizer.Next() {
|
|
|
|
token := tokenizer.Token()
|
|
|
|
switch token.Type {
|
2015-03-24 04:02:24 +05:30
|
|
|
case html.TextToken:
|
2015-12-05 08:00:33 +05:30
|
|
|
buf.Write(RenderSpecialLink([]byte(token.String()), urlPrefix, metas))
|
2015-03-24 04:02:24 +05:30
|
|
|
|
|
|
|
case html.StartTagToken:
|
|
|
|
buf.WriteString(token.String())
|
|
|
|
tagName := token.Data
|
|
|
|
// If this is an excluded tag, we skip processing all output until a close tag is encountered.
|
|
|
|
if strings.EqualFold("a", tagName) || strings.EqualFold("code", tagName) || strings.EqualFold("pre", tagName) {
|
2015-11-22 07:36:11 +05:30
|
|
|
stackNum := 1
|
2015-03-24 04:02:24 +05:30
|
|
|
for html.ErrorToken != tokenizer.Next() {
|
|
|
|
token = tokenizer.Token()
|
2015-11-20 16:07:51 +05:30
|
|
|
|
2015-03-24 04:02:24 +05:30
|
|
|
// Copy the token to the output verbatim
|
|
|
|
buf.WriteString(token.String())
|
2015-11-22 07:36:11 +05:30
|
|
|
|
|
|
|
if token.Type == html.StartTagToken {
|
|
|
|
stackNum++
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this is the close tag to the outer-most, we are done
|
2015-11-20 16:07:51 +05:30
|
|
|
if token.Type == html.EndTagToken && strings.EqualFold(tagName, token.Data) {
|
2015-11-22 07:36:11 +05:30
|
|
|
stackNum--
|
|
|
|
|
|
|
|
if stackNum == 0 {
|
|
|
|
break
|
|
|
|
}
|
2015-03-09 09:44:50 +05:30
|
|
|
}
|
|
|
|
}
|
2015-11-20 16:07:51 +05:30
|
|
|
continue OUTER_LOOP
|
|
|
|
}
|
|
|
|
|
|
|
|
if !com.IsSliceContainsStr(noEndTags, token.Data) {
|
|
|
|
startTags = append(startTags, token.Data)
|
2015-03-24 04:02:24 +05:30
|
|
|
}
|
2015-03-09 09:44:50 +05:30
|
|
|
|
2015-11-20 12:22:11 +05:30
|
|
|
case html.EndTagToken:
|
2015-11-25 05:58:24 +05:30
|
|
|
if len(startTags) == 0 {
|
2015-11-25 05:59:35 +05:30
|
|
|
buf.WriteString(token.String())
|
2015-11-25 05:58:24 +05:30
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2015-11-20 12:22:11 +05:30
|
|
|
buf.Write(leftAngleBracket)
|
2015-11-20 16:07:51 +05:30
|
|
|
buf.WriteString(startTags[len(startTags)-1])
|
2015-11-20 12:22:11 +05:30
|
|
|
buf.Write(rightAngleBracket)
|
2015-11-20 16:07:51 +05:30
|
|
|
startTags = startTags[:len(startTags)-1]
|
2015-03-24 04:02:24 +05:30
|
|
|
default:
|
|
|
|
buf.WriteString(token.String())
|
2015-03-09 09:44:50 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if io.EOF == tokenizer.Err() {
|
|
|
|
return buf.Bytes()
|
|
|
|
}
|
|
|
|
|
2015-03-24 04:02:24 +05:30
|
|
|
// If we are not at the end of the input, then some other parsing error has occurred,
|
|
|
|
// so return the input verbatim.
|
2015-03-09 09:44:50 +05:30
|
|
|
return rawHtml
|
|
|
|
}
|
2015-03-24 04:02:24 +05:30
|
|
|
|
2015-12-05 08:00:33 +05:30
|
|
|
func RenderMarkdown(rawBytes []byte, urlPrefix string, metas map[string]string) []byte {
|
2016-01-09 08:29:04 +05:30
|
|
|
result := RenderRawMarkdown(rawBytes, urlPrefix)
|
2015-12-05 08:00:33 +05:30
|
|
|
result = PostProcessMarkdown(result, urlPrefix, metas)
|
2015-03-24 04:02:24 +05:30
|
|
|
result = Sanitizer.SanitizeBytes(result)
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2015-12-05 08:00:33 +05:30
|
|
|
func RenderMarkdownString(raw, urlPrefix string, metas map[string]string) string {
|
|
|
|
return string(RenderMarkdown([]byte(raw), urlPrefix, metas))
|
2015-03-24 04:02:24 +05:30
|
|
|
}
|