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.
2016-12-06 20:58:31 +03:00
package templates
2014-04-10 22:20:58 +04:00
import (
2017-03-02 03:25:44 +03:00
"bytes"
2014-04-10 22:20:58 +04:00
"container/list"
"encoding/json"
"fmt"
"html/template"
2016-08-12 02:16:36 +03:00
"mime"
"path/filepath"
2014-05-22 05:37:13 +04:00
"runtime"
2014-04-10 22:20:58 +04:00
"strings"
"time"
2014-05-26 04:11:25 +04:00
2017-02-16 02:05:02 +03:00
"github.com/microcosm-cc/bluemonday"
2014-12-22 12:01:52 +03:00
"golang.org/x/net/html/charset"
"golang.org/x/text/transform"
2016-08-12 03:07:09 +03:00
"gopkg.in/editorconfig/editorconfig-core-go.v1"
2014-12-22 12:01:52 +03:00
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/log"
2017-09-16 20:17:57 +03:00
"code.gitea.io/gitea/modules/markup"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/setting"
2014-04-10 22:20:58 +04:00
)
2016-11-25 09:23:48 +03:00
// NewFuncMap returns functions for injecting to templates
2016-03-07 00:40:04 +03:00
func NewFuncMap ( ) [ ] template . FuncMap {
return [ ] template . FuncMap { map [ string ] interface { } {
"GoVer" : func ( ) string {
return strings . Title ( runtime . Version ( ) )
} ,
"UseHTTPS" : func ( ) bool {
2016-11-27 13:14:25 +03:00
return strings . HasPrefix ( setting . AppURL , "https" )
2016-03-07 00:40:04 +03:00
} ,
"AppName" : func ( ) string {
return setting . AppName
} ,
"AppSubUrl" : func ( ) string {
2016-11-27 13:14:25 +03:00
return setting . AppSubURL
2016-03-07 00:40:04 +03:00
} ,
"AppUrl" : func ( ) string {
2016-11-27 13:14:25 +03:00
return setting . AppURL
2016-03-07 00:40:04 +03:00
} ,
"AppVer" : func ( ) string {
return setting . AppVer
} ,
2017-02-28 03:40:02 +03:00
"AppBuiltWith" : func ( ) string {
2017-03-01 04:45:21 +03:00
return setting . AppBuiltWith
2017-02-28 03:40:02 +03:00
} ,
2016-03-07 00:40:04 +03:00
"AppDomain" : func ( ) string {
return setting . Domain
} ,
"DisableGravatar" : func ( ) bool {
return setting . DisableGravatar
} ,
2016-09-01 08:01:32 +03:00
"ShowFooterTemplateLoadTime" : func ( ) bool {
return setting . ShowFooterTemplateLoadTime
} ,
2016-03-07 00:40:04 +03:00
"LoadTimes" : func ( startTime time . Time ) string {
return fmt . Sprint ( time . Since ( startTime ) . Nanoseconds ( ) / 1e6 ) + "ms"
} ,
"AvatarLink" : base . AvatarLink ,
"Safe" : Safe ,
2017-08-23 17:58:05 +03:00
"SafeJS" : SafeJS ,
2017-02-16 02:05:02 +03:00
"Sanitize" : bluemonday . UGCPolicy ( ) . Sanitize ,
2016-03-07 00:40:04 +03:00
"Str2html" : Str2html ,
"TimeSince" : base . TimeSince ,
"RawTimeSince" : base . RawTimeSince ,
"FileSize" : base . FileSize ,
"Subtract" : base . Subtract ,
"Add" : func ( a , b int ) int {
return a + b
} ,
"ActionIcon" : ActionIcon ,
"DateFmtLong" : func ( t time . Time ) string {
return t . Format ( time . RFC1123Z )
} ,
"DateFmtShort" : func ( t time . Time ) string {
return t . Format ( "Jan 02, 2006" )
} ,
2017-04-11 16:30:15 +03:00
"SizeFmt" : func ( s int64 ) string {
return base . FileSize ( s )
} ,
2016-03-07 00:40:04 +03:00
"List" : List ,
"SubStr" : func ( str string , start , length int ) string {
if len ( str ) == 0 {
return ""
}
end := start + length
if length == - 1 {
end = len ( str )
}
if len ( str ) < end {
return str
}
return str [ start : end ]
} ,
2016-08-30 15:07:50 +03:00
"EllipsisString" : base . EllipsisString ,
2016-03-07 00:40:04 +03:00
"DiffTypeToStr" : DiffTypeToStr ,
"DiffLineTypeToStr" : DiffLineTypeToStr ,
"Sha1" : Sha1 ,
"ShortSha" : base . ShortSha ,
"MD5" : base . EncodeMD5 ,
"ActionContent2Commits" : ActionContent2Commits ,
"EscapePound" : func ( str string ) string {
2016-09-18 18:46:52 +03:00
return strings . NewReplacer ( "%" , "%25" , "#" , "%23" , " " , "%20" , "?" , "%3F" ) . Replace ( str )
2016-03-07 00:40:04 +03:00
} ,
"RenderCommitMessage" : RenderCommitMessage ,
"ThemeColorMetaTag" : func ( ) string {
2016-07-23 19:23:54 +03:00
return setting . UI . ThemeColorMetaTag
2016-03-07 00:40:04 +03:00
} ,
2017-04-01 04:03:01 +03:00
"MetaAuthor" : func ( ) string {
return setting . UI . Meta . Author
} ,
"MetaDescription" : func ( ) string {
return setting . UI . Meta . Description
} ,
"MetaKeywords" : func ( ) string {
return setting . UI . Meta . Keywords
} ,
2016-08-12 02:16:36 +03:00
"FilenameIsImage" : func ( filename string ) bool {
mimeType := mime . TypeByExtension ( filepath . Ext ( filename ) )
return strings . HasPrefix ( mimeType , "image/" )
} ,
2016-08-12 03:07:09 +03:00
"TabSizeClass" : func ( ec * editorconfig . Editorconfig , filename string ) string {
if ec != nil {
def := ec . GetDefinitionForFilename ( filename )
if def . TabWidth > 0 {
return fmt . Sprintf ( "tab-size-%d" , def . TabWidth )
}
}
return "tab-size-8"
} ,
2016-12-28 19:35:52 +03:00
"SubJumpablePath" : func ( str string ) [ ] string {
var path [ ] string
index := strings . LastIndex ( str , "/" )
if index != - 1 && index != len ( str ) {
2017-01-27 18:03:32 +03:00
path = append ( path , str [ 0 : index + 1 ] )
path = append ( path , str [ index + 1 : ] )
2016-12-28 19:35:52 +03:00
} else {
path = append ( path , str )
}
return path
} ,
2017-03-02 03:25:44 +03:00
"JsonPrettyPrint" : func ( in string ) string {
var out bytes . Buffer
err := json . Indent ( & out , [ ] byte ( in ) , "" , " " )
if err != nil {
return ""
}
return out . String ( )
} ,
2017-09-12 12:25:42 +03:00
"DisableGitHooks" : func ( ) bool {
return setting . DisableGitHooks
} ,
2017-10-15 02:17:39 +03:00
"TrN" : TrN ,
2016-03-07 00:40:04 +03:00
} }
2015-11-14 06:45:33 +03:00
}
2016-11-25 09:23:48 +03:00
// Safe render raw as HTML
2015-08-08 12:10:34 +03:00
func Safe ( raw string ) template . HTML {
return template . HTML ( raw )
}
2017-08-23 17:58:05 +03:00
// SafeJS renders raw as JS
func SafeJS ( raw string ) template . JS {
return template . JS ( raw )
}
2016-11-25 09:23:48 +03:00
// Str2html render Markdown text to HTML
2014-04-10 22:20:58 +04:00
func Str2html ( raw string ) template . HTML {
2017-09-16 20:17:57 +03:00
return template . HTML ( markup . Sanitize ( raw ) )
2014-04-10 22:20:58 +04:00
}
2016-11-25 09:23:48 +03:00
// List traversings the list
2014-04-10 22:20:58 +04:00
func List ( l * list . List ) chan interface { } {
e := l . Front ( )
c := make ( chan interface { } )
go func ( ) {
for e != nil {
c <- e . Value
e = e . Next ( )
}
close ( c )
} ( )
return c
}
2016-11-25 09:23:48 +03:00
// Sha1 returns sha1 sum of string
2015-02-19 00:52:22 +03:00
func Sha1 ( str string ) string {
2015-11-14 01:10:25 +03:00
return base . EncodeSha1 ( str )
2014-12-09 10:18:25 +03:00
}
2016-11-25 09:23:48 +03:00
// ToUTF8WithErr converts content to UTF8 encoding
func ToUTF8WithErr ( content [ ] byte ) ( string , error ) {
2016-01-01 06:13:47 +03:00
charsetLabel , err := base . DetectEncoding ( content )
if err != nil {
2016-11-25 09:23:48 +03:00
return "" , err
2016-01-01 06:13:47 +03:00
} else if charsetLabel == "UTF-8" {
2016-11-25 09:23:48 +03:00
return string ( content ) , nil
2014-09-17 08:03:03 +04:00
}
2014-12-22 12:01:52 +03:00
encoding , _ := charset . Lookup ( charsetLabel )
if encoding == nil {
2016-11-25 09:23:48 +03:00
return string ( content ) , fmt . Errorf ( "Unknown encoding: %s" , charsetLabel )
2014-09-17 08:03:03 +04:00
}
2014-12-22 12:01:52 +03:00
// If there is an error, we concatenate the nicely decoded part and the
// original left over. This way we won't loose data.
2015-12-25 13:25:47 +03:00
result , n , err := transform . String ( encoding . NewDecoder ( ) , string ( content ) )
2014-12-22 12:01:52 +03:00
if err != nil {
result = result + string ( content [ n : ] )
}
2016-11-25 09:23:48 +03:00
return result , err
2014-09-17 08:03:03 +04:00
}
2016-11-25 09:23:48 +03:00
// ToUTF8 converts content to UTF8 encoding and ignore error
2016-08-09 22:56:00 +03:00
func ToUTF8 ( content string ) string {
2016-11-25 09:23:48 +03:00
res , _ := ToUTF8WithErr ( [ ] byte ( content ) )
2014-09-17 08:03:03 +04:00
return res
}
2016-11-25 09:23:48 +03:00
// ReplaceLeft replaces all prefixes 'old' in 's' with 'new'.
2015-09-19 04:57:06 +03:00
func ReplaceLeft ( s , old , new string ) string {
2016-11-25 09:23:48 +03:00
oldLen , newLen , i , n := len ( old ) , len ( new ) , 0 , 0
for ; i < len ( s ) && strings . HasPrefix ( s [ i : ] , old ) ; n ++ {
i += oldLen
2015-09-19 04:57:06 +03:00
}
// simple optimization
if n == 0 {
return s
}
// allocating space for the new string
2016-11-25 09:23:48 +03:00
curLen := n * newLen + len ( s [ i : ] )
replacement := make ( [ ] byte , curLen , curLen )
2015-09-19 04:57:06 +03:00
j := 0
2016-11-25 09:23:48 +03:00
for ; j < n * newLen ; j += newLen {
copy ( replacement [ j : j + newLen ] , new )
2015-09-19 04:57:06 +03:00
}
copy ( replacement [ j : ] , s [ i : ] )
return string ( replacement )
}
2015-01-31 02:05:20 +03:00
// RenderCommitMessage renders commit message with XSS-safe and special links.
2015-12-07 02:18:12 +03:00
func RenderCommitMessage ( full bool , msg , urlPrefix string , metas map [ string ] string ) template . HTML {
2015-09-19 04:57:06 +03:00
cleanMsg := template . HTMLEscapeString ( msg )
2017-09-16 20:17:57 +03:00
fullMessage := string ( markup . RenderIssueIndexPattern ( [ ] byte ( cleanMsg ) , urlPrefix , metas ) )
2015-09-19 04:57:06 +03:00
msgLines := strings . Split ( strings . TrimSpace ( fullMessage ) , "\n" )
2015-12-07 02:18:12 +03:00
numLines := len ( msgLines )
if numLines == 0 {
return template . HTML ( "" )
} else if ! full {
return template . HTML ( msgLines [ 0 ] )
} else if numLines == 1 || ( numLines >= 2 && len ( msgLines [ 1 ] ) == 0 ) {
// First line is a header, standalone or followed by empty line
header := fmt . Sprintf ( "<h3>%s</h3>" , msgLines [ 0 ] )
if numLines >= 2 {
fullMessage = header + fmt . Sprintf ( "\n<pre>%s</pre>" , strings . Join ( msgLines [ 2 : ] , "\n" ) )
} else {
fullMessage = header
}
} else {
// Non-standard git message, there is no header line
fullMessage = fmt . Sprintf ( "<h4>%s</h4>" , strings . Join ( msgLines , "<br>" ) )
2015-09-19 04:57:06 +03:00
}
return template . HTML ( fullMessage )
2015-01-31 02:05:20 +03:00
}
2016-11-25 09:23:48 +03:00
// Actioner describes an action
2014-04-10 22:20:58 +04:00
type Actioner interface {
2017-09-20 04:22:42 +03:00
GetOpType ( ) models . ActionType
2014-04-10 22:20:58 +04:00
GetActUserName ( ) string
2014-05-09 10:42:50 +04:00
GetRepoUserName ( ) string
2014-04-10 22:20:58 +04:00
GetRepoName ( ) string
2015-09-01 16:29:52 +03:00
GetRepoPath ( ) string
GetRepoLink ( ) string
2014-04-10 22:20:58 +04:00
GetBranch ( ) string
GetContent ( ) string
2015-09-01 16:29:52 +03:00
GetCreate ( ) time . Time
GetIssueInfos ( ) [ ] string
2014-04-10 22:20:58 +04:00
}
2017-09-20 04:22:42 +03:00
// ActionIcon accepts an action operation type and returns an icon class name.
func ActionIcon ( opType models . ActionType ) string {
2014-04-10 22:20:58 +04:00
switch opType {
2017-09-20 04:22:42 +03:00
case models . ActionCreateRepo , models . ActionTransferRepo :
2014-07-26 08:24:27 +04:00
return "repo"
2017-09-21 10:43:26 +03:00
case models . ActionCommitRepo , models . ActionPushTag , models . ActionDeleteTag , models . ActionDeleteBranch :
2014-07-26 08:24:27 +04:00
return "git-commit"
2017-09-20 04:22:42 +03:00
case models . ActionCreateIssue :
2014-07-26 08:24:27 +04:00
return "issue-opened"
2017-09-20 04:22:42 +03:00
case models . ActionCreatePullRequest :
2015-11-16 19:39:48 +03:00
return "git-pull-request"
2017-09-20 04:22:42 +03:00
case models . ActionCommentIssue :
2016-07-16 07:45:13 +03:00
return "comment-discussion"
2017-09-20 04:22:42 +03:00
case models . ActionMergePullRequest :
2015-11-16 19:39:48 +03:00
return "git-merge"
2017-09-20 04:22:42 +03:00
case models . ActionCloseIssue , models . ActionClosePullRequest :
2016-02-22 20:40:00 +03:00
return "issue-closed"
2017-09-20 04:22:42 +03:00
case models . ActionReopenIssue , models . ActionReopenPullRequest :
2016-03-05 20:58:51 +03:00
return "issue-reopened"
2014-04-10 22:20:58 +04:00
default :
return "invalid type"
}
}
2016-11-25 09:23:48 +03:00
// ActionContent2Commits converts action content to push commits
2015-11-14 01:10:25 +03:00
func ActionContent2Commits ( act Actioner ) * models . PushCommits {
push := models . NewPushCommits ( )
if err := json . Unmarshal ( [ ] byte ( act . GetContent ( ) ) , push ) ; err != nil {
2016-03-26 23:42:20 +03:00
log . Error ( 4 , "json.Unmarshal:\n%s\nERROR: %v" , act . GetContent ( ) , err )
2014-07-26 08:24:27 +04:00
}
return push
}
2016-11-25 09:23:48 +03:00
// DiffTypeToStr returns diff type name
2014-04-10 22:20:58 +04:00
func DiffTypeToStr ( diffType int ) string {
diffTypes := map [ int ] string {
2015-11-03 17:52:17 +03:00
1 : "add" , 2 : "modify" , 3 : "del" , 4 : "rename" ,
2014-04-10 22:20:58 +04:00
}
return diffTypes [ diffType ]
}
2016-11-25 09:23:48 +03:00
// DiffLineTypeToStr returns diff line type name
2014-04-10 22:20:58 +04:00
func DiffLineTypeToStr ( diffType int ) string {
switch diffType {
case 2 :
return "add"
case 3 :
return "del"
case 4 :
return "tag"
}
return "same"
}
2017-10-15 02:17:39 +03:00
// Language specific rules for translating plural texts
var trNLangRules = map [ string ] func ( int64 ) int {
"en-US" : func ( cnt int64 ) int {
if cnt == 1 {
return 0
}
return 1
} ,
"lv-LV" : func ( cnt int64 ) int {
if cnt % 10 == 1 && cnt % 100 != 11 {
return 0
}
return 1
} ,
"ru-RU" : func ( cnt int64 ) int {
if cnt % 10 == 1 && cnt % 100 != 11 {
return 0
}
return 1
} ,
"zh-CN" : func ( cnt int64 ) int {
return 0
} ,
"zh-HK" : func ( cnt int64 ) int {
return 0
} ,
"zh-TW" : func ( cnt int64 ) int {
return 0
} ,
}
// TrN returns key to be used for plural text translation
func TrN ( lang string , cnt interface { } , key1 , keyN string ) string {
var c int64
if t , ok := cnt . ( int ) ; ok {
c = int64 ( t )
} else if t , ok := cnt . ( int16 ) ; ok {
c = int64 ( t )
} else if t , ok := cnt . ( int32 ) ; ok {
c = int64 ( t )
} else if t , ok := cnt . ( int64 ) ; ok {
c = t
} else {
return keyN
}
ruleFunc , ok := trNLangRules [ lang ]
if ! ok {
ruleFunc = trNLangRules [ "en-US" ]
}
if ruleFunc ( c ) == 0 {
return key1
}
return keyN
}