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 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  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/hex"
  11. "fmt"
  12. "hash"
  13. "math"
  14. r "math/rand"
  15. "strings"
  16. "time"
  17. "github.com/Unknwon/com"
  18. "github.com/Unknwon/i18n"
  19. "github.com/gogits/gogs/modules/setting"
  20. )
  21. // Encode string to md5 hex value
  22. func EncodeMd5(str string) string {
  23. m := md5.New()
  24. m.Write([]byte(str))
  25. return hex.EncodeToString(m.Sum(nil))
  26. }
  27. // GetRandomString generate random string by specify chars.
  28. func GetRandomString(n int, alphabets ...byte) string {
  29. const alphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
  30. var bytes = make([]byte, n)
  31. rand.Read(bytes)
  32. for i, b := range bytes {
  33. if len(alphabets) == 0 {
  34. bytes[i] = alphanum[b%byte(len(alphanum))]
  35. } else {
  36. bytes[i] = alphabets[b%byte(len(alphabets))]
  37. }
  38. }
  39. return string(bytes)
  40. }
  41. // RandomCreateBytes generate random []byte by specify chars.
  42. func RandomCreateBytes(n int, alphabets ...byte) []byte {
  43. const alphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
  44. var bytes = make([]byte, n)
  45. var randby bool
  46. if num, err := rand.Read(bytes); num != n || err != nil {
  47. r.Seed(time.Now().UnixNano())
  48. randby = true
  49. }
  50. for i, b := range bytes {
  51. if len(alphabets) == 0 {
  52. if randby {
  53. bytes[i] = alphanum[r.Intn(len(alphanum))]
  54. } else {
  55. bytes[i] = alphanum[b%byte(len(alphanum))]
  56. }
  57. } else {
  58. if randby {
  59. bytes[i] = alphabets[r.Intn(len(alphabets))]
  60. } else {
  61. bytes[i] = alphabets[b%byte(len(alphabets))]
  62. }
  63. }
  64. }
  65. return bytes
  66. }
  67. // http://code.google.com/p/go/source/browse/pbkdf2/pbkdf2.go?repo=crypto
  68. func PBKDF2(password, salt []byte, iter, keyLen int, h func() hash.Hash) []byte {
  69. prf := hmac.New(h, password)
  70. hashLen := prf.Size()
  71. numBlocks := (keyLen + hashLen - 1) / hashLen
  72. var buf [4]byte
  73. dk := make([]byte, 0, numBlocks*hashLen)
  74. U := make([]byte, hashLen)
  75. for block := 1; block <= numBlocks; block++ {
  76. // N.B.: || means concatenation, ^ means XOR
  77. // for each block T_i = U_1 ^ U_2 ^ ... ^ U_iter
  78. // U_1 = PRF(password, salt || uint(i))
  79. prf.Reset()
  80. prf.Write(salt)
  81. buf[0] = byte(block >> 24)
  82. buf[1] = byte(block >> 16)
  83. buf[2] = byte(block >> 8)
  84. buf[3] = byte(block)
  85. prf.Write(buf[:4])
  86. dk = prf.Sum(dk)
  87. T := dk[len(dk)-hashLen:]
  88. copy(U, T)
  89. // U_n = PRF(password, U_(n-1))
  90. for n := 2; n <= iter; n++ {
  91. prf.Reset()
  92. prf.Write(U)
  93. U = U[:0]
  94. U = prf.Sum(U)
  95. for x := range U {
  96. T[x] ^= U[x]
  97. }
  98. }
  99. }
  100. return dk[:keyLen]
  101. }
  102. // verify time limit code
  103. func VerifyTimeLimitCode(data string, minutes int, code string) bool {
  104. if len(code) <= 18 {
  105. return false
  106. }
  107. // split code
  108. start := code[:12]
  109. lives := code[12:18]
  110. if d, err := com.StrTo(lives).Int(); err == nil {
  111. minutes = d
  112. }
  113. // right active code
  114. retCode := CreateTimeLimitCode(data, minutes, start)
  115. if retCode == code && minutes > 0 {
  116. // check time is expired or not
  117. before, _ := DateParse(start, "YmdHi")
  118. now := time.Now()
  119. if before.Add(time.Minute*time.Duration(minutes)).Unix() > now.Unix() {
  120. return true
  121. }
  122. }
  123. return false
  124. }
  125. const TimeLimitCodeLength = 12 + 6 + 40
  126. // create a time limit code
  127. // code format: 12 length date time string + 6 minutes string + 40 sha1 encoded string
  128. func CreateTimeLimitCode(data string, minutes int, startInf interface{}) string {
  129. format := "YmdHi"
  130. var start, end time.Time
  131. var startStr, endStr string
  132. if startInf == nil {
  133. // Use now time create code
  134. start = time.Now()
  135. startStr = DateFormat(start, format)
  136. } else {
  137. // use start string create code
  138. startStr = startInf.(string)
  139. start, _ = DateParse(startStr, format)
  140. startStr = DateFormat(start, format)
  141. }
  142. end = start.Add(time.Minute * time.Duration(minutes))
  143. endStr = DateFormat(end, format)
  144. // create sha1 encode string
  145. sh := sha1.New()
  146. sh.Write([]byte(data + setting.SecretKey + startStr + endStr + com.ToStr(minutes)))
  147. encoded := hex.EncodeToString(sh.Sum(nil))
  148. code := fmt.Sprintf("%s%06d%s", startStr, minutes, encoded)
  149. return code
  150. }
  151. // AvatarLink returns avatar link by given e-mail.
  152. func AvatarLink(email string) string {
  153. if setting.DisableGravatar {
  154. return "/img/avatar_default.jpg"
  155. } else if setting.Service.EnableCacheAvatar {
  156. return "/avatar/" + EncodeMd5(email)
  157. }
  158. return "//1.gravatar.com/avatar/" + EncodeMd5(email)
  159. }
  160. // Seconds-based time units
  161. const (
  162. Minute = 60
  163. Hour = 60 * Minute
  164. Day = 24 * Hour
  165. Week = 7 * Day
  166. Month = 30 * Day
  167. Year = 12 * Month
  168. )
  169. func computeTimeDiff(diff int64) (int64, string) {
  170. diffStr := ""
  171. switch {
  172. case diff <= 0:
  173. diff = 0
  174. diffStr = "now"
  175. case diff < 2:
  176. diff = 0
  177. diffStr = "1 second"
  178. case diff < 1*Minute:
  179. diffStr = fmt.Sprintf("%d seconds", diff)
  180. diff = 0
  181. case diff < 2*Minute:
  182. diff -= 1 * Minute
  183. diffStr = "1 minute"
  184. case diff < 1*Hour:
  185. diffStr = fmt.Sprintf("%d minutes", diff/Minute)
  186. diff -= diff / Minute * Minute
  187. case diff < 2*Hour:
  188. diff -= 1 * Hour
  189. diffStr = "1 hour"
  190. case diff < 1*Day:
  191. diffStr = fmt.Sprintf("%d hours", diff/Hour)
  192. diff -= diff / Hour * Hour
  193. case diff < 2*Day:
  194. diff -= 1 * Day
  195. diffStr = "1 day"
  196. case diff < 1*Week:
  197. diffStr = fmt.Sprintf("%d days", diff/Day)
  198. diff -= diff / Day * Day
  199. case diff < 2*Week:
  200. diff -= 1 * Week
  201. diffStr = "1 week"
  202. case diff < 1*Month:
  203. diffStr = fmt.Sprintf("%d weeks", diff/Week)
  204. diff -= diff / Week * Week
  205. case diff < 2*Month:
  206. diff -= 1 * Month
  207. diffStr = "1 month"
  208. case diff < 1*Year:
  209. diffStr = fmt.Sprintf("%d months", diff/Month)
  210. diff -= diff / Month * Month
  211. case diff < 2*Year:
  212. diff -= 1 * Year
  213. diffStr = "1 year"
  214. default:
  215. diffStr = fmt.Sprintf("%d years", diff/Year)
  216. diff = 0
  217. }
  218. return diff, diffStr
  219. }
  220. // TimeSincePro calculates the time interval and generate full user-friendly string.
  221. func TimeSincePro(then time.Time) string {
  222. now := time.Now()
  223. diff := now.Unix() - then.Unix()
  224. if then.After(now) {
  225. return "future"
  226. }
  227. var timeStr, diffStr string
  228. for {
  229. if diff == 0 {
  230. break
  231. }
  232. diff, diffStr = computeTimeDiff(diff)
  233. timeStr += ", " + diffStr
  234. }
  235. return strings.TrimPrefix(timeStr, ", ")
  236. }
  237. // TimeSince calculates the time interval and generate user-friendly string.
  238. func TimeSince(then time.Time, lang string) string {
  239. now := time.Now()
  240. lbl := i18n.Tr(lang, "tool.ago")
  241. diff := now.Unix() - then.Unix()
  242. if then.After(now) {
  243. lbl = i18n.Tr(lang, "tool.from_now")
  244. diff = then.Unix() - now.Unix()
  245. }
  246. switch {
  247. case diff <= 0:
  248. return i18n.Tr(lang, "tool.now")
  249. case diff <= 2:
  250. return i18n.Tr(lang, "tool.1s", lbl)
  251. case diff < 1*Minute:
  252. return i18n.Tr(lang, "tool.seconds", diff, lbl)
  253. case diff < 2*Minute:
  254. return i18n.Tr(lang, "tool.1m", lbl)
  255. case diff < 1*Hour:
  256. return i18n.Tr(lang, "tool.minutes", diff/Minute, lbl)
  257. case diff < 2*Hour:
  258. return i18n.Tr(lang, "tool.1h", lbl)
  259. case diff < 1*Day:
  260. return i18n.Tr(lang, "tool.hours", diff/Hour, lbl)
  261. case diff < 2*Day:
  262. return i18n.Tr(lang, "tool.1d", lbl)
  263. case diff < 1*Week:
  264. return i18n.Tr(lang, "tool.days", diff/Day, lbl)
  265. case diff < 2*Week:
  266. return i18n.Tr(lang, "tool.1w", lbl)
  267. case diff < 1*Month:
  268. return i18n.Tr(lang, "tool.weeks", diff/Week, lbl)
  269. case diff < 2*Month:
  270. return i18n.Tr(lang, "tool.1mon", lbl)
  271. case diff < 1*Year:
  272. return i18n.Tr(lang, "tool.months", diff/Month, lbl)
  273. case diff < 2*Year:
  274. return i18n.Tr(lang, "tool.1y", lbl)
  275. default:
  276. return i18n.Tr(lang, "tool.years", diff/Year, lbl)
  277. }
  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. }
  365. // DateFormat pattern rules.
  366. var datePatterns = []string{
  367. // year
  368. "Y", "2006", // A full numeric representation of a year, 4 digits Examples: 1999 or 2003
  369. "y", "06", //A two digit representation of a year Examples: 99 or 03
  370. // month
  371. "m", "01", // Numeric representation of a month, with leading zeros 01 through 12
  372. "n", "1", // Numeric representation of a month, without leading zeros 1 through 12
  373. "M", "Jan", // A short textual representation of a month, three letters Jan through Dec
  374. "F", "January", // A full textual representation of a month, such as January or March January through December
  375. // day
  376. "d", "02", // Day of the month, 2 digits with leading zeros 01 to 31
  377. "j", "2", // Day of the month without leading zeros 1 to 31
  378. // week
  379. "D", "Mon", // A textual representation of a day, three letters Mon through Sun
  380. "l", "Monday", // A full textual representation of the day of the week Sunday through Saturday
  381. // time
  382. "g", "3", // 12-hour format of an hour without leading zeros 1 through 12
  383. "G", "15", // 24-hour format of an hour without leading zeros 0 through 23
  384. "h", "03", // 12-hour format of an hour with leading zeros 01 through 12
  385. "H", "15", // 24-hour format of an hour with leading zeros 00 through 23
  386. "a", "pm", // Lowercase Ante meridiem and Post meridiem am or pm
  387. "A", "PM", // Uppercase Ante meridiem and Post meridiem AM or PM
  388. "i", "04", // Minutes with leading zeros 00 to 59
  389. "s", "05", // Seconds, with leading zeros 00 through 59
  390. // time zone
  391. "T", "MST",
  392. "P", "-07:00",
  393. "O", "-0700",
  394. // RFC 2822
  395. "r", time.RFC1123Z,
  396. }
  397. // Parse Date use PHP time format.
  398. func DateParse(dateString, format string) (time.Time, error) {
  399. replacer := strings.NewReplacer(datePatterns...)
  400. format = replacer.Replace(format)
  401. return time.ParseInLocation(format, dateString, time.Local)
  402. }
  403. // Date takes a PHP like date func to Go's time format.
  404. func DateFormat(t time.Time, format string) string {
  405. replacer := strings.NewReplacer(datePatterns...)
  406. format = replacer.Replace(format)
  407. return t.Format(format)
  408. }