tool.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  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. "html/template"
  14. "math"
  15. "strconv"
  16. "strings"
  17. "time"
  18. "github.com/gogits/gogs/modules/setting"
  19. )
  20. // Encode string to md5 hex value
  21. func EncodeMd5(str string) string {
  22. m := md5.New()
  23. m.Write([]byte(str))
  24. return hex.EncodeToString(m.Sum(nil))
  25. }
  26. // GetRandomString generate random string by specify chars.
  27. func GetRandomString(n int, alphabets ...byte) string {
  28. const alphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
  29. var bytes = make([]byte, n)
  30. rand.Read(bytes)
  31. for i, b := range bytes {
  32. if len(alphabets) == 0 {
  33. bytes[i] = alphanum[b%byte(len(alphanum))]
  34. } else {
  35. bytes[i] = alphabets[b%byte(len(alphabets))]
  36. }
  37. }
  38. return string(bytes)
  39. }
  40. // http://code.google.com/p/go/source/browse/pbkdf2/pbkdf2.go?repo=crypto
  41. func PBKDF2(password, salt []byte, iter, keyLen int, h func() hash.Hash) []byte {
  42. prf := hmac.New(h, password)
  43. hashLen := prf.Size()
  44. numBlocks := (keyLen + hashLen - 1) / hashLen
  45. var buf [4]byte
  46. dk := make([]byte, 0, numBlocks*hashLen)
  47. U := make([]byte, hashLen)
  48. for block := 1; block <= numBlocks; block++ {
  49. // N.B.: || means concatenation, ^ means XOR
  50. // for each block T_i = U_1 ^ U_2 ^ ... ^ U_iter
  51. // U_1 = PRF(password, salt || uint(i))
  52. prf.Reset()
  53. prf.Write(salt)
  54. buf[0] = byte(block >> 24)
  55. buf[1] = byte(block >> 16)
  56. buf[2] = byte(block >> 8)
  57. buf[3] = byte(block)
  58. prf.Write(buf[:4])
  59. dk = prf.Sum(dk)
  60. T := dk[len(dk)-hashLen:]
  61. copy(U, T)
  62. // U_n = PRF(password, U_(n-1))
  63. for n := 2; n <= iter; n++ {
  64. prf.Reset()
  65. prf.Write(U)
  66. U = U[:0]
  67. U = prf.Sum(U)
  68. for x := range U {
  69. T[x] ^= U[x]
  70. }
  71. }
  72. }
  73. return dk[:keyLen]
  74. }
  75. // verify time limit code
  76. func VerifyTimeLimitCode(data string, minutes int, code string) bool {
  77. if len(code) <= 18 {
  78. return false
  79. }
  80. // split code
  81. start := code[:12]
  82. lives := code[12:18]
  83. if d, err := StrTo(lives).Int(); err == nil {
  84. minutes = d
  85. }
  86. // right active code
  87. retCode := CreateTimeLimitCode(data, minutes, start)
  88. if retCode == code && minutes > 0 {
  89. // check time is expired or not
  90. before, _ := DateParse(start, "YmdHi")
  91. now := time.Now()
  92. if before.Add(time.Minute*time.Duration(minutes)).Unix() > now.Unix() {
  93. return true
  94. }
  95. }
  96. return false
  97. }
  98. const TimeLimitCodeLength = 12 + 6 + 40
  99. // create a time limit code
  100. // code format: 12 length date time string + 6 minutes string + 40 sha1 encoded string
  101. func CreateTimeLimitCode(data string, minutes int, startInf interface{}) string {
  102. format := "YmdHi"
  103. var start, end time.Time
  104. var startStr, endStr string
  105. if startInf == nil {
  106. // Use now time create code
  107. start = time.Now()
  108. startStr = DateFormat(start, format)
  109. } else {
  110. // use start string create code
  111. startStr = startInf.(string)
  112. start, _ = DateParse(startStr, format)
  113. startStr = DateFormat(start, format)
  114. }
  115. end = start.Add(time.Minute * time.Duration(minutes))
  116. endStr = DateFormat(end, format)
  117. // create sha1 encode string
  118. sh := sha1.New()
  119. sh.Write([]byte(data + setting.SecretKey + startStr + endStr + ToStr(minutes)))
  120. encoded := hex.EncodeToString(sh.Sum(nil))
  121. code := fmt.Sprintf("%s%06d%s", startStr, minutes, encoded)
  122. return code
  123. }
  124. // AvatarLink returns avatar link by given e-mail.
  125. func AvatarLink(email string) string {
  126. if setting.DisableGravatar {
  127. return "/img/avatar_default.jpg"
  128. } else if setting.Service.EnableCacheAvatar {
  129. return "/avatar/" + EncodeMd5(email)
  130. }
  131. return "//1.gravatar.com/avatar/" + EncodeMd5(email)
  132. }
  133. // Seconds-based time units
  134. const (
  135. Minute = 60
  136. Hour = 60 * Minute
  137. Day = 24 * Hour
  138. Week = 7 * Day
  139. Month = 30 * Day
  140. Year = 12 * Month
  141. )
  142. func computeTimeDiff(diff int64) (int64, string) {
  143. diffStr := ""
  144. switch {
  145. case diff <= 0:
  146. diff = 0
  147. diffStr = "now"
  148. case diff < 2:
  149. diff = 0
  150. diffStr = "1 second"
  151. case diff < 1*Minute:
  152. diffStr = fmt.Sprintf("%d seconds", diff)
  153. diff = 0
  154. case diff < 2*Minute:
  155. diff -= 1 * Minute
  156. diffStr = "1 minute"
  157. case diff < 1*Hour:
  158. diffStr = fmt.Sprintf("%d minutes", diff/Minute)
  159. diff -= diff / Minute * Minute
  160. case diff < 2*Hour:
  161. diff -= 1 * Hour
  162. diffStr = "1 hour"
  163. case diff < 1*Day:
  164. diffStr = fmt.Sprintf("%d hours", diff/Hour)
  165. diff -= diff / Hour * Hour
  166. case diff < 2*Day:
  167. diff -= 1 * Day
  168. diffStr = "1 day"
  169. case diff < 1*Week:
  170. diffStr = fmt.Sprintf("%d days", diff/Day)
  171. diff -= diff / Day * Day
  172. case diff < 2*Week:
  173. diff -= 1 * Week
  174. diffStr = "1 week"
  175. case diff < 1*Month:
  176. diffStr = fmt.Sprintf("%d weeks", diff/Week)
  177. diff -= diff / Week * Week
  178. case diff < 2*Month:
  179. diff -= 1 * Month
  180. diffStr = "1 month"
  181. case diff < 1*Year:
  182. diffStr = fmt.Sprintf("%d months", diff/Month)
  183. diff -= diff / Month * Month
  184. case diff < 2*Year:
  185. diff -= 1 * Year
  186. diffStr = "1 year"
  187. default:
  188. diffStr = fmt.Sprintf("%d years", diff/Year)
  189. diff = 0
  190. }
  191. return diff, diffStr
  192. }
  193. // TimeSincePro calculates the time interval and generate full user-friendly string.
  194. func TimeSincePro(then time.Time) string {
  195. now := time.Now()
  196. diff := now.Unix() - then.Unix()
  197. if then.After(now) {
  198. return "future"
  199. }
  200. var timeStr, diffStr string
  201. for {
  202. if diff == 0 {
  203. break
  204. }
  205. diff, diffStr = computeTimeDiff(diff)
  206. timeStr += ", " + diffStr
  207. }
  208. return strings.TrimPrefix(timeStr, ", ")
  209. }
  210. // timeSince calculates the time interval and generate user-friendly string.
  211. func timeSince(then time.Time) string {
  212. now := time.Now()
  213. lbl := "ago"
  214. diff := now.Unix() - then.Unix()
  215. if then.After(now) {
  216. lbl = "from now"
  217. diff = then.Unix() - now.Unix()
  218. }
  219. switch {
  220. case diff <= 0:
  221. return "now"
  222. case diff <= 2:
  223. return fmt.Sprintf("1 second %s", lbl)
  224. case diff < 1*Minute:
  225. return fmt.Sprintf("%d seconds %s", diff, lbl)
  226. case diff < 2*Minute:
  227. return fmt.Sprintf("1 minute %s", lbl)
  228. case diff < 1*Hour:
  229. return fmt.Sprintf("%d minutes %s", diff/Minute, lbl)
  230. case diff < 2*Hour:
  231. return fmt.Sprintf("1 hour %s", lbl)
  232. case diff < 1*Day:
  233. return fmt.Sprintf("%d hours %s", diff/Hour, lbl)
  234. case diff < 2*Day:
  235. return fmt.Sprintf("1 day %s", lbl)
  236. case diff < 1*Week:
  237. return fmt.Sprintf("%d days %s", diff/Day, lbl)
  238. case diff < 2*Week:
  239. return fmt.Sprintf("1 week %s", lbl)
  240. case diff < 1*Month:
  241. return fmt.Sprintf("%d weeks %s", diff/Week, lbl)
  242. case diff < 2*Month:
  243. return fmt.Sprintf("1 month %s", lbl)
  244. case diff < 1*Year:
  245. return fmt.Sprintf("%d months %s", diff/Month, lbl)
  246. case diff < 2*Year:
  247. return fmt.Sprintf("1 year %s", lbl)
  248. default:
  249. return fmt.Sprintf("%d years %s", diff/Year, lbl)
  250. }
  251. }
  252. // TimeSince calculates the time interval and generate user-friendly string.
  253. func TimeSince(t time.Time) template.HTML {
  254. return template.HTML(fmt.Sprintf(`<span class="time-since" title="%s">%s</span>`, t.Format(setting.TimeFormat), timeSince(t)))
  255. }
  256. const (
  257. Byte = 1
  258. KByte = Byte * 1024
  259. MByte = KByte * 1024
  260. GByte = MByte * 1024
  261. TByte = GByte * 1024
  262. PByte = TByte * 1024
  263. EByte = PByte * 1024
  264. )
  265. var bytesSizeTable = map[string]uint64{
  266. "b": Byte,
  267. "kb": KByte,
  268. "mb": MByte,
  269. "gb": GByte,
  270. "tb": TByte,
  271. "pb": PByte,
  272. "eb": EByte,
  273. }
  274. func logn(n, b float64) float64 {
  275. return math.Log(n) / math.Log(b)
  276. }
  277. func humanateBytes(s uint64, base float64, sizes []string) string {
  278. if s < 10 {
  279. return fmt.Sprintf("%dB", s)
  280. }
  281. e := math.Floor(logn(float64(s), base))
  282. suffix := sizes[int(e)]
  283. val := float64(s) / math.Pow(base, math.Floor(e))
  284. f := "%.0f"
  285. if val < 10 {
  286. f = "%.1f"
  287. }
  288. return fmt.Sprintf(f+"%s", val, suffix)
  289. }
  290. // FileSize calculates the file size and generate user-friendly string.
  291. func FileSize(s int64) string {
  292. sizes := []string{"B", "KB", "MB", "GB", "TB", "PB", "EB"}
  293. return humanateBytes(uint64(s), 1024, sizes)
  294. }
  295. // Subtract deals with subtraction of all types of number.
  296. func Subtract(left interface{}, right interface{}) interface{} {
  297. var rleft, rright int64
  298. var fleft, fright float64
  299. var isInt bool = true
  300. switch left.(type) {
  301. case int:
  302. rleft = int64(left.(int))
  303. case int8:
  304. rleft = int64(left.(int8))
  305. case int16:
  306. rleft = int64(left.(int16))
  307. case int32:
  308. rleft = int64(left.(int32))
  309. case int64:
  310. rleft = left.(int64)
  311. case float32:
  312. fleft = float64(left.(float32))
  313. isInt = false
  314. case float64:
  315. fleft = left.(float64)
  316. isInt = false
  317. }
  318. switch right.(type) {
  319. case int:
  320. rright = int64(right.(int))
  321. case int8:
  322. rright = int64(right.(int8))
  323. case int16:
  324. rright = int64(right.(int16))
  325. case int32:
  326. rright = int64(right.(int32))
  327. case int64:
  328. rright = right.(int64)
  329. case float32:
  330. fright = float64(left.(float32))
  331. isInt = false
  332. case float64:
  333. fleft = left.(float64)
  334. isInt = false
  335. }
  336. if isInt {
  337. return rleft - rright
  338. } else {
  339. return fleft + float64(rleft) - (fright + float64(rright))
  340. }
  341. }
  342. // DateFormat pattern rules.
  343. var datePatterns = []string{
  344. // year
  345. "Y", "2006", // A full numeric representation of a year, 4 digits Examples: 1999 or 2003
  346. "y", "06", //A two digit representation of a year Examples: 99 or 03
  347. // month
  348. "m", "01", // Numeric representation of a month, with leading zeros 01 through 12
  349. "n", "1", // Numeric representation of a month, without leading zeros 1 through 12
  350. "M", "Jan", // A short textual representation of a month, three letters Jan through Dec
  351. "F", "January", // A full textual representation of a month, such as January or March January through December
  352. // day
  353. "d", "02", // Day of the month, 2 digits with leading zeros 01 to 31
  354. "j", "2", // Day of the month without leading zeros 1 to 31
  355. // week
  356. "D", "Mon", // A textual representation of a day, three letters Mon through Sun
  357. "l", "Monday", // A full textual representation of the day of the week Sunday through Saturday
  358. // time
  359. "g", "3", // 12-hour format of an hour without leading zeros 1 through 12
  360. "G", "15", // 24-hour format of an hour without leading zeros 0 through 23
  361. "h", "03", // 12-hour format of an hour with leading zeros 01 through 12
  362. "H", "15", // 24-hour format of an hour with leading zeros 00 through 23
  363. "a", "pm", // Lowercase Ante meridiem and Post meridiem am or pm
  364. "A", "PM", // Uppercase Ante meridiem and Post meridiem AM or PM
  365. "i", "04", // Minutes with leading zeros 00 to 59
  366. "s", "05", // Seconds, with leading zeros 00 through 59
  367. // time zone
  368. "T", "MST",
  369. "P", "-07:00",
  370. "O", "-0700",
  371. // RFC 2822
  372. "r", time.RFC1123Z,
  373. }
  374. // Parse Date use PHP time format.
  375. func DateParse(dateString, format string) (time.Time, error) {
  376. replacer := strings.NewReplacer(datePatterns...)
  377. format = replacer.Replace(format)
  378. return time.ParseInLocation(format, dateString, time.Local)
  379. }
  380. // Date takes a PHP like date func to Go's time format.
  381. func DateFormat(t time.Time, format string) string {
  382. replacer := strings.NewReplacer(datePatterns...)
  383. format = replacer.Replace(format)
  384. return t.Format(format)
  385. }
  386. // convert string to specify type
  387. type StrTo string
  388. func (f StrTo) Exist() bool {
  389. return string(f) != string(0x1E)
  390. }
  391. func (f StrTo) Int() (int, error) {
  392. v, err := strconv.ParseInt(f.String(), 10, 32)
  393. return int(v), err
  394. }
  395. func (f StrTo) Int64() (int64, error) {
  396. v, err := strconv.ParseInt(f.String(), 10, 64)
  397. return int64(v), err
  398. }
  399. func (f StrTo) MustInt() int {
  400. v, _ := f.Int()
  401. return v
  402. }
  403. func (f StrTo) MustInt64() int64 {
  404. v, _ := f.Int64()
  405. return v
  406. }
  407. func (f StrTo) String() string {
  408. if f.Exist() {
  409. return string(f)
  410. }
  411. return ""
  412. }
  413. // convert any type to string
  414. func ToStr(value interface{}, args ...int) (s string) {
  415. switch v := value.(type) {
  416. case bool:
  417. s = strconv.FormatBool(v)
  418. case float32:
  419. s = strconv.FormatFloat(float64(v), 'f', argInt(args).Get(0, -1), argInt(args).Get(1, 32))
  420. case float64:
  421. s = strconv.FormatFloat(v, 'f', argInt(args).Get(0, -1), argInt(args).Get(1, 64))
  422. case int:
  423. s = strconv.FormatInt(int64(v), argInt(args).Get(0, 10))
  424. case int8:
  425. s = strconv.FormatInt(int64(v), argInt(args).Get(0, 10))
  426. case int16:
  427. s = strconv.FormatInt(int64(v), argInt(args).Get(0, 10))
  428. case int32:
  429. s = strconv.FormatInt(int64(v), argInt(args).Get(0, 10))
  430. case int64:
  431. s = strconv.FormatInt(v, argInt(args).Get(0, 10))
  432. case uint:
  433. s = strconv.FormatUint(uint64(v), argInt(args).Get(0, 10))
  434. case uint8:
  435. s = strconv.FormatUint(uint64(v), argInt(args).Get(0, 10))
  436. case uint16:
  437. s = strconv.FormatUint(uint64(v), argInt(args).Get(0, 10))
  438. case uint32:
  439. s = strconv.FormatUint(uint64(v), argInt(args).Get(0, 10))
  440. case uint64:
  441. s = strconv.FormatUint(v, argInt(args).Get(0, 10))
  442. case string:
  443. s = v
  444. case []byte:
  445. s = string(v)
  446. default:
  447. s = fmt.Sprintf("%v", v)
  448. }
  449. return s
  450. }
  451. type argInt []int
  452. func (a argInt) Get(i int, args ...int) (r int) {
  453. if i >= 0 && i < len(a) {
  454. r = a[i]
  455. } else if len(args) > 0 {
  456. r = args[0]
  457. }
  458. return
  459. }