2014-02-19 04:01:16 +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.
|
|
|
|
|
2014-03-08 03:52:15 +05:30
|
|
|
package base
|
2014-02-19 04:01:16 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/md5"
|
2014-03-19 16:51:23 +05:30
|
|
|
"crypto/sha1"
|
2019-05-04 21:15:34 +05:30
|
|
|
"crypto/sha256"
|
2014-11-08 01:16:13 +05:30
|
|
|
"encoding/base64"
|
2014-02-19 04:01:16 +05:30
|
|
|
"encoding/hex"
|
2014-03-14 12:02:11 +05:30
|
|
|
"fmt"
|
2016-02-21 03:40:05 +05:30
|
|
|
"net/http"
|
2017-12-03 17:25:13 +05:30
|
|
|
"net/url"
|
2019-04-17 21:36:35 +05:30
|
|
|
"os"
|
2017-12-03 17:25:13 +05:30
|
|
|
"path"
|
2019-04-17 21:36:35 +05:30
|
|
|
"path/filepath"
|
|
|
|
"runtime"
|
2016-11-08 02:19:50 +05:30
|
|
|
"strconv"
|
2014-03-15 12:58:06 +05:30
|
|
|
"strings"
|
2014-03-14 12:02:11 +05:30
|
|
|
"time"
|
2016-02-21 03:40:05 +05:30
|
|
|
"unicode"
|
2014-05-26 05:41:25 +05:30
|
|
|
|
2019-03-27 15:03:00 +05:30
|
|
|
"code.gitea.io/gitea/modules/git"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-03-27 15:03:00 +05:30
|
|
|
|
2020-02-04 01:20:37 +05:30
|
|
|
"github.com/dustin/go-humanize"
|
2019-08-23 22:10:30 +05:30
|
|
|
"github.com/unknwon/com"
|
2014-02-19 04:01:16 +05:30
|
|
|
)
|
|
|
|
|
2015-11-25 05:19:34 +05:30
|
|
|
// EncodeMD5 encodes string to md5 hex value.
|
|
|
|
func EncodeMD5(str string) string {
|
2014-02-19 04:01:16 +05:30
|
|
|
m := md5.New()
|
2019-06-13 01:11:28 +05:30
|
|
|
_, _ = m.Write([]byte(str))
|
2014-02-19 04:01:16 +05:30
|
|
|
return hex.EncodeToString(m.Sum(nil))
|
|
|
|
}
|
2014-03-14 12:02:11 +05:30
|
|
|
|
2016-11-24 12:47:44 +05:30
|
|
|
// EncodeSha1 string to sha1 hex value.
|
2014-11-12 17:18:50 +05:30
|
|
|
func EncodeSha1(str string) string {
|
|
|
|
h := sha1.New()
|
2019-06-13 01:11:28 +05:30
|
|
|
_, _ = h.Write([]byte(str))
|
2014-11-12 17:18:50 +05:30
|
|
|
return hex.EncodeToString(h.Sum(nil))
|
|
|
|
}
|
|
|
|
|
2019-05-04 21:15:34 +05:30
|
|
|
// EncodeSha256 string to sha1 hex value.
|
|
|
|
func EncodeSha256(str string) string {
|
|
|
|
h := sha256.New()
|
2019-06-13 01:11:28 +05:30
|
|
|
_, _ = h.Write([]byte(str))
|
2019-05-04 21:15:34 +05:30
|
|
|
return hex.EncodeToString(h.Sum(nil))
|
|
|
|
}
|
|
|
|
|
2016-11-08 03:44:50 +05:30
|
|
|
// ShortSha is basically just truncating.
|
|
|
|
// It is DEPRECATED and will be removed in the future.
|
2015-11-14 03:40:25 +05:30
|
|
|
func ShortSha(sha1 string) string {
|
2016-11-08 02:06:01 +05:30
|
|
|
return TruncateString(sha1, 10)
|
2015-11-14 03:40:25 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:47:44 +05:30
|
|
|
// BasicAuthDecode decode basic auth string
|
2014-12-10 15:40:26 +05:30
|
|
|
func BasicAuthDecode(encoded string) (string, string, error) {
|
|
|
|
s, err := base64.StdEncoding.DecodeString(encoded)
|
2014-11-08 01:16:13 +05:30
|
|
|
if err != nil {
|
2014-12-10 15:40:26 +05:30
|
|
|
return "", "", err
|
2014-11-08 01:16:13 +05:30
|
|
|
}
|
|
|
|
|
2014-12-10 15:31:17 +05:30
|
|
|
auth := strings.SplitN(string(s), ":", 2)
|
2014-12-10 15:40:26 +05:30
|
|
|
return auth[0], auth[1], nil
|
2014-11-08 01:16:13 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:47:44 +05:30
|
|
|
// BasicAuthEncode encode basic auth string
|
2014-11-08 01:16:13 +05:30
|
|
|
func BasicAuthEncode(username, password string) string {
|
|
|
|
return base64.StdEncoding.EncodeToString([]byte(username + ":" + password))
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:47:44 +05:30
|
|
|
// VerifyTimeLimitCode verify time limit code
|
2014-03-19 22:20:44 +05:30
|
|
|
func VerifyTimeLimitCode(data string, minutes int, code string) bool {
|
|
|
|
if len(code) <= 18 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// split code
|
|
|
|
start := code[:12]
|
|
|
|
lives := code[12:18]
|
2014-07-26 09:54:27 +05:30
|
|
|
if d, err := com.StrTo(lives).Int(); err == nil {
|
2014-03-19 22:20:44 +05:30
|
|
|
minutes = d
|
|
|
|
}
|
|
|
|
|
|
|
|
// right active code
|
|
|
|
retCode := CreateTimeLimitCode(data, minutes, start)
|
|
|
|
if retCode == code && minutes > 0 {
|
|
|
|
// check time is expired or not
|
2015-02-16 18:14:27 +05:30
|
|
|
before, _ := time.ParseInLocation("200601021504", start, time.Local)
|
2014-03-19 22:20:44 +05:30
|
|
|
now := time.Now()
|
|
|
|
if before.Add(time.Minute*time.Duration(minutes)).Unix() > now.Unix() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:47:44 +05:30
|
|
|
// TimeLimitCodeLength default value for time limit code
|
2014-03-19 22:20:44 +05:30
|
|
|
const TimeLimitCodeLength = 12 + 6 + 40
|
|
|
|
|
2016-11-24 12:47:44 +05:30
|
|
|
// CreateTimeLimitCode create a time limit code
|
2014-03-19 16:51:23 +05:30
|
|
|
// code format: 12 length date time string + 6 minutes string + 40 sha1 encoded string
|
|
|
|
func CreateTimeLimitCode(data string, minutes int, startInf interface{}) string {
|
2015-02-16 18:14:27 +05:30
|
|
|
format := "200601021504"
|
2014-03-19 16:51:23 +05:30
|
|
|
|
|
|
|
var start, end time.Time
|
|
|
|
var startStr, endStr string
|
|
|
|
|
|
|
|
if startInf == nil {
|
|
|
|
// Use now time create code
|
|
|
|
start = time.Now()
|
2015-02-16 18:14:27 +05:30
|
|
|
startStr = start.Format(format)
|
2014-03-19 16:51:23 +05:30
|
|
|
} else {
|
|
|
|
// use start string create code
|
|
|
|
startStr = startInf.(string)
|
2015-02-16 18:14:27 +05:30
|
|
|
start, _ = time.ParseInLocation(format, startStr, time.Local)
|
|
|
|
startStr = start.Format(format)
|
2014-03-19 16:51:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
end = start.Add(time.Minute * time.Duration(minutes))
|
2015-02-16 18:14:27 +05:30
|
|
|
endStr = end.Format(format)
|
2014-03-19 16:51:23 +05:30
|
|
|
|
|
|
|
// create sha1 encode string
|
|
|
|
sh := sha1.New()
|
2019-06-13 01:11:28 +05:30
|
|
|
_, _ = sh.Write([]byte(data + setting.SecretKey + startStr + endStr + com.ToStr(minutes)))
|
2014-03-19 16:51:23 +05:30
|
|
|
encoded := hex.EncodeToString(sh.Sum(nil))
|
|
|
|
|
|
|
|
code := fmt.Sprintf("%s%06d%s", startStr, minutes, encoded)
|
|
|
|
return code
|
|
|
|
}
|
|
|
|
|
2016-02-15 09:44:55 +05:30
|
|
|
// HashEmail hashes email address to MD5 string.
|
|
|
|
// https://en.gravatar.com/site/implement/hash/
|
|
|
|
func HashEmail(email string) string {
|
2016-11-06 06:23:11 +05:30
|
|
|
return EncodeMD5(strings.ToLower(strings.TrimSpace(email)))
|
2016-02-15 09:44:55 +05:30
|
|
|
}
|
|
|
|
|
2017-06-29 21:41:34 +05:30
|
|
|
// DefaultAvatarLink the default avatar link
|
2017-06-29 21:40:33 +05:30
|
|
|
func DefaultAvatarLink() string {
|
|
|
|
return setting.AppSubURL + "/img/avatar_default.png"
|
|
|
|
}
|
|
|
|
|
2017-12-03 17:25:13 +05:30
|
|
|
// DefaultAvatarSize is a sentinel value for the default avatar size, as
|
|
|
|
// determined by the avatar-hosting service.
|
|
|
|
const DefaultAvatarSize = -1
|
|
|
|
|
|
|
|
// libravatarURL returns the URL for the given email. This function should only
|
|
|
|
// be called if a federated avatar service is enabled.
|
|
|
|
func libravatarURL(email string) (*url.URL, error) {
|
|
|
|
urlStr, err := setting.LibravatarService.FromEmail(email)
|
|
|
|
if err != nil {
|
2019-04-02 13:18:31 +05:30
|
|
|
log.Error("LibravatarService.FromEmail(email=%s): error %v", email, err)
|
2017-12-03 17:25:13 +05:30
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
u, err := url.Parse(urlStr)
|
|
|
|
if err != nil {
|
2019-04-02 13:18:31 +05:30
|
|
|
log.Error("Failed to parse libravatar url(%s): error %v", urlStr, err)
|
2017-12-03 17:25:13 +05:30
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return u, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SizedAvatarLink returns a sized link to the avatar for the given email
|
|
|
|
// address.
|
|
|
|
func SizedAvatarLink(email string, size int) string {
|
|
|
|
var avatarURL *url.URL
|
2016-08-07 23:31:47 +05:30
|
|
|
if setting.EnableFederatedAvatar && setting.LibravatarService != nil {
|
2017-12-03 17:25:13 +05:30
|
|
|
var err error
|
|
|
|
avatarURL, err = libravatarURL(email)
|
2017-06-29 20:00:58 +05:30
|
|
|
if err != nil {
|
2017-06-29 21:40:33 +05:30
|
|
|
return DefaultAvatarLink()
|
2017-06-29 20:00:58 +05:30
|
|
|
}
|
2017-12-03 17:25:13 +05:30
|
|
|
} else if !setting.DisableGravatar {
|
|
|
|
// copy GravatarSourceURL, because we will modify its Path.
|
|
|
|
copyOfGravatarSourceURL := *setting.GravatarSourceURL
|
|
|
|
avatarURL = ©OfGravatarSourceURL
|
|
|
|
avatarURL.Path = path.Join(avatarURL.Path, HashEmail(email))
|
|
|
|
} else {
|
|
|
|
return DefaultAvatarLink()
|
2016-08-07 23:31:47 +05:30
|
|
|
}
|
2016-11-08 01:43:38 +05:30
|
|
|
|
2017-12-03 17:25:13 +05:30
|
|
|
vals := avatarURL.Query()
|
|
|
|
vals.Set("d", "identicon")
|
|
|
|
if size != DefaultAvatarSize {
|
|
|
|
vals.Set("s", strconv.Itoa(size))
|
2014-03-25 21:42:27 +05:30
|
|
|
}
|
2017-12-03 17:25:13 +05:30
|
|
|
avatarURL.RawQuery = vals.Encode()
|
|
|
|
return avatarURL.String()
|
|
|
|
}
|
2016-11-08 01:43:38 +05:30
|
|
|
|
2017-12-03 17:25:13 +05:30
|
|
|
// AvatarLink returns relative avatar link to the site domain by given email,
|
|
|
|
// which includes app sub-url as prefix. However, it is possible
|
|
|
|
// to return full URL if user enables Gravatar-like service.
|
|
|
|
func AvatarLink(email string) string {
|
|
|
|
return SizedAvatarLink(email, DefaultAvatarSize)
|
2014-03-17 10:27:18 +05:30
|
|
|
}
|
|
|
|
|
2014-03-15 21:59:49 +05:30
|
|
|
// FileSize calculates the file size and generate user-friendly string.
|
2014-03-15 22:01:12 +05:30
|
|
|
func FileSize(s int64) string {
|
2020-02-04 01:20:37 +05:30
|
|
|
return humanize.IBytes(uint64(s))
|
|
|
|
}
|
|
|
|
|
|
|
|
// PrettyNumber produces a string form of the given number in base 10 with
|
|
|
|
// commas after every three orders of magnitud
|
|
|
|
func PrettyNumber(v int64) string {
|
|
|
|
return humanize.Comma(v)
|
2014-03-15 21:59:49 +05:30
|
|
|
}
|
|
|
|
|
2014-03-15 05:04:59 +05:30
|
|
|
// Subtract deals with subtraction of all types of number.
|
|
|
|
func Subtract(left interface{}, right interface{}) interface{} {
|
|
|
|
var rleft, rright int64
|
|
|
|
var fleft, fright float64
|
2016-11-24 12:47:44 +05:30
|
|
|
var isInt = true
|
2019-05-28 21:15:54 +05:30
|
|
|
switch v := left.(type) {
|
2014-03-15 05:04:59 +05:30
|
|
|
case int:
|
2019-05-28 21:15:54 +05:30
|
|
|
rleft = int64(v)
|
2014-03-15 05:04:59 +05:30
|
|
|
case int8:
|
2019-05-28 21:15:54 +05:30
|
|
|
rleft = int64(v)
|
2014-03-15 05:04:59 +05:30
|
|
|
case int16:
|
2019-05-28 21:15:54 +05:30
|
|
|
rleft = int64(v)
|
2014-03-15 05:04:59 +05:30
|
|
|
case int32:
|
2019-05-28 21:15:54 +05:30
|
|
|
rleft = int64(v)
|
2014-03-15 05:04:59 +05:30
|
|
|
case int64:
|
2019-05-28 21:15:54 +05:30
|
|
|
rleft = v
|
2014-03-15 05:04:59 +05:30
|
|
|
case float32:
|
2019-05-28 21:15:54 +05:30
|
|
|
fleft = float64(v)
|
2014-03-15 05:04:59 +05:30
|
|
|
isInt = false
|
|
|
|
case float64:
|
2019-05-28 21:15:54 +05:30
|
|
|
fleft = v
|
2014-03-15 05:04:59 +05:30
|
|
|
isInt = false
|
|
|
|
}
|
|
|
|
|
2019-05-28 21:15:54 +05:30
|
|
|
switch v := right.(type) {
|
2014-03-15 05:04:59 +05:30
|
|
|
case int:
|
2019-05-28 21:15:54 +05:30
|
|
|
rright = int64(v)
|
2014-03-15 05:04:59 +05:30
|
|
|
case int8:
|
2019-05-28 21:15:54 +05:30
|
|
|
rright = int64(v)
|
2014-03-15 05:04:59 +05:30
|
|
|
case int16:
|
2019-05-28 21:15:54 +05:30
|
|
|
rright = int64(v)
|
2014-03-15 05:04:59 +05:30
|
|
|
case int32:
|
2019-05-28 21:15:54 +05:30
|
|
|
rright = int64(v)
|
2014-03-15 05:04:59 +05:30
|
|
|
case int64:
|
2019-05-28 21:15:54 +05:30
|
|
|
rright = v
|
2014-03-15 05:04:59 +05:30
|
|
|
case float32:
|
2019-05-28 21:15:54 +05:30
|
|
|
fright = float64(v)
|
2014-03-15 05:04:59 +05:30
|
|
|
isInt = false
|
|
|
|
case float64:
|
2019-05-28 21:15:54 +05:30
|
|
|
fright = v
|
2014-03-15 05:04:59 +05:30
|
|
|
isInt = false
|
|
|
|
}
|
|
|
|
|
|
|
|
if isInt {
|
|
|
|
return rleft - rright
|
|
|
|
}
|
2016-11-24 12:47:44 +05:30
|
|
|
return fleft + float64(rleft) - (fright + float64(rright))
|
2014-03-15 05:04:59 +05:30
|
|
|
}
|
2015-08-10 14:22:08 +05:30
|
|
|
|
2016-01-11 18:11:43 +05:30
|
|
|
// EllipsisString returns a truncated short string,
|
|
|
|
// it appends '...' in the end of the length of string is too large.
|
|
|
|
func EllipsisString(str string, length int) string {
|
2016-11-08 01:57:14 +05:30
|
|
|
if length <= 3 {
|
|
|
|
return "..."
|
|
|
|
}
|
|
|
|
if len(str) <= length {
|
2016-01-11 18:11:43 +05:30
|
|
|
return str
|
|
|
|
}
|
|
|
|
return str[:length-3] + "..."
|
|
|
|
}
|
|
|
|
|
2016-03-05 11:21:51 +05:30
|
|
|
// TruncateString returns a truncated string with given limit,
|
|
|
|
// it returns input string if length is not reached limit.
|
|
|
|
func TruncateString(str string, limit int) string {
|
|
|
|
if len(str) < limit {
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
return str[:limit]
|
|
|
|
}
|
|
|
|
|
2015-08-10 14:22:08 +05:30
|
|
|
// StringsToInt64s converts a slice of string to a slice of int64.
|
2016-12-22 14:28:04 +05:30
|
|
|
func StringsToInt64s(strs []string) ([]int64, error) {
|
2015-08-10 14:22:08 +05:30
|
|
|
ints := make([]int64, len(strs))
|
|
|
|
for i := range strs {
|
2016-12-22 14:28:04 +05:30
|
|
|
n, err := com.StrTo(strs[i]).Int64()
|
|
|
|
if err != nil {
|
|
|
|
return ints, err
|
|
|
|
}
|
|
|
|
ints[i] = n
|
2015-08-10 14:22:08 +05:30
|
|
|
}
|
2016-12-22 14:28:04 +05:30
|
|
|
return ints, nil
|
2015-08-10 14:22:08 +05:30
|
|
|
}
|
|
|
|
|
2015-08-25 20:52:05 +05:30
|
|
|
// Int64sToStrings converts a slice of int64 to a slice of string.
|
|
|
|
func Int64sToStrings(ints []int64) []string {
|
|
|
|
strs := make([]string, len(ints))
|
|
|
|
for i := range ints {
|
2016-11-08 02:19:50 +05:30
|
|
|
strs[i] = strconv.FormatInt(ints[i], 10)
|
2015-08-25 20:52:05 +05:30
|
|
|
}
|
|
|
|
return strs
|
|
|
|
}
|
|
|
|
|
2015-08-10 14:22:08 +05:30
|
|
|
// Int64sToMap converts a slice of int64 to a int64 map.
|
|
|
|
func Int64sToMap(ints []int64) map[int64]bool {
|
|
|
|
m := make(map[int64]bool)
|
|
|
|
for _, i := range ints {
|
|
|
|
m[i] = true
|
|
|
|
}
|
|
|
|
return m
|
|
|
|
}
|
2016-02-21 03:40:05 +05:30
|
|
|
|
2017-09-14 13:46:22 +05:30
|
|
|
// Int64sContains returns if a int64 in a slice of int64
|
|
|
|
func Int64sContains(intsSlice []int64, a int64) bool {
|
|
|
|
for _, c := range intsSlice {
|
|
|
|
if c == a {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-02-21 03:40:05 +05:30
|
|
|
// IsLetter reports whether the rune is a letter (category L).
|
|
|
|
// https://github.com/golang/go/blob/master/src/go/scanner/scanner.go#L257
|
|
|
|
func IsLetter(ch rune) bool {
|
|
|
|
return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_' || ch >= 0x80 && unicode.IsLetter(ch)
|
|
|
|
}
|
|
|
|
|
2016-09-01 02:29:23 +05:30
|
|
|
// IsTextFile returns true if file content format is plain text or empty.
|
2016-08-30 14:38:38 +05:30
|
|
|
func IsTextFile(data []byte) bool {
|
2016-09-01 02:29:23 +05:30
|
|
|
if len(data) == 0 {
|
|
|
|
return true
|
|
|
|
}
|
2019-06-13 01:11:28 +05:30
|
|
|
return strings.Contains(http.DetectContentType(data), "text/")
|
2016-02-21 03:40:05 +05:30
|
|
|
}
|
|
|
|
|
2017-02-28 10:26:15 +05:30
|
|
|
// IsImageFile detects if data is an image format
|
2016-08-30 14:38:38 +05:30
|
|
|
func IsImageFile(data []byte) bool {
|
2019-06-13 01:11:28 +05:30
|
|
|
return strings.Contains(http.DetectContentType(data), "image/")
|
2016-02-21 03:40:05 +05:30
|
|
|
}
|
2016-04-27 07:18:44 +05:30
|
|
|
|
2017-02-28 10:26:15 +05:30
|
|
|
// IsPDFFile detects if data is a pdf format
|
2016-08-30 14:38:38 +05:30
|
|
|
func IsPDFFile(data []byte) bool {
|
2019-06-13 01:11:28 +05:30
|
|
|
return strings.Contains(http.DetectContentType(data), "application/pdf")
|
2016-04-27 07:18:44 +05:30
|
|
|
}
|
2016-12-20 13:39:11 +05:30
|
|
|
|
2017-02-28 10:26:15 +05:30
|
|
|
// IsVideoFile detects if data is an video format
|
2016-12-20 13:39:11 +05:30
|
|
|
func IsVideoFile(data []byte) bool {
|
2019-06-13 01:11:28 +05:30
|
|
|
return strings.Contains(http.DetectContentType(data), "video/")
|
2016-12-20 13:39:11 +05:30
|
|
|
}
|
2018-05-01 12:34:36 +05:30
|
|
|
|
2018-10-30 07:47:26 +05:30
|
|
|
// IsAudioFile detects if data is an video format
|
|
|
|
func IsAudioFile(data []byte) bool {
|
2019-06-13 01:11:28 +05:30
|
|
|
return strings.Contains(http.DetectContentType(data), "audio/")
|
2018-10-30 07:47:26 +05:30
|
|
|
}
|
|
|
|
|
2018-05-01 12:34:36 +05:30
|
|
|
// EntryIcon returns the octicon class for displaying files/directories
|
|
|
|
func EntryIcon(entry *git.TreeEntry) string {
|
|
|
|
switch {
|
|
|
|
case entry.IsLink():
|
|
|
|
te, err := entry.FollowLink()
|
|
|
|
if err != nil {
|
|
|
|
log.Debug(err.Error())
|
|
|
|
return "file-symlink-file"
|
|
|
|
}
|
|
|
|
if te.IsDir() {
|
|
|
|
return "file-symlink-directory"
|
|
|
|
}
|
|
|
|
return "file-symlink-file"
|
|
|
|
case entry.IsDir():
|
|
|
|
return "file-directory"
|
|
|
|
case entry.IsSubModule():
|
|
|
|
return "file-submodule"
|
|
|
|
}
|
|
|
|
|
2020-02-11 22:32:41 +05:30
|
|
|
return "file"
|
2018-05-01 12:34:36 +05:30
|
|
|
}
|
2019-04-17 21:36:35 +05:30
|
|
|
|
|
|
|
// SetupGiteaRoot Sets GITEA_ROOT if it is not already set and returns the value
|
|
|
|
func SetupGiteaRoot() string {
|
|
|
|
giteaRoot := os.Getenv("GITEA_ROOT")
|
|
|
|
if giteaRoot == "" {
|
|
|
|
_, filename, _, _ := runtime.Caller(0)
|
|
|
|
giteaRoot = strings.TrimSuffix(filename, "modules/base/tool.go")
|
|
|
|
wd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
rel, err := filepath.Rel(giteaRoot, wd)
|
|
|
|
if err != nil && strings.HasPrefix(filepath.ToSlash(rel), "../") {
|
|
|
|
giteaRoot = wd
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if _, err := os.Stat(filepath.Join(giteaRoot, "gitea")); os.IsNotExist(err) {
|
|
|
|
giteaRoot = ""
|
|
|
|
} else if err := os.Setenv("GITEA_ROOT", giteaRoot); err != nil {
|
|
|
|
giteaRoot = ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return giteaRoot
|
|
|
|
}
|