You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tool.go 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package base
  5. import (
  6. "crypto/hmac"
  7. "crypto/md5"
  8. "crypto/rand"
  9. "crypto/sha1"
  10. "encoding/base64"
  11. "encoding/hex"
  12. "fmt"
  13. "hash"
  14. "html/template"
  15. "math"
  16. "net/http"
  17. "strconv"
  18. "strings"
  19. "time"
  20. "unicode"
  21. "unicode/utf8"
  22. "github.com/Unknwon/com"
  23. "github.com/Unknwon/i18n"
  24. "code.gitea.io/gitea/modules/log"
  25. "code.gitea.io/gitea/modules/setting"
  26. "github.com/gogits/chardet"
  27. )
  28. // EncodeMD5 encodes string to md5 hex value.
  29. func EncodeMD5(str string) string {
  30. m := md5.New()
  31. m.Write([]byte(str))
  32. return hex.EncodeToString(m.Sum(nil))
  33. }
  34. // Encode string to sha1 hex value.
  35. func EncodeSha1(str string) string {
  36. h := sha1.New()
  37. h.Write([]byte(str))
  38. return hex.EncodeToString(h.Sum(nil))
  39. }
  40. // ShortSha is basically just truncating.
  41. // It is DEPRECATED and will be removed in the future.
  42. func ShortSha(sha1 string) string {
  43. return TruncateString(sha1, 10)
  44. }
  45. func DetectEncoding(content []byte) (string, error) {
  46. if utf8.Valid(content) {
  47. log.Debug("Detected encoding: utf-8 (fast)")
  48. return "UTF-8", nil
  49. }
  50. result, err := chardet.NewTextDetector().DetectBest(content)
  51. if result.Charset != "UTF-8" && len(setting.Repository.AnsiCharset) > 0 {
  52. log.Debug("Using default AnsiCharset: %s", setting.Repository.AnsiCharset)
  53. return setting.Repository.AnsiCharset, err
  54. }
  55. log.Debug("Detected encoding: %s", result.Charset)
  56. return result.Charset, err
  57. }
  58. func BasicAuthDecode(encoded string) (string, string, error) {
  59. s, err := base64.StdEncoding.DecodeString(encoded)
  60. if err != nil {
  61. return "", "", err
  62. }
  63. auth := strings.SplitN(string(s), ":", 2)
  64. return auth[0], auth[1], nil
  65. }
  66. func BasicAuthEncode(username, password string) string {
  67. return base64.StdEncoding.EncodeToString([]byte(username + ":" + password))
  68. }
  69. // GetRandomString generate random string by specify chars.
  70. func GetRandomString(n int, alphabets ...byte) string {
  71. const alphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
  72. var bytes = make([]byte, n)
  73. rand.Read(bytes)
  74. for i, b := range bytes {
  75. if len(alphabets) == 0 {
  76. bytes[i] = alphanum[b%byte(len(alphanum))]
  77. } else {
  78. bytes[i] = alphabets[b%byte(len(alphabets))]
  79. }
  80. }
  81. return string(bytes)
  82. }
  83. // http://code.google.com/p/go/source/browse/pbkdf2/pbkdf2.go?repo=crypto
  84. // FIXME: use https://godoc.org/golang.org/x/crypto/pbkdf2?
  85. func PBKDF2(password, salt []byte, iter, keyLen int, h func() hash.Hash) []byte {
  86. prf := hmac.New(h, password)
  87. hashLen := prf.Size()
  88. numBlocks := (keyLen + hashLen - 1) / hashLen
  89. var buf [4]byte
  90. dk := make([]byte, 0, numBlocks*hashLen)
  91. U := make([]byte, hashLen)
  92. for block := 1; block <= numBlocks; block++ {
  93. // N.B.: || means concatenation, ^ means XOR
  94. // for each block T_i = U_1 ^ U_2 ^ ... ^ U_iter
  95. // U_1 = PRF(password, salt || uint(i))
  96. prf.Reset()
  97. prf.Write(salt)
  98. buf[0] = byte(block >> 24)
  99. buf[1] = byte(block >> 16)
  100. buf[2] = byte(block >> 8)
  101. buf[3] = byte(block)
  102. prf.Write(buf[:4])
  103. dk = prf.Sum(dk)
  104. T := dk[len(dk)-hashLen:]
  105. copy(U, T)
  106. // U_n = PRF(password, U_(n-1))
  107. for n := 2; n <= iter; n++ {
  108. prf.Reset()
  109. prf.Write(U)
  110. U = U[:0]
  111. U = prf.Sum(U)
  112. for x := range U {
  113. T[x] ^= U[x]
  114. }
  115. }
  116. }
  117. return dk[:keyLen]
  118. }
  119. // verify time limit code
  120. func VerifyTimeLimitCode(data string, minutes int, code string) bool {
  121. if len(code) <= 18 {
  122. return false
  123. }
  124. // split code
  125. start := code[:12]
  126. lives := code[12:18]
  127. if d, err := com.StrTo(lives).Int(); err == nil {
  128. minutes = d
  129. }
  130. // right active code
  131. retCode := CreateTimeLimitCode(data, minutes, start)
  132. if retCode == code && minutes > 0 {
  133. // check time is expired or not
  134. before, _ := time.ParseInLocation("200601021504", start, time.Local)
  135. now := time.Now()
  136. if before.Add(time.Minute*time.Duration(minutes)).Unix() > now.Unix() {
  137. return true
  138. }
  139. }
  140. return false
  141. }
  142. const TimeLimitCodeLength = 12 + 6 + 40
  143. // create a time limit code
  144. // code format: 12 length date time string + 6 minutes string + 40 sha1 encoded string
  145. func CreateTimeLimitCode(data string, minutes int, startInf interface{}) string {
  146. format := "200601021504"
  147. var start, end time.Time
  148. var startStr, endStr string
  149. if startInf == nil {
  150. // Use now time create code
  151. start = time.Now()
  152. startStr = start.Format(format)
  153. } else {
  154. // use start string create code
  155. startStr = startInf.(string)
  156. start, _ = time.ParseInLocation(format, startStr, time.Local)
  157. startStr = start.Format(format)
  158. }
  159. end = start.Add(time.Minute * time.Duration(minutes))
  160. endStr = end.Format(format)
  161. // create sha1 encode string
  162. sh := sha1.New()
  163. sh.Write([]byte(data + setting.SecretKey + startStr + endStr + com.ToStr(minutes)))
  164. encoded := hex.EncodeToString(sh.Sum(nil))
  165. code := fmt.Sprintf("%s%06d%s", startStr, minutes, encoded)
  166. return code
  167. }
  168. // HashEmail hashes email address to MD5 string.
  169. // https://en.gravatar.com/site/implement/hash/
  170. func HashEmail(email string) string {
  171. return EncodeMD5(strings.ToLower(strings.TrimSpace(email)))
  172. }
  173. // AvatarLink returns relative avatar link to the site domain by given email,
  174. // which includes app sub-url as prefix. However, it is possible
  175. // to return full URL if user enables Gravatar-like service.
  176. func AvatarLink(email string) string {
  177. if setting.EnableFederatedAvatar && setting.LibravatarService != nil {
  178. // TODO: This doesn't check any error. AvatarLink should return (string, error)
  179. url, _ := setting.LibravatarService.FromEmail(email)
  180. return url
  181. }
  182. if !setting.DisableGravatar {
  183. return setting.GravatarSource + HashEmail(email)
  184. }
  185. return setting.AppSubUrl + "/img/avatar_default.png"
  186. }
  187. // Seconds-based time units
  188. const (
  189. Minute = 60
  190. Hour = 60 * Minute
  191. Day = 24 * Hour
  192. Week = 7 * Day
  193. Month = 30 * Day
  194. Year = 12 * Month
  195. )
  196. func computeTimeDiff(diff int64) (int64, string) {
  197. diffStr := ""
  198. switch {
  199. case diff <= 0:
  200. diff = 0
  201. diffStr = "now"
  202. case diff < 2:
  203. diff = 0
  204. diffStr = "1 second"
  205. case diff < 1*Minute:
  206. diffStr = fmt.Sprintf("%d seconds", diff)
  207. diff = 0
  208. case diff < 2*Minute:
  209. diff -= 1 * Minute
  210. diffStr = "1 minute"
  211. case diff < 1*Hour:
  212. diffStr = fmt.Sprintf("%d minutes", diff/Minute)
  213. diff -= diff / Minute * Minute
  214. case diff < 2*Hour:
  215. diff -= 1 * Hour
  216. diffStr = "1 hour"
  217. case diff < 1*Day:
  218. diffStr = fmt.Sprintf("%d hours", diff/Hour)
  219. diff -= diff / Hour * Hour
  220. case diff < 2*Day:
  221. diff -= 1 * Day
  222. diffStr = "1 day"
  223. case diff < 1*Week:
  224. diffStr = fmt.Sprintf("%d days", diff/Day)
  225. diff -= diff / Day * Day
  226. case diff < 2*Week:
  227. diff -= 1 * Week
  228. diffStr = "1 week"
  229. case diff < 1*Month:
  230. diffStr = fmt.Sprintf("%d weeks", diff/Week)
  231. diff -= diff / Week * Week
  232. case diff < 2*Month:
  233. diff -= 1 * Month
  234. diffStr = "1 month"
  235. case diff < 1*Year:
  236. diffStr = fmt.Sprintf("%d months", diff/Month)
  237. diff -= diff / Month * Month
  238. case diff < 2*Year:
  239. diff -= 1 * Year
  240. diffStr = "1 year"
  241. default:
  242. diffStr = fmt.Sprintf("%d years", diff/Year)
  243. diff = 0
  244. }
  245. return diff, diffStr
  246. }
  247. // TimeSincePro calculates the time interval and generate full user-friendly string.
  248. func TimeSincePro(then time.Time) string {
  249. now := time.Now()
  250. diff := now.Unix() - then.Unix()
  251. if then.After(now) {
  252. return "future"
  253. }
  254. var timeStr, diffStr string
  255. for {
  256. if diff == 0 {
  257. break
  258. }
  259. diff, diffStr = computeTimeDiff(diff)
  260. timeStr += ", " + diffStr
  261. }
  262. return strings.TrimPrefix(timeStr, ", ")
  263. }
  264. func timeSince(then time.Time, lang string) string {
  265. now := time.Now()
  266. lbl := i18n.Tr(lang, "tool.ago")
  267. diff := now.Unix() - then.Unix()
  268. if then.After(now) {
  269. lbl = i18n.Tr(lang, "tool.from_now")
  270. diff = then.Unix() - now.Unix()
  271. }
  272. switch {
  273. case diff <= 0:
  274. return i18n.Tr(lang, "tool.now")
  275. case diff <= 2:
  276. return i18n.Tr(lang, "tool.1s", lbl)
  277. case diff < 1*Minute:
  278. return i18n.Tr(lang, "tool.seconds", diff, lbl)
  279. case diff < 2*Minute:
  280. return i18n.Tr(lang, "tool.1m", lbl)
  281. case diff < 1*Hour:
  282. return i18n.Tr(lang, "tool.minutes", diff/Minute, lbl)
  283. case diff < 2*Hour:
  284. return i18n.Tr(lang, "tool.1h", lbl)
  285. case diff < 1*Day:
  286. return i18n.Tr(lang, "tool.hours", diff/Hour, lbl)
  287. case diff < 2*Day:
  288. return i18n.Tr(lang, "tool.1d", lbl)
  289. case diff < 1*Week:
  290. return i18n.Tr(lang, "tool.days", diff/Day, lbl)
  291. case diff < 2*Week:
  292. return i18n.Tr(lang, "tool.1w", lbl)
  293. case diff < 1*Month:
  294. return i18n.Tr(lang, "tool.weeks", diff/Week, lbl)
  295. case diff < 2*Month:
  296. return i18n.Tr(lang, "tool.1mon", lbl)
  297. case diff < 1*Year:
  298. return i18n.Tr(lang, "tool.months", diff/Month, lbl)
  299. case diff < 2*Year:
  300. return i18n.Tr(lang, "tool.1y", lbl)
  301. default:
  302. return i18n.Tr(lang, "tool.years", diff/Year, lbl)
  303. }
  304. }
  305. func RawTimeSince(t time.Time, lang string) string {
  306. return timeSince(t, lang)
  307. }
  308. // TimeSince calculates the time interval and generate user-friendly string.
  309. func TimeSince(t time.Time, lang string) template.HTML {
  310. return template.HTML(fmt.Sprintf(`<span class="time-since" title="%s">%s</span>`, t.Format(setting.TimeFormat), timeSince(t, lang)))
  311. }
  312. const (
  313. Byte = 1
  314. KByte = Byte * 1024
  315. MByte = KByte * 1024
  316. GByte = MByte * 1024
  317. TByte = GByte * 1024
  318. PByte = TByte * 1024
  319. EByte = PByte * 1024
  320. )
  321. var bytesSizeTable = map[string]uint64{
  322. "b": Byte,
  323. "kb": KByte,
  324. "mb": MByte,
  325. "gb": GByte,
  326. "tb": TByte,
  327. "pb": PByte,
  328. "eb": EByte,
  329. }
  330. func logn(n, b float64) float64 {
  331. return math.Log(n) / math.Log(b)
  332. }
  333. func humanateBytes(s uint64, base float64, sizes []string) string {
  334. if s < 10 {
  335. return fmt.Sprintf("%dB", s)
  336. }
  337. e := math.Floor(logn(float64(s), base))
  338. suffix := sizes[int(e)]
  339. val := float64(s) / math.Pow(base, math.Floor(e))
  340. f := "%.0f"
  341. if val < 10 {
  342. f = "%.1f"
  343. }
  344. return fmt.Sprintf(f+"%s", val, suffix)
  345. }
  346. // FileSize calculates the file size and generate user-friendly string.
  347. func FileSize(s int64) string {
  348. sizes := []string{"B", "KB", "MB", "GB", "TB", "PB", "EB"}
  349. return humanateBytes(uint64(s), 1024, sizes)
  350. }
  351. // Subtract deals with subtraction of all types of number.
  352. func Subtract(left interface{}, right interface{}) interface{} {
  353. var rleft, rright int64
  354. var fleft, fright float64
  355. var isInt bool = true
  356. switch left.(type) {
  357. case int:
  358. rleft = int64(left.(int))
  359. case int8:
  360. rleft = int64(left.(int8))
  361. case int16:
  362. rleft = int64(left.(int16))
  363. case int32:
  364. rleft = int64(left.(int32))
  365. case int64:
  366. rleft = left.(int64)
  367. case float32:
  368. fleft = float64(left.(float32))
  369. isInt = false
  370. case float64:
  371. fleft = left.(float64)
  372. isInt = false
  373. }
  374. switch right.(type) {
  375. case int:
  376. rright = int64(right.(int))
  377. case int8:
  378. rright = int64(right.(int8))
  379. case int16:
  380. rright = int64(right.(int16))
  381. case int32:
  382. rright = int64(right.(int32))
  383. case int64:
  384. rright = right.(int64)
  385. case float32:
  386. fright = float64(left.(float32))
  387. isInt = false
  388. case float64:
  389. fleft = left.(float64)
  390. isInt = false
  391. }
  392. if isInt {
  393. return rleft - rright
  394. } else {
  395. return fleft + float64(rleft) - (fright + float64(rright))
  396. }
  397. }
  398. // EllipsisString returns a truncated short string,
  399. // it appends '...' in the end of the length of string is too large.
  400. func EllipsisString(str string, length int) string {
  401. if length <= 3 {
  402. return "..."
  403. }
  404. if len(str) <= length {
  405. return str
  406. }
  407. return str[:length-3] + "..."
  408. }
  409. // TruncateString returns a truncated string with given limit,
  410. // it returns input string if length is not reached limit.
  411. func TruncateString(str string, limit int) string {
  412. if len(str) < limit {
  413. return str
  414. }
  415. return str[:limit]
  416. }
  417. // StringsToInt64s converts a slice of string to a slice of int64.
  418. func StringsToInt64s(strs []string) []int64 {
  419. ints := make([]int64, len(strs))
  420. for i := range strs {
  421. ints[i] = com.StrTo(strs[i]).MustInt64()
  422. }
  423. return ints
  424. }
  425. // Int64sToStrings converts a slice of int64 to a slice of string.
  426. func Int64sToStrings(ints []int64) []string {
  427. strs := make([]string, len(ints))
  428. for i := range ints {
  429. strs[i] = strconv.FormatInt(ints[i], 10)
  430. }
  431. return strs
  432. }
  433. // Int64sToMap converts a slice of int64 to a int64 map.
  434. func Int64sToMap(ints []int64) map[int64]bool {
  435. m := make(map[int64]bool)
  436. for _, i := range ints {
  437. m[i] = true
  438. }
  439. return m
  440. }
  441. // IsLetter reports whether the rune is a letter (category L).
  442. // https://github.com/golang/go/blob/master/src/go/scanner/scanner.go#L257
  443. func IsLetter(ch rune) bool {
  444. return 'a' <= ch && ch <= 'z' || 'A' <= ch && ch <= 'Z' || ch == '_' || ch >= 0x80 && unicode.IsLetter(ch)
  445. }
  446. // IsTextFile returns true if file content format is plain text or empty.
  447. func IsTextFile(data []byte) bool {
  448. if len(data) == 0 {
  449. return true
  450. }
  451. return strings.Index(http.DetectContentType(data), "text/") != -1
  452. }
  453. func IsImageFile(data []byte) bool {
  454. return strings.Index(http.DetectContentType(data), "image/") != -1
  455. }
  456. func IsPDFFile(data []byte) bool {
  457. return strings.Index(http.DetectContentType(data), "application/pdf") != -1
  458. }