2014-04-10 22:20:58 +04:00
// 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"
"net/http"
"path"
"path/filepath"
"regexp"
"strings"
2014-10-05 01:15:22 +04:00
"github.com/russross/blackfriday"
2014-09-14 21:35:22 +04:00
"github.com/gogits/gogs/modules/setting"
2014-04-10 22:20:58 +04:00
)
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 17:13:55 +04:00
case ".md" , ".markdown" , ".mdown" , ".mkd" :
2014-04-10 22:20:58 +04:00
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
}
func IsReadmeFile ( name string ) bool {
name = strings . ToLower ( name )
if len ( name ) < 6 {
return false
}
if name [ : 6 ] == "readme" {
return true
}
return false
}
type CustomRender struct {
2014-10-05 01:15:22 +04:00
blackfriday . Renderer
2014-04-10 22:20:58 +04:00
urlPrefix string
}
func ( options * CustomRender ) Link ( out * bytes . Buffer , link [ ] byte , title [ ] byte , content [ ] byte ) {
if len ( link ) > 0 && ! isLink ( link ) {
if link [ 0 ] == '#' {
// link = append([]byte(options.urlPrefix), link...)
} else {
link = [ ] byte ( path . Join ( options . urlPrefix , string ( link ) ) )
}
}
options . Renderer . Link ( out , link , title , content )
}
2014-10-15 07:44:34 +04:00
func ( options * CustomRender ) Image ( out * bytes . Buffer , link [ ] byte , title [ ] byte , alt [ ] byte ) {
if len ( link ) > 0 && ! isLink ( link ) {
link = [ ] byte ( path . Join ( strings . Replace ( options . urlPrefix , "/src/" , "/raw/" , 1 ) , string ( link ) ) )
}
options . Renderer . Image ( out , link , title , alt )
}
2014-04-10 22:20:58 +04:00
var (
2014-12-01 01:30:21 +03:00
MentionPattern = regexp . MustCompile ( ` @[0-9a-zA-Z_] { 1,} ` )
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]+ ` )
sha1CurrentPattern = regexp . MustCompile ( ` \b[0-9a-f] { 40}\b ` )
2014-04-10 22:20:58 +04:00
)
func RenderSpecialLink ( rawBytes [ ] byte , urlPrefix string ) [ ] byte {
2014-05-13 03:32:35 +04:00
buf := bytes . NewBufferString ( "" )
inCodeBlock := false
codeBlockPrefix := [ ] byte ( "```" )
lineBreak := [ ] byte ( "\n" )
tab := [ ] byte ( "\t" )
lines := bytes . Split ( rawBytes , lineBreak )
for _ , line := range lines {
if bytes . HasPrefix ( line , codeBlockPrefix ) {
inCodeBlock = ! inCodeBlock
}
if ! inCodeBlock && ! bytes . HasPrefix ( line , tab ) {
ms := MentionPattern . FindAll ( line , - 1 )
for _ , m := range ms {
line = bytes . Replace ( line , m ,
2014-09-20 04:11:34 +04:00
[ ] byte ( fmt . Sprintf ( ` <a href="%s/user/%s">%s</a> ` , setting . AppSubUrl , m [ 1 : ] , m ) ) , - 1 )
2014-05-13 03:32:35 +04:00
}
}
buf . Write ( line )
buf . Write ( lineBreak )
2014-04-10 22:20:58 +04:00
}
2014-05-13 03:32:35 +04:00
rawBytes = buf . Bytes ( )
ms := commitPattern . FindAll ( rawBytes , - 1 )
2014-04-10 22:20:58 +04:00
for _ , m := range ms {
m = bytes . TrimSpace ( m )
i := strings . Index ( string ( m ) , "commit/" )
j := strings . Index ( string ( m ) , "#" )
if j == - 1 {
j = len ( m )
}
rawBytes = bytes . Replace ( rawBytes , m , [ ] byte ( fmt . Sprintf (
` <code><a href="%s">%s</a></code> ` , m , ShortSha ( string ( m [ i + 7 : j ] ) ) ) ) , - 1 )
}
ms = issueFullPattern . FindAll ( rawBytes , - 1 )
for _ , m := range ms {
m = bytes . TrimSpace ( m )
i := strings . Index ( string ( m ) , "issues/" )
j := strings . Index ( string ( m ) , "#" )
if j == - 1 {
j = len ( m )
}
rawBytes = bytes . Replace ( rawBytes , m , [ ] byte ( fmt . Sprintf (
` <a href="%s">#%s</a> ` , m , ShortSha ( string ( m [ i + 7 : j ] ) ) ) ) , - 1 )
}
2014-12-09 10:18:25 +03:00
rawBytes = RenderIssueIndexPattern ( rawBytes , urlPrefix )
2014-12-01 01:30:21 +03:00
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 )
}
return rawBytes
}
2014-12-09 10:18:25 +03:00
func RenderIssueIndexPattern ( rawBytes [ ] byte , urlPrefix string ) [ ] byte {
2014-12-01 01:30:21 +03:00
ms := issueIndexPattern . FindAll ( rawBytes , - 1 )
2014-04-10 22:20:58 +04:00
for _ , m := range ms {
rawBytes = bytes . Replace ( rawBytes , m , [ ] byte ( fmt . Sprintf (
` <a href="%s/issues/%s">%s</a> ` , urlPrefix , m [ 1 : ] , m ) ) , - 1 )
}
return rawBytes
}
2014-05-05 21:08:01 +04:00
func RenderRawMarkdown ( body [ ] byte , urlPrefix string ) [ ] byte {
2014-04-10 22:20:58 +04:00
htmlFlags := 0
2014-10-05 01:15:22 +04:00
// htmlFlags |= blackfriday.HTML_USE_XHTML
// htmlFlags |= blackfriday.HTML_USE_SMARTYPANTS
// htmlFlags |= blackfriday.HTML_SMARTYPANTS_FRACTIONS
// htmlFlags |= blackfriday.HTML_SMARTYPANTS_LATEX_DASHES
// htmlFlags |= blackfriday.HTML_SKIP_HTML
htmlFlags |= blackfriday . HTML_SKIP_STYLE
// htmlFlags |= blackfriday.HTML_SKIP_SCRIPT
// htmlFlags |= blackfriday.HTML_GITHUB_BLOCKCODE
htmlFlags |= blackfriday . HTML_OMIT_CONTENTS
// htmlFlags |= blackfriday.HTML_COMPLETE_PAGE
2014-04-10 22:20:58 +04:00
renderer := & CustomRender {
2014-10-05 01:15:22 +04:00
Renderer : blackfriday . HtmlRenderer ( htmlFlags , "" , "" ) ,
2014-04-10 22:20:58 +04:00
urlPrefix : urlPrefix ,
}
// set up the parser
extensions := 0
2014-10-05 01:15:22 +04:00
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_HARD_LINE_BREAK
extensions |= blackfriday . EXTENSION_SPACE_HEADERS
extensions |= blackfriday . EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK
body = blackfriday . Markdown ( body , renderer , extensions )
2014-05-05 21:08:01 +04:00
return body
}
func RenderMarkdown ( rawBytes [ ] byte , urlPrefix string ) [ ] byte {
body := RenderSpecialLink ( rawBytes , urlPrefix )
body = RenderRawMarkdown ( body , urlPrefix )
2014-10-05 01:15:22 +04:00
body = XSS ( body )
2014-04-10 22:20:58 +04:00
return body
}
2014-04-14 09:57:25 +04:00
func RenderMarkdownString ( raw , urlPrefix string ) string {
return string ( RenderMarkdown ( [ ] byte ( raw ) , urlPrefix ) )
}