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.

499 lines
12 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  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. "regexp"
  17. "strings"
  18. "time"
  19. "unicode/utf8"
  20. "github.com/Unknwon/com"
  21. "github.com/Unknwon/i18n"
  22. "github.com/microcosm-cc/bluemonday"
  23. "github.com/gogits/chardet"
  24. "github.com/gogits/gogs/modules/avatar"
  25. "github.com/gogits/gogs/modules/log"
  26. "github.com/gogits/gogs/modules/setting"
  27. )
  28. func BuildSanitizer() (p *bluemonday.Policy) {
  29. p = bluemonday.UGCPolicy()
  30. p.AllowAttrs("class").Matching(regexp.MustCompile(`[\p{L}\p{N}\s\-_',:\[\]!\./\\\(\)&]*`)).OnElements("code")
  31. p.AllowAttrs("type").Matching(regexp.MustCompile(`^checkbox$`)).OnElements("input")
  32. p.AllowAttrs("checked", "disabled").OnElements("input")
  33. return p
  34. }
  35. var Sanitizer = BuildSanitizer()
  36. // EncodeMD5 encodes string to md5 hex value.
  37. func EncodeMD5(str string) string {
  38. m := md5.New()
  39. m.Write([]byte(str))
  40. return hex.EncodeToString(m.Sum(nil))
  41. }
  42. // Encode string to sha1 hex value.
  43. func EncodeSha1(str string) string {
  44. h := sha1.New()
  45. h.Write([]byte(str))
  46. return hex.EncodeToString(h.Sum(nil))
  47. }
  48. func ShortSha(sha1 string) string {
  49. if len(sha1) == 40 {
  50. return sha1[:10]
  51. }
  52. return sha1
  53. }
  54. func DetectEncoding(content []byte) (string, error) {
  55. if utf8.Valid(content) {
  56. log.Debug("Detected encoding: utf-8 (fast)")
  57. return "UTF-8", nil
  58. }
  59. result, err := chardet.NewTextDetector().DetectBest(content)
  60. if result.Charset != "UTF-8" && len(setting.Repository.AnsiCharset) > 0 {
  61. log.Debug("Using default AnsiCharset: %s", setting.Repository.AnsiCharset)
  62. return setting.Repository.AnsiCharset, err
  63. }
  64. log.Debug("Detected encoding: %s", result.Charset)
  65. return result.Charset, err
  66. }
  67. func BasicAuthDecode(encoded string) (string, string, error) {
  68. s, err := base64.StdEncoding.DecodeString(encoded)
  69. if err != nil {
  70. return "", "", err
  71. }
  72. auth := strings.SplitN(string(s), ":", 2)
  73. return auth[0], auth[1], nil
  74. }
  75. func BasicAuthEncode(username, password string) string {
  76. return base64.StdEncoding.EncodeToString([]byte(username + ":" + password))
  77. }
  78. // GetRandomString generate random string by specify chars.
  79. func GetRandomString(n int, alphabets ...byte) string {
  80. const alphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
  81. var bytes = make([]byte, n)
  82. rand.Read(bytes)
  83. for i, b := range bytes {
  84. if len(alphabets) == 0 {
  85. bytes[i] = alphanum[b%byte(len(alphanum))]
  86. } else {
  87. bytes[i] = alphabets[b%byte(len(alphabets))]
  88. }
  89. }
  90. return string(bytes)
  91. }
  92. // http://code.google.com/p/go/source/browse/pbkdf2/pbkdf2.go?repo=crypto
  93. func PBKDF2(password, salt []byte, iter, keyLen int, h func() hash.Hash) []byte {
  94. prf := hmac.New(h, password)
  95. hashLen := prf.Size()
  96. numBlocks := (keyLen + hashLen - 1) / hashLen
  97. var buf [4]byte
  98. dk := make([]byte, 0, numBlocks*hashLen)
  99. U := make([]byte, hashLen)
  100. for block := 1; block <= numBlocks; block++ {
  101. // N.B.: || means concatenation, ^ means XOR
  102. // for each block T_i = U_1 ^ U_2 ^ ... ^ U_iter
  103. // U_1 = PRF(password, salt || uint(i))
  104. prf.Reset()
  105. prf.Write(salt)
  106. buf[0] = byte(block >> 24)
  107. buf[1] = byte(block >> 16)
  108. buf[2] = byte(block >> 8)
  109. buf[3] = byte(block)
  110. prf.Write(buf[:4])
  111. dk = prf.Sum(dk)
  112. T := dk[len(dk)-hashLen:]
  113. copy(U, T)
  114. // U_n = PRF(password, U_(n-1))
  115. for n := 2; n <= iter; n++ {
  116. prf.Reset()
  117. prf.Write(U)
  118. U = U[:0]
  119. U = prf.Sum(U)
  120. for x := range U {
  121. T[x] ^= U[x]
  122. }
  123. }
  124. }
  125. return dk[:keyLen]
  126. }
  127. // verify time limit code
  128. func VerifyTimeLimitCode(data string, minutes int, code string) bool {
  129. if len(code) <= 18 {
  130. return false
  131. }
  132. // split code
  133. start := code[:12]
  134. lives := code[12:18]
  135. if d, err := com.StrTo(lives).Int(); err == nil {
  136. minutes = d
  137. }
  138. // right active code
  139. retCode := CreateTimeLimitCode(data, minutes, start)
  140. if retCode == code && minutes > 0 {
  141. // check time is expired or not
  142. before, _ := time.ParseInLocation("200601021504", start, time.Local)
  143. now := time.Now()
  144. if before.Add(time.Minute*time.Duration(minutes)).Unix() > now.Unix() {
  145. return true
  146. }
  147. }
  148. return false
  149. }
  150. const TimeLimitCodeLength = 12 + 6 + 40
  151. // create a time limit code
  152. // code format: 12 length date time string + 6 minutes string + 40 sha1 encoded string
  153. func CreateTimeLimitCode(data string, minutes int, startInf interface{}) string {
  154. format := "200601021504"
  155. var start, end time.Time
  156. var startStr, endStr string
  157. if startInf == nil {
  158. // Use now time create code
  159. start = time.Now()
  160. startStr = start.Format(format)
  161. } else {
  162. // use start string create code
  163. startStr = startInf.(string)
  164. start, _ = time.ParseInLocation(format, startStr, time.Local)
  165. startStr = start.Format(format)
  166. }
  167. end = start.Add(time.Minute * time.Duration(minutes))
  168. endStr = end.Format(format)
  169. // create sha1 encode string
  170. sh := sha1.New()
  171. sh.Write([]byte(data + setting.SecretKey + startStr + endStr + com.ToStr(minutes)))
  172. encoded := hex.EncodeToString(sh.Sum(nil))
  173. code := fmt.Sprintf("%s%06d%s", startStr, minutes, encoded)
  174. return code
  175. }
  176. // AvatarLink returns avatar link by given e-mail.
  177. func AvatarLink(email string) string {
  178. if setting.DisableGravatar || setting.OfflineMode {
  179. return setting.AppSubUrl + "/img/avatar_default.jpg"
  180. }
  181. gravatarHash := avatar.HashEmail(email)
  182. if setting.Service.EnableCacheAvatar {
  183. return setting.AppSubUrl + "/avatar/" + gravatarHash
  184. }
  185. return setting.GravatarSource + gravatarHash
  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 len(str) < length {
  402. return str
  403. }
  404. return str[:length-3] + "..."
  405. }
  406. // StringsToInt64s converts a slice of string to a slice of int64.
  407. func StringsToInt64s(strs []string) []int64 {
  408. ints := make([]int64, len(strs))
  409. for i := range strs {
  410. ints[i] = com.StrTo(strs[i]).MustInt64()
  411. }
  412. return ints
  413. }
  414. // Int64sToStrings converts a slice of int64 to a slice of string.
  415. func Int64sToStrings(ints []int64) []string {
  416. strs := make([]string, len(ints))
  417. for i := range ints {
  418. strs[i] = com.ToStr(ints[i])
  419. }
  420. return strs
  421. }
  422. // Int64sToMap converts a slice of int64 to a int64 map.
  423. func Int64sToMap(ints []int64) map[int64]bool {
  424. m := make(map[int64]bool)
  425. for _, i := range ints {
  426. m[i] = true
  427. }
  428. return m
  429. }