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.
2015-11-14 01:10:25 +03:00
package template
2014-04-10 22:20:58 +04:00
import (
"container/list"
"encoding/json"
"fmt"
"html/template"
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
2014-12-22 12:01:52 +03:00
"golang.org/x/net/html/charset"
"golang.org/x/text/transform"
2015-11-14 01:10:25 +03:00
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
2015-01-20 08:08:49 +03:00
"github.com/gogits/gogs/modules/setting"
2014-04-10 22:20:58 +04:00
)
2015-08-08 12:10:34 +03:00
func Safe ( raw string ) template . HTML {
return template . HTML ( raw )
}
2014-04-10 22:20:58 +04:00
func Str2html ( raw string ) template . HTML {
2015-11-14 01:10:25 +03:00
return template . HTML ( base . Sanitizer . Sanitize ( raw ) )
2014-04-10 22:20:58 +04:00
}
func Range ( l int ) [ ] int {
return make ( [ ] int , l )
}
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
}
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
}
func ToUtf8WithErr ( content [ ] byte ) ( error , string ) {
2015-11-14 01:10:25 +03:00
charsetLabel , err := base . DetectEncoding ( content )
2014-09-17 08:03:03 +04:00
if err != nil {
return err , ""
}
2015-07-29 17:58:03 +03:00
if charsetLabel == "UTF-8" {
2014-09-17 08:03:03 +04:00
return nil , string ( content )
}
2014-12-22 12:01:52 +03:00
encoding , _ := charset . Lookup ( charsetLabel )
if encoding == nil {
2015-09-07 12:57:19 +03:00
return fmt . Errorf ( "unknown char decoder %s" , charsetLabel ) , string ( content )
2014-09-17 08:03:03 +04:00
}
2014-12-22 12:01:52 +03:00
result , n , err := transform . String ( encoding . NewDecoder ( ) , string ( content ) )
// If there is an error, we concatenate the nicely decoded part and the
// original left over. This way we won't loose data.
if err != nil {
result = result + string ( content [ n : ] )
}
return err , result
2014-09-17 08:03:03 +04:00
}
func ToUtf8 ( content string ) string {
_ , res := ToUtf8WithErr ( [ ] byte ( content ) )
return res
}
2015-09-19 04:57:06 +03:00
// Replaces all prefixes 'old' in 's' with 'new'.
func ReplaceLeft ( s , old , new string ) string {
old_len , new_len , i , n := len ( old ) , len ( new ) , 0 , 0
for ; i < len ( s ) && strings . HasPrefix ( s [ i : ] , old ) ; n += 1 {
i += old_len
}
// simple optimization
if n == 0 {
return s
}
// allocating space for the new string
newLen := n * new_len + len ( s [ i : ] )
replacement := make ( [ ] byte , newLen , newLen )
j := 0
for ; j < n * new_len ; j += new_len {
copy ( replacement [ j : j + new_len ] , new )
}
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.
func RenderCommitMessage ( msg , urlPrefix string ) template . HTML {
2015-09-19 04:57:06 +03:00
cleanMsg := template . HTMLEscapeString ( msg )
2015-11-14 01:10:25 +03:00
fullMessage := string ( base . RenderIssueIndexPattern ( [ ] byte ( cleanMsg ) , urlPrefix ) )
2015-09-19 04:57:06 +03:00
msgLines := strings . Split ( strings . TrimSpace ( fullMessage ) , "\n" )
for i := range msgLines {
msgLines [ i ] = ReplaceLeft ( msgLines [ i ] , " " , " " )
}
fullMessage = strings . Join ( msgLines , "<br>" )
return template . HTML ( fullMessage )
2015-01-31 02:05:20 +03:00
}
2015-11-14 01:10:25 +03:00
var Funcs template . FuncMap = map [ string ] interface { } {
2014-05-22 05:37:13 +04:00
"GoVer" : func ( ) string {
2014-07-26 08:24:27 +04:00
return strings . Title ( runtime . Version ( ) )
2014-05-22 05:37:13 +04:00
} ,
2014-04-10 22:20:58 +04:00
"AppName" : func ( ) string {
2014-05-26 04:11:25 +04:00
return setting . AppName
2014-04-10 22:20:58 +04:00
} ,
2014-09-20 04:11:34 +04:00
"AppSubUrl" : func ( ) string {
return setting . AppSubUrl
2014-09-14 21:35:22 +04:00
} ,
2014-04-10 22:20:58 +04:00
"AppVer" : func ( ) string {
2014-05-26 04:11:25 +04:00
return setting . AppVer
2014-04-10 22:20:58 +04:00
} ,
"AppDomain" : func ( ) string {
2014-05-26 04:11:25 +04:00
return setting . Domain
2014-04-10 22:20:58 +04:00
} ,
2015-03-25 01:38:12 +03:00
"DisableGravatar" : func ( ) bool {
return setting . DisableGravatar
} ,
2014-04-10 22:20:58 +04:00
"LoadTimes" : func ( startTime time . Time ) string {
return fmt . Sprint ( time . Since ( startTime ) . Nanoseconds ( ) / 1e6 ) + "ms"
} ,
2015-11-14 01:10:25 +03:00
"AvatarLink" : base . AvatarLink ,
2015-08-13 11:07:11 +03:00
"Safe" : Safe ,
"Str2html" : Str2html ,
2015-11-14 01:10:25 +03:00
"TimeSince" : base . TimeSince ,
"RawTimeSince" : base . RawTimeSince ,
"FileSize" : base . FileSize ,
"Subtract" : base . Subtract ,
2014-04-11 20:14:11 +04:00
"Add" : func ( a , b int ) int {
return a + b
} ,
2014-04-10 22:20:58 +04:00
"ActionIcon" : ActionIcon ,
2015-02-16 15:44:27 +03:00
"DateFmtLong" : func ( t time . Time ) string {
return t . Format ( time . RFC1123Z )
} ,
"DateFmtShort" : func ( t time . Time ) string {
return t . Format ( "Jan 02, 2006" )
} ,
"List" : List ,
2014-04-10 22:20:58 +04:00
"Mail2Domain" : func ( mail string ) string {
if ! strings . Contains ( mail , "@" ) {
2014-10-19 09:35:24 +04:00
return "try.gogs.io"
2014-04-10 22:20:58 +04:00
}
2015-09-16 22:34:46 +03:00
return strings . SplitN ( mail , "@" , 2 ) [ 1 ]
2014-04-10 22:20:58 +04:00
} ,
"SubStr" : func ( str string , start , length int ) string {
2014-10-19 09:35:24 +04:00
if len ( str ) == 0 {
return ""
}
end := start + length
if length == - 1 {
end = len ( str )
}
if len ( str ) < end {
return str
}
return str [ start : end ]
2014-04-10 22:20:58 +04:00
} ,
"DiffTypeToStr" : DiffTypeToStr ,
"DiffLineTypeToStr" : DiffLineTypeToStr ,
2015-02-27 03:45:38 +03:00
"Sha1" : Sha1 ,
2015-11-14 01:10:25 +03:00
"ShortSha" : base . ShortSha ,
"Md5" : base . EncodeMd5 ,
2014-07-26 08:24:27 +04:00
"ActionContent2Commits" : ActionContent2Commits ,
"Oauth2Icon" : Oauth2Icon ,
"Oauth2Name" : Oauth2Name ,
2014-09-17 08:03:03 +04:00
"ToUtf8" : ToUtf8 ,
2014-11-08 00:44:25 +03:00
"EscapePound" : func ( str string ) string {
2015-07-28 11:42:06 +03:00
return strings . Replace ( strings . Replace ( str , "%" , "%25" , - 1 ) , "#" , "%23" , - 1 )
2014-11-08 00:44:25 +03:00
} ,
2015-01-31 02:05:20 +03:00
"RenderCommitMessage" : RenderCommitMessage ,
2014-04-10 22:20:58 +04:00
}
type Actioner interface {
GetOpType ( ) int
GetActUserName ( ) string
GetActEmail ( ) 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
}
// ActionIcon accepts a int that represents action operation type
// and returns a icon class name.
func ActionIcon ( opType int ) string {
switch opType {
2014-09-26 00:36:19 +04:00
case 1 , 8 : // Create, transfer repository.
2014-07-26 08:24:27 +04:00
return "repo"
2014-04-14 05:00:12 +04:00
case 5 , 9 : // Commit repository.
2014-07-26 08:24:27 +04:00
return "git-commit"
2014-04-10 22:20:58 +04:00
case 6 : // Create issue.
2014-07-26 08:24:27 +04:00
return "issue-opened"
2014-05-06 21:47:47 +04:00
case 10 : // Comment issue.
return "comment"
2014-04-10 22:20:58 +04:00
default :
return "invalid type"
}
}
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 {
2014-07-26 08:24:27 +04:00
return nil
}
return push
}
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 ]
}
func DiffLineTypeToStr ( diffType int ) string {
switch diffType {
case 2 :
return "add"
case 3 :
return "del"
case 4 :
return "tag"
}
return "same"
}
2014-04-14 05:00:12 +04:00
func Oauth2Icon ( t int ) string {
switch t {
case 1 :
return "fa-github-square"
case 2 :
return "fa-google-plus-square"
case 3 :
return "fa-twitter-square"
case 4 :
2014-08-10 05:01:29 +04:00
return "fa-qq"
2014-04-14 05:00:12 +04:00
case 5 :
return "fa-weibo"
}
return ""
}
2014-05-06 00:21:43 +04:00
func Oauth2Name ( t int ) string {
switch t {
case 1 :
return "GitHub"
case 2 :
2014-08-10 05:01:29 +04:00
return "Google+"
2014-05-06 00:21:43 +04:00
case 3 :
return "Twitter"
case 4 :
2014-08-10 05:01:29 +04:00
return "腾讯 QQ"
2014-05-06 00:21:43 +04:00
case 5 :
return "Weibo"
}
return ""
}