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.

422 lines
9.5 KiB

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
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. "strings"
  17. "time"
  18. "github.com/Unknwon/com"
  19. "github.com/Unknwon/i18n"
  20. "github.com/microcosm-cc/bluemonday"
  21. "github.com/gogits/gogs/modules/avatar"
  22. "github.com/gogits/gogs/modules/setting"
  23. )
  24. var Sanitizer = bluemonday.UGCPolicy()
  25. // Encode string to md5 hex value.
  26. func EncodeMd5(str string) string {
  27. m := md5.New()
  28. m.Write([]byte(str))
  29. return hex.EncodeToString(m.Sum(nil))
  30. }
  31. // Encode string to sha1 hex value.
  32. func EncodeSha1(str string) string {
  33. h := sha1.New()
  34. h.Write([]byte(str))
  35. return hex.EncodeToString(h.Sum(nil))
  36. }
  37. func BasicAuthDecode(encoded string) (string, string, error) {
  38. s, err := base64.StdEncoding.DecodeString(encoded)
  39. if err != nil {
  40. return "", "", err
  41. }
  42. auth := strings.SplitN(string(s), ":", 2)
  43. return auth[0], auth[1], nil
  44. }
  45. func BasicAuthEncode(username, password string) string {
  46. return base64.StdEncoding.EncodeToString([]byte(username + ":" + password))
  47. }
  48. // GetRandomString generate random string by specify chars.
  49. func GetRandomString(n int, alphabets ...byte) string {
  50. const alphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
  51. var bytes = make([]byte, n)
  52. rand.Read(bytes)
  53. for i, b := range bytes {
  54. if len(alphabets) == 0 {
  55. bytes[i] = alphanum[b%byte(len(alphanum))]
  56. } else {
  57. bytes[i] = alphabets[b%byte(len(alphabets))]
  58. }
  59. }
  60. return string(bytes)
  61. }
  62. // http://code.google.com/p/go/source/browse/pbkdf2/pbkdf2.go?repo=crypto
  63. func PBKDF2(password, salt []byte, iter, keyLen int, h func() hash.Hash) []byte {
  64. prf := hmac.New(h, password)
  65. hashLen := prf.Size()
  66. numBlocks := (keyLen + hashLen - 1) / hashLen
  67. var buf [4]byte
  68. dk := make([]byte, 0, numBlocks*hashLen)
  69. U := make([]byte, hashLen)
  70. for block := 1; block <= numBlocks; block++ {
  71. // N.B.: || means concatenation, ^ means XOR
  72. // for each block T_i = U_1 ^ U_2 ^ ... ^ U_iter
  73. // U_1 = PRF(password, salt || uint(i))
  74. prf.Reset()
  75. prf.Write(salt)
  76. buf[0] = byte(block >> 24)
  77. buf[1] = byte(block >> 16)
  78. buf[2] = byte(block >> 8)
  79. buf[3] = byte(block)
  80. prf.Write(buf[:4])
  81. dk = prf.Sum(dk)
  82. T := dk[len(dk)-hashLen:]
  83. copy(U, T)
  84. // U_n = PRF(password, U_(n-1))
  85. for n := 2; n <= iter; n++ {
  86. prf.Reset()
  87. prf.Write(U)
  88. U = U[:0]
  89. U = prf.Sum(U)
  90. for x := range U {
  91. T[x] ^= U[x]
  92. }
  93. }
  94. }
  95. return dk[:keyLen]
  96. }
  97. // verify time limit code
  98. func VerifyTimeLimitCode(data string, minutes int, code string) bool {
  99. if len(code) <= 18 {
  100. return false
  101. }
  102. // split code
  103. start := code[:12]
  104. lives := code[12:18]
  105. if d, err := com.StrTo(lives).Int(); err == nil {
  106. minutes = d
  107. }
  108. // right active code
  109. retCode := CreateTimeLimitCode(data, minutes, start)
  110. if retCode == code && minutes > 0 {
  111. // check time is expired or not
  112. before, _ := time.ParseInLocation("200601021504", start, time.Local)
  113. now := time.Now()
  114. if before.Add(time.Minute*time.Duration(minutes)).Unix() > now.Unix() {
  115. return true
  116. }
  117. }
  118. return false
  119. }
  120. const TimeLimitCodeLength = 12 + 6 + 40
  121. // create a time limit code
  122. // code format: 12 length date time string + 6 minutes string + 40 sha1 encoded string
  123. func CreateTimeLimitCode(data string, minutes int, startInf interface{}) string {
  124. format := "200601021504"
  125. var start, end time.Time
  126. var startStr, endStr string
  127. if startInf == nil {
  128. // Use now time create code
  129. start = time.Now()
  130. startStr = start.Format(format)
  131. } else {
  132. // use start string create code
  133. startStr = startInf.(string)
  134. start, _ = time.ParseInLocation(format, startStr, time.Local)
  135. startStr = start.Format(format)
  136. }
  137. end = start.Add(time.Minute * time.Duration(minutes))
  138. endStr = end.Format(format)
  139. // create sha1 encode string
  140. sh := sha1.New()
  141. sh.Write([]byte(data + setting.SecretKey + startStr + endStr + com.ToStr(minutes)))
  142. encoded := hex.EncodeToString(sh.Sum(nil))
  143. code := fmt.Sprintf("%s%06d%s", startStr, minutes, encoded)
  144. return code
  145. }
  146. // AvatarLink returns avatar link by given e-mail.
  147. func AvatarLink(email string) string {
  148. if setting.DisableGravatar {
  149. return setting.AppSubUrl + "/img/avatar_default.jpg"
  150. }
  151. gravatarHash := avatar.HashEmail(email)
  152. if setting.Service.EnableCacheAvatar {
  153. return setting.AppSubUrl + "/avatar/" + gravatarHash
  154. }
  155. return setting.GravatarSource + gravatarHash
  156. }
  157. // Seconds-based time units
  158. const (
  159. Minute = 60
  160. Hour = 60 * Minute
  161. Day = 24 * Hour
  162. Week = 7 * Day
  163. Month = 30 * Day
  164. Year = 12 * Month
  165. )
  166. func computeTimeDiff(diff int64) (int64, string) {
  167. diffStr := ""
  168. switch {
  169. case diff <= 0:
  170. diff = 0
  171. diffStr = "now"
  172. case diff < 2:
  173. diff = 0
  174. diffStr = "1 second"
  175. case diff < 1*Minute:
  176. diffStr = fmt.Sprintf("%d seconds", diff)
  177. diff = 0
  178. case diff < 2*Minute:
  179. diff -= 1 * Minute
  180. diffStr = "1 minute"
  181. case diff < 1*Hour:
  182. diffStr = fmt.Sprintf("%d minutes", diff/Minute)
  183. diff -= diff / Minute * Minute
  184. case diff < 2*Hour:
  185. diff -= 1 * Hour
  186. diffStr = "1 hour"
  187. case diff < 1*Day:
  188. diffStr = fmt.Sprintf("%d hours", diff/Hour)
  189. diff -= diff / Hour * Hour
  190. case diff < 2*Day:
  191. diff -= 1 * Day
  192. diffStr = "1 day"
  193. case diff < 1*Week:
  194. diffStr = fmt.Sprintf("%d days", diff/Day)
  195. diff -= diff / Day * Day
  196. case diff < 2*Week:
  197. diff -= 1 * Week
  198. diffStr = "1 week"
  199. case diff < 1*Month:
  200. diffStr = fmt.Sprintf("%d weeks", diff/Week)
  201. diff -= diff / Week * Week
  202. case diff < 2*Month:
  203. diff -= 1 * Month
  204. diffStr = "1 month"
  205. case diff < 1*Year:
  206. diffStr = fmt.Sprintf("%d months", diff/Month)
  207. diff -= diff / Month * Month
  208. case diff < 2*Year:
  209. diff -= 1 * Year
  210. diffStr = "1 year"
  211. default:
  212. diffStr = fmt.Sprintf("%d years", diff/Year)
  213. diff = 0
  214. }
  215. return diff, diffStr
  216. }
  217. // TimeSincePro calculates the time interval and generate full user-friendly string.
  218. func TimeSincePro(then time.Time) string {
  219. now := time.Now()
  220. diff := now.Unix() - then.Unix()
  221. if then.After(now) {
  222. return "future"
  223. }
  224. var timeStr, diffStr string
  225. for {
  226. if diff == 0 {
  227. break
  228. }
  229. diff, diffStr = computeTimeDiff(diff)
  230. timeStr += ", " + diffStr
  231. }
  232. return strings.TrimPrefix(timeStr, ", ")
  233. }
  234. func timeSince(then time.Time, lang string) string {
  235. now := time.Now()
  236. lbl := i18n.Tr(lang, "tool.ago")
  237. diff := now.Unix() - then.Unix()
  238. if then.After(now) {
  239. lbl = i18n.Tr(lang, "tool.from_now")
  240. diff = then.Unix() - now.Unix()
  241. }
  242. switch {
  243. case diff <= 0:
  244. return i18n.Tr(lang, "tool.now")
  245. case diff <= 2:
  246. return i18n.Tr(lang, "tool.1s", lbl)
  247. case diff < 1*Minute:
  248. return i18n.Tr(lang, "tool.seconds", diff, lbl)
  249. case diff < 2*Minute:
  250. return i18n.Tr(lang, "tool.1m", lbl)
  251. case diff < 1*Hour:
  252. return i18n.Tr(lang, "tool.minutes", diff/Minute, lbl)
  253. case diff < 2*Hour:
  254. return i18n.Tr(lang, "tool.1h", lbl)
  255. case diff < 1*Day:
  256. return i18n.Tr(lang, "tool.hours", diff/Hour, lbl)
  257. case diff < 2*Day:
  258. return i18n.Tr(lang, "tool.1d", lbl)
  259. case diff < 1*Week:
  260. return i18n.Tr(lang, "tool.days", diff/Day, lbl)
  261. case diff < 2*Week:
  262. return i18n.Tr(lang, "tool.1w", lbl)
  263. case diff < 1*Month:
  264. return i18n.Tr(lang, "tool.weeks", diff/Week, lbl)
  265. case diff < 2*Month:
  266. return i18n.Tr(lang, "tool.1mon", lbl)
  267. case diff < 1*Year:
  268. return i18n.Tr(lang, "tool.months", diff/Month, lbl)
  269. case diff < 2*Year:
  270. return i18n.Tr(lang, "tool.1y", lbl)
  271. default:
  272. return i18n.Tr(lang, "tool.years", diff/Year, lbl)
  273. }
  274. }
  275. // TimeSince calculates the time interval and generate user-friendly string.
  276. func TimeSince(t time.Time, lang string) template.HTML {
  277. return template.HTML(fmt.Sprintf(`<span class="time-since" title="%s">%s</span>`, t.Format(setting.TimeFormat), timeSince(t, lang)))
  278. }
  279. const (
  280. Byte = 1
  281. KByte = Byte * 1024
  282. MByte = KByte * 1024
  283. GByte = MByte * 1024
  284. TByte = GByte * 1024
  285. PByte = TByte * 1024
  286. EByte = PByte * 1024
  287. )
  288. var bytesSizeTable = map[string]uint64{
  289. "b": Byte,
  290. "kb": KByte,
  291. "mb": MByte,
  292. "gb": GByte,
  293. "tb": TByte,
  294. "pb": PByte,
  295. "eb": EByte,
  296. }
  297. func logn(n, b float64) float64 {
  298. return math.Log(n) / math.Log(b)
  299. }
  300. func humanateBytes(s uint64, base float64, sizes []string) string {
  301. if s < 10 {
  302. return fmt.Sprintf("%dB", s)
  303. }
  304. e := math.Floor(logn(float64(s), base))
  305. suffix := sizes[int(e)]
  306. val := float64(s) / math.Pow(base, math.Floor(e))
  307. f := "%.0f"
  308. if val < 10 {
  309. f = "%.1f"
  310. }
  311. return fmt.Sprintf(f+"%s", val, suffix)
  312. }
  313. // FileSize calculates the file size and generate user-friendly string.
  314. func FileSize(s int64) string {
  315. sizes := []string{"B", "KB", "MB", "GB", "TB", "PB", "EB"}
  316. return humanateBytes(uint64(s), 1024, sizes)
  317. }
  318. // Subtract deals with subtraction of all types of number.
  319. func Subtract(left interface{}, right interface{}) interface{} {
  320. var rleft, rright int64
  321. var fleft, fright float64
  322. var isInt bool = true
  323. switch left.(type) {
  324. case int:
  325. rleft = int64(left.(int))
  326. case int8:
  327. rleft = int64(left.(int8))
  328. case int16:
  329. rleft = int64(left.(int16))
  330. case int32:
  331. rleft = int64(left.(int32))
  332. case int64:
  333. rleft = left.(int64)
  334. case float32:
  335. fleft = float64(left.(float32))
  336. isInt = false
  337. case float64:
  338. fleft = left.(float64)
  339. isInt = false
  340. }
  341. switch right.(type) {
  342. case int:
  343. rright = int64(right.(int))
  344. case int8:
  345. rright = int64(right.(int8))
  346. case int16:
  347. rright = int64(right.(int16))
  348. case int32:
  349. rright = int64(right.(int32))
  350. case int64:
  351. rright = right.(int64)
  352. case float32:
  353. fright = float64(left.(float32))
  354. isInt = false
  355. case float64:
  356. fleft = left.(float64)
  357. isInt = false
  358. }
  359. if isInt {
  360. return rleft - rright
  361. } else {
  362. return fleft + float64(rleft) - (fright + float64(rright))
  363. }
  364. }