common.go 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041
  1. package utils
  2. import (
  3. "crypto/hmac"
  4. "crypto/md5"
  5. "crypto/sha1"
  6. "crypto/sha256"
  7. "encoding/base64"
  8. "encoding/hex"
  9. "encoding/json"
  10. "errors"
  11. "fmt"
  12. "gorm.io/gorm"
  13. "image"
  14. "image/png"
  15. "math"
  16. "math/rand"
  17. "net"
  18. "os"
  19. "os/exec"
  20. "regexp"
  21. "strconv"
  22. "strings"
  23. "time"
  24. )
  25. // 随机数种子
  26. var rnd = rand.New(rand.NewSource(time.Now().UnixNano()))
  27. func GetRandString(size int) string {
  28. allLetterDigit := []string{"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "!", "@", "#", "$", "%", "^", "&", "*"}
  29. randomSb := ""
  30. digitSize := len(allLetterDigit)
  31. for i := 0; i < size; i++ {
  32. randomSb += allLetterDigit[rnd.Intn(digitSize)]
  33. }
  34. return randomSb
  35. }
  36. func GetRandStringNoSpecialChar(size int) string {
  37. allLetterDigit := []string{"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"}
  38. randomSb := ""
  39. digitSize := len(allLetterDigit)
  40. for i := 0; i < size; i++ {
  41. randomSb += allLetterDigit[rnd.Intn(digitSize)]
  42. }
  43. return randomSb
  44. }
  45. func StringsToJSON(str string) string {
  46. rs := []rune(str)
  47. jsons := ""
  48. for _, r := range rs {
  49. rint := int(r)
  50. if rint < 128 {
  51. jsons += string(r)
  52. } else {
  53. jsons += "\\u" + strconv.FormatInt(int64(rint), 16) // json
  54. }
  55. }
  56. return jsons
  57. }
  58. // 序列化
  59. func ToString(v interface{}) string {
  60. data, _ := json.Marshal(v)
  61. return string(data)
  62. }
  63. // md5加密
  64. func MD5(data string) string {
  65. m := md5.Sum([]byte(data))
  66. return hex.EncodeToString(m[:])
  67. }
  68. // HmacMd5 HmacMd5加密
  69. func HmacMd5(key, data string) string {
  70. h := hmac.New(md5.New, []byte(key))
  71. h.Write([]byte(data))
  72. return hex.EncodeToString(h.Sum([]byte("")))
  73. }
  74. // 获取数字随机字符
  75. func GetRandDigit(n int) string {
  76. return fmt.Sprintf("%0"+strconv.Itoa(n)+"d", rnd.Intn(int(math.Pow10(n))))
  77. }
  78. // 获取随机数
  79. func GetRandNumber(n int) int {
  80. return rnd.Intn(n)
  81. }
  82. func GetRandInt(min, max int) int {
  83. if min >= max || min == 0 || max == 0 {
  84. return max
  85. }
  86. return rand.Intn(max-min) + min
  87. }
  88. func GetToday(format string) string {
  89. today := time.Now().Format(format)
  90. return today
  91. }
  92. // 获取今天剩余秒数
  93. func GetTodayLastSecond() time.Duration {
  94. today := GetToday(FormatDate) + " 23:59:59"
  95. end, _ := time.ParseInLocation(FormatDateTime, today, time.Local)
  96. return time.Duration(end.Unix()-time.Now().Local().Unix()) * time.Second
  97. }
  98. // 处理出生日期函数
  99. func GetBrithDate(idcard string) string {
  100. l := len(idcard)
  101. var s string
  102. if l == 15 {
  103. s = "19" + idcard[6:8] + "-" + idcard[8:10] + "-" + idcard[10:12]
  104. return s
  105. }
  106. if l == 18 {
  107. s = idcard[6:10] + "-" + idcard[10:12] + "-" + idcard[12:14]
  108. return s
  109. }
  110. return GetToday(FormatDate)
  111. }
  112. // 处理性别
  113. func WhichSexByIdcard(idcard string) string {
  114. var sexs = [2]string{"女", "男"}
  115. length := len(idcard)
  116. if length == 18 {
  117. sex, _ := strconv.Atoi(string(idcard[16]))
  118. return sexs[sex%2]
  119. } else if length == 15 {
  120. sex, _ := strconv.Atoi(string(idcard[14]))
  121. return sexs[sex%2]
  122. }
  123. return "男"
  124. }
  125. // 截取小数点后几位
  126. func SubFloatToString(f float64, m int) string {
  127. n := strconv.FormatFloat(f, 'f', -1, 64)
  128. if n == "" {
  129. return ""
  130. }
  131. if m >= len(n) {
  132. return n
  133. }
  134. newn := strings.Split(n, ".")
  135. if m == 0 {
  136. return newn[0]
  137. }
  138. if len(newn) < 2 || m >= len(newn[1]) {
  139. return n
  140. }
  141. return newn[0] + "." + newn[1][:m]
  142. }
  143. // 截取小数点后几位
  144. func SubFloatToFloat(f float64, m int) float64 {
  145. newn := SubFloatToString(f, m)
  146. newf, _ := strconv.ParseFloat(newn, 64)
  147. return newf
  148. }
  149. // 获取相差时间-年
  150. func GetYearDiffer(start_time, end_time string) int {
  151. t1, _ := time.ParseInLocation("2006-01-02", start_time, time.Local)
  152. t2, _ := time.ParseInLocation("2006-01-02", end_time, time.Local)
  153. age := t2.Year() - t1.Year()
  154. if t2.Month() < t1.Month() || (t2.Month() == t1.Month() && t2.Day() < t1.Day()) {
  155. age--
  156. }
  157. return age
  158. }
  159. // 获取相差时间-秒
  160. func GetSecondDifferByTime(start_time, end_time time.Time) int64 {
  161. diff := end_time.Unix() - start_time.Unix()
  162. return diff
  163. }
  164. func FixFloat(f float64, m int) float64 {
  165. newn := SubFloatToString(f+0.00000001, m)
  166. newf, _ := strconv.ParseFloat(newn, 64)
  167. return newf
  168. }
  169. // 将字符串数组转化为逗号分割的字符串形式 ["str1","str2","str3"] >>> "str1,str2,str3"
  170. func StrListToString(strList []string) (str string) {
  171. if len(strList) > 0 {
  172. for k, v := range strList {
  173. if k == 0 {
  174. str = v
  175. } else {
  176. str = str + "," + v
  177. }
  178. }
  179. return
  180. }
  181. return ""
  182. }
  183. // 数据没有记录
  184. func ErrNoRow() string {
  185. return "<QuerySeter> no row found"
  186. }
  187. // 校验邮箱格式
  188. func ValidateEmailFormatat(email string) bool {
  189. reg := regexp.MustCompile(RegularEmail)
  190. return reg.MatchString(email)
  191. }
  192. // 验证是否是手机号
  193. func ValidateMobileFormatat(mobileNum string) bool {
  194. reg := regexp.MustCompile(RegularMobile)
  195. return reg.MatchString(mobileNum)
  196. }
  197. // 判断文件是否存在
  198. func FileIsExist(filePath string) bool {
  199. _, err := os.Stat(filePath)
  200. return err == nil || os.IsExist(err)
  201. }
  202. // 获取图片扩展名
  203. func GetImgExt(file string) (ext string, err error) {
  204. var headerByte []byte
  205. headerByte = make([]byte, 8)
  206. fd, err := os.Open(file)
  207. if err != nil {
  208. return "", err
  209. }
  210. defer fd.Close()
  211. _, err = fd.Read(headerByte)
  212. if err != nil {
  213. return "", err
  214. }
  215. xStr := fmt.Sprintf("%x", headerByte)
  216. switch {
  217. case xStr == "89504e470d0a1a0a":
  218. ext = ".png"
  219. case xStr == "0000010001002020":
  220. ext = ".ico"
  221. case xStr == "0000020001002020":
  222. ext = ".cur"
  223. case xStr[:12] == "474946383961" || xStr[:12] == "474946383761":
  224. ext = ".gif"
  225. case xStr[:10] == "0000020000" || xStr[:10] == "0000100000":
  226. ext = ".tga"
  227. case xStr[:8] == "464f524d":
  228. ext = ".iff"
  229. case xStr[:8] == "52494646":
  230. ext = ".ani"
  231. case xStr[:4] == "4d4d" || xStr[:4] == "4949":
  232. ext = ".tiff"
  233. case xStr[:4] == "424d":
  234. ext = ".bmp"
  235. case xStr[:4] == "ffd8":
  236. ext = ".jpg"
  237. case xStr[:2] == "0a":
  238. ext = ".pcx"
  239. default:
  240. ext = ""
  241. }
  242. return ext, nil
  243. }
  244. // 保存图片
  245. func SaveImage(path string, img image.Image) (err error) {
  246. //需要保持的文件
  247. imgfile, err := os.Create(path)
  248. defer imgfile.Close()
  249. // 以PNG格式保存文件
  250. err = png.Encode(imgfile, img)
  251. return err
  252. }
  253. // 保存base64数据为文件
  254. func SaveBase64ToFile(content, path string) error {
  255. data, err := base64.StdEncoding.DecodeString(content)
  256. if err != nil {
  257. return err
  258. }
  259. f, err := os.Create(path)
  260. defer f.Close()
  261. if err != nil {
  262. return err
  263. }
  264. f.Write(data)
  265. return nil
  266. }
  267. func SaveBase64ToFileBySeek(content, path string) (err error) {
  268. data, err := base64.StdEncoding.DecodeString(content)
  269. exist, err := PathExists(path)
  270. if err != nil {
  271. return
  272. }
  273. if !exist {
  274. f, err := os.Create(path)
  275. if err != nil {
  276. return err
  277. }
  278. n, _ := f.Seek(0, 2)
  279. // 从末尾的偏移量开始写入内容
  280. _, err = f.WriteAt([]byte(data), n)
  281. defer f.Close()
  282. } else {
  283. f, err := os.OpenFile(path, os.O_WRONLY, 0644)
  284. if err != nil {
  285. return err
  286. }
  287. n, _ := f.Seek(0, 2)
  288. // 从末尾的偏移量开始写入内容
  289. _, err = f.WriteAt([]byte(data), n)
  290. defer f.Close()
  291. }
  292. return nil
  293. }
  294. func PathExists(path string) (bool, error) {
  295. _, err := os.Stat(path)
  296. if err == nil {
  297. return true, nil
  298. }
  299. if os.IsNotExist(err) {
  300. return false, nil
  301. }
  302. return false, err
  303. }
  304. func StartIndex(page, pagesize int) int {
  305. if page > 1 {
  306. return (page - 1) * pagesize
  307. }
  308. return 0
  309. }
  310. func PageCount(count, pagesize int) int {
  311. if count%pagesize > 0 {
  312. return count/pagesize + 1
  313. } else {
  314. return count / pagesize
  315. }
  316. }
  317. func TrimHtml(src string) string {
  318. //将HTML标签全转换成小写
  319. re, _ := regexp.Compile("\\<[\\S\\s]+?\\>")
  320. src = re.ReplaceAllStringFunc(src, strings.ToLower)
  321. re, _ = regexp.Compile("\\<img[\\S\\s]+?\\>")
  322. src = re.ReplaceAllString(src, "[图片]")
  323. re, _ = regexp.Compile("class[\\S\\s]+?>")
  324. src = re.ReplaceAllString(src, "")
  325. re, _ = regexp.Compile("\\<[\\S\\s]+?\\>")
  326. src = re.ReplaceAllString(src, "")
  327. return strings.TrimSpace(src)
  328. }
  329. //1556164246 -> 2019-04-25 03:50:46 +0000
  330. //timestamp
  331. func TimeToTimestamp() {
  332. fmt.Println(time.Unix(1556164246, 0).Format("2006-01-02 15:04:05"))
  333. }
  334. func ToUnicode(text string) string {
  335. textQuoted := strconv.QuoteToASCII(text)
  336. textUnquoted := textQuoted[1 : len(textQuoted)-1]
  337. return textUnquoted
  338. }
  339. func VersionToInt(version string) int {
  340. version = strings.Replace(version, ".", "", -1)
  341. n, _ := strconv.Atoi(version)
  342. return n
  343. }
  344. func IsCheckInList(list []int, s int) bool {
  345. for _, v := range list {
  346. if v == s {
  347. return true
  348. }
  349. }
  350. return false
  351. }
  352. func round(num float64) int {
  353. return int(num + math.Copysign(0.5, num))
  354. }
  355. func toFixed(num float64, precision int) float64 {
  356. output := math.Pow(10, float64(precision))
  357. return float64(round(num*output)) / output
  358. }
  359. // GetWilsonScore returns Wilson Score
  360. func GetWilsonScore(p, n float64) float64 {
  361. if p == 0 && n == 0 {
  362. return 0
  363. }
  364. return toFixed(((p+1.9208)/(p+n)-1.96*math.Sqrt(p*n/(p+n)+0.9604)/(p+n))/(1+3.8416/(p+n)), 2)
  365. }
  366. // 将中文数字转化成数字,比如 第三百四十五章,返回第345章 不支持一亿及以上
  367. func ChangeWordsToNum(str string) (numStr string) {
  368. words := ([]rune)(str)
  369. num := 0
  370. n := 0
  371. for i := 0; i < len(words); i++ {
  372. word := string(words[i : i+1])
  373. switch word {
  374. case "万":
  375. if n == 0 {
  376. n = 1
  377. }
  378. n = n * 10000
  379. num = num*10000 + n
  380. n = 0
  381. case "千":
  382. if n == 0 {
  383. n = 1
  384. }
  385. n = n * 1000
  386. num += n
  387. n = 0
  388. case "百":
  389. if n == 0 {
  390. n = 1
  391. }
  392. n = n * 100
  393. num += n
  394. n = 0
  395. case "十":
  396. if n == 0 {
  397. n = 1
  398. }
  399. n = n * 10
  400. num += n
  401. n = 0
  402. case "一":
  403. n += 1
  404. case "二":
  405. n += 2
  406. case "三":
  407. n += 3
  408. case "四":
  409. n += 4
  410. case "五":
  411. n += 5
  412. case "六":
  413. n += 6
  414. case "七":
  415. n += 7
  416. case "八":
  417. n += 8
  418. case "九":
  419. n += 9
  420. case "零":
  421. default:
  422. if n > 0 {
  423. num += n
  424. n = 0
  425. }
  426. if num == 0 {
  427. numStr += word
  428. } else {
  429. numStr += strconv.Itoa(num) + word
  430. num = 0
  431. }
  432. }
  433. }
  434. if n > 0 {
  435. num += n
  436. n = 0
  437. }
  438. if num != 0 {
  439. numStr += strconv.Itoa(num)
  440. }
  441. return
  442. }
  443. func Sha1(data string) string {
  444. sha1 := sha1.New()
  445. sha1.Write([]byte(data))
  446. return hex.EncodeToString(sha1.Sum([]byte("")))
  447. }
  448. func GetWeekDay() (weekStr string) {
  449. nowWeek := time.Now().Weekday().String()
  450. switch nowWeek {
  451. case "Monday":
  452. weekStr = "周一"
  453. break
  454. case "Tuesday":
  455. weekStr = "周二"
  456. break
  457. case "Wednesday":
  458. weekStr = "周三"
  459. break
  460. case "Thursday":
  461. weekStr = "周四"
  462. break
  463. case "Friday":
  464. weekStr = "周五"
  465. break
  466. case "Saturday":
  467. weekStr = "周六"
  468. break
  469. case "Sunday":
  470. weekStr = "周日"
  471. break
  472. default:
  473. weekStr = ""
  474. break
  475. }
  476. return
  477. }
  478. // GetNowWeekMonday 获取本周周一的时间
  479. func GetNowWeekMonday() time.Time {
  480. offset := int(time.Monday - time.Now().Weekday())
  481. if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
  482. offset = -6
  483. }
  484. mondayTime := time.Now().AddDate(0, 0, offset)
  485. mondayTime = time.Date(mondayTime.Year(), mondayTime.Month(), mondayTime.Day(), 0, 0, 0, 0, mondayTime.Location())
  486. return mondayTime
  487. }
  488. // GetLastWeekMonday 获取上周周一的时间
  489. func GetLastWeekMonday() time.Time {
  490. offset := int(time.Monday - time.Now().Weekday())
  491. if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
  492. offset = -6
  493. }
  494. mondayTime := time.Now().AddDate(0, 0, offset-7)
  495. mondayTime = time.Date(mondayTime.Year(), mondayTime.Month(), mondayTime.Day(), 0, 0, 0, 0, mondayTime.Location())
  496. return mondayTime
  497. }
  498. // GetNowWeekTuesday 获取本周周二的时间
  499. func GetNowWeekTuesday() time.Time {
  500. offset := int(time.Tuesday - time.Now().Weekday())
  501. if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
  502. offset = -6
  503. }
  504. mondayTime := time.Now().AddDate(0, 0, offset)
  505. mondayTime = time.Date(mondayTime.Year(), mondayTime.Month(), mondayTime.Day(), 0, 0, 0, 0, mondayTime.Location())
  506. return mondayTime
  507. }
  508. // GetLastWeekTuesday 获取上周周二的时间
  509. func GetLastWeekTuesday() time.Time {
  510. offset := int(time.Tuesday - time.Now().Weekday())
  511. if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
  512. offset = -6
  513. }
  514. mondayTime := time.Now().AddDate(0, 0, offset-7)
  515. mondayTime = time.Date(mondayTime.Year(), mondayTime.Month(), mondayTime.Day(), 0, 0, 0, 0, mondayTime.Location())
  516. return mondayTime
  517. }
  518. // GetNowWeekFriday 获取本周周四的时间
  519. func GetNowWeekThursday() time.Time {
  520. offset := int(time.Thursday - time.Now().Weekday())
  521. if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
  522. offset = -6
  523. }
  524. fridayTime := time.Now().AddDate(0, 0, offset)
  525. fridayTime = time.Date(fridayTime.Year(), fridayTime.Month(), fridayTime.Day(), 0, 0, 0, 0, fridayTime.Location())
  526. return fridayTime
  527. }
  528. // GetLastWeekFriday 获取上周周四的时间
  529. func GetLastWeekThursday() time.Time {
  530. offset := int(time.Thursday - time.Now().Weekday())
  531. if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
  532. offset = -6
  533. }
  534. fridayTime := time.Now().AddDate(0, 0, offset-7)
  535. fridayTime = time.Date(fridayTime.Year(), fridayTime.Month(), fridayTime.Day(), 0, 0, 0, 0, fridayTime.Location())
  536. return fridayTime
  537. }
  538. // GetNowWeekFriday 获取本周周五的时间
  539. func GetNowWeekFriday() time.Time {
  540. offset := int(time.Friday - time.Now().Weekday())
  541. if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
  542. offset = -6
  543. }
  544. fridayTime := time.Now().AddDate(0, 0, offset)
  545. fridayTime = time.Date(fridayTime.Year(), fridayTime.Month(), fridayTime.Day(), 0, 0, 0, 0, fridayTime.Location())
  546. return fridayTime
  547. }
  548. // GetLastWeekFriday 获取上周周五的时间
  549. func GetLastWeekFriday() time.Time {
  550. offset := int(time.Friday - time.Now().Weekday())
  551. if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
  552. offset = -6
  553. }
  554. fridayTime := time.Now().AddDate(0, 0, offset-7)
  555. fridayTime = time.Date(fridayTime.Year(), fridayTime.Month(), fridayTime.Day(), 0, 0, 0, 0, fridayTime.Location())
  556. return fridayTime
  557. }
  558. // GetNowWeekLastDay 获取本周最后一天的时间
  559. func GetNowWeekLastDay() time.Time {
  560. offset := int(time.Monday - time.Now().Weekday())
  561. if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
  562. offset = -6
  563. }
  564. firstDayTime := time.Now().AddDate(0, 0, offset)
  565. firstDayTime = time.Date(firstDayTime.Year(), firstDayTime.Month(), firstDayTime.Day(), 0, 0, 0, 0, firstDayTime.Location()).AddDate(0, 0, 6)
  566. lastDayTime := time.Date(firstDayTime.Year(), firstDayTime.Month(), firstDayTime.Day(), 23, 59, 59, 0, firstDayTime.Location())
  567. return lastDayTime
  568. }
  569. // GetNowMonthFirstDay 获取本月第一天的时间
  570. func GetNowMonthFirstDay() time.Time {
  571. nowMonthFirstDay := time.Date(time.Now().Year(), time.Now().Month(), 1, 0, 0, 0, 0, time.Now().Location())
  572. return nowMonthFirstDay
  573. }
  574. // GetNowMonthLastDay 获取本月最后一天的时间
  575. func GetNowMonthLastDay() time.Time {
  576. nowMonthLastDay := time.Date(time.Now().Year(), time.Now().Month(), 1, 0, 0, 0, 0, time.Now().Location()).AddDate(0, 1, -1)
  577. nowMonthLastDay = time.Date(nowMonthLastDay.Year(), nowMonthLastDay.Month(), nowMonthLastDay.Day(), 23, 59, 59, 0, nowMonthLastDay.Location())
  578. return nowMonthLastDay
  579. }
  580. // GetNowQuarterFirstDay 获取本季度第一天的时间
  581. func GetNowQuarterFirstDay() time.Time {
  582. month := int(time.Now().Month())
  583. var nowQuarterFirstDay time.Time
  584. if month >= 1 && month <= 3 {
  585. //1月1号
  586. nowQuarterFirstDay = time.Date(time.Now().Year(), 1, 1, 0, 0, 0, 0, time.Now().Location())
  587. } else if month >= 4 && month <= 6 {
  588. //4月1号
  589. nowQuarterFirstDay = time.Date(time.Now().Year(), 4, 1, 0, 0, 0, 0, time.Now().Location())
  590. } else if month >= 7 && month <= 9 {
  591. nowQuarterFirstDay = time.Date(time.Now().Year(), 7, 1, 0, 0, 0, 0, time.Now().Location())
  592. } else {
  593. nowQuarterFirstDay = time.Date(time.Now().Year(), 10, 1, 0, 0, 0, 0, time.Now().Location())
  594. }
  595. return nowQuarterFirstDay
  596. }
  597. // GetNowQuarterLastDay 获取本季度最后一天的时间
  598. func GetNowQuarterLastDay() time.Time {
  599. month := int(time.Now().Month())
  600. var nowQuarterLastDay time.Time
  601. if month >= 1 && month <= 3 {
  602. //03-31 23:59:59
  603. nowQuarterLastDay = time.Date(time.Now().Year(), 3, 31, 23, 59, 59, 0, time.Now().Location())
  604. } else if month >= 4 && month <= 6 {
  605. //06-30 23:59:59
  606. nowQuarterLastDay = time.Date(time.Now().Year(), 6, 30, 23, 59, 59, 0, time.Now().Location())
  607. } else if month >= 7 && month <= 9 {
  608. //09-30 23:59:59
  609. nowQuarterLastDay = time.Date(time.Now().Year(), 9, 30, 23, 59, 59, 0, time.Now().Location())
  610. } else {
  611. //12-31 23:59:59
  612. nowQuarterLastDay = time.Date(time.Now().Year(), 12, 31, 23, 59, 59, 0, time.Now().Location())
  613. }
  614. return nowQuarterLastDay
  615. }
  616. // GetNowHalfYearFirstDay 获取当前半年的第一天的时间
  617. func GetNowHalfYearFirstDay() time.Time {
  618. month := int(time.Now().Month())
  619. var nowHalfYearLastDay time.Time
  620. if month >= 1 && month <= 6 {
  621. //03-31 23:59:59
  622. nowHalfYearLastDay = time.Date(time.Now().Year(), 1, 1, 0, 0, 0, 0, time.Now().Location())
  623. } else {
  624. //12-31 23:59:59
  625. nowHalfYearLastDay = time.Date(time.Now().Year(), 7, 1, 0, 0, 0, 0, time.Now().Location())
  626. }
  627. return nowHalfYearLastDay
  628. }
  629. // GetNowHalfYearLastDay 获取当前半年的最后一天的时间
  630. func GetNowHalfYearLastDay() time.Time {
  631. month := int(time.Now().Month())
  632. var nowHalfYearLastDay time.Time
  633. if month >= 1 && month <= 6 {
  634. //03-31 23:59:59
  635. nowHalfYearLastDay = time.Date(time.Now().Year(), 6, 30, 23, 59, 59, 0, time.Now().Location())
  636. } else {
  637. //12-31 23:59:59
  638. nowHalfYearLastDay = time.Date(time.Now().Year(), 12, 31, 23, 59, 59, 0, time.Now().Location())
  639. }
  640. return nowHalfYearLastDay
  641. }
  642. // GetNowYearFirstDay 获取当前年的最后一天的时间
  643. func GetNowYearFirstDay() time.Time {
  644. //12-31 23:59:59
  645. nowYearFirstDay := time.Date(time.Now().Year(), 1, 1, 0, 0, 0, 0, time.Now().Location())
  646. return nowYearFirstDay
  647. }
  648. // GetNowYearLastDay 获取当前年的最后一天的时间
  649. func GetNowYearLastDay() time.Time {
  650. //12-31 23:59:59
  651. nowYearLastDay := time.Date(time.Now().Year(), 12, 31, 23, 59, 59, 0, time.Now().Location())
  652. return nowYearLastDay
  653. }
  654. // CalculationDate 计算两个日期之间相差n年m月y天
  655. func CalculationDate(startDate, endDate time.Time) (beetweenDay string, err error) {
  656. //startDate := time.Date(2021, 3, 28, 0, 0, 0, 0, time.Now().Location())
  657. //endDate := time.Date(2022, 3, 31, 0, 0, 0, 0, time.Now().Location())
  658. numYear := endDate.Year() - startDate.Year()
  659. numMonth := int(endDate.Month()) - int(startDate.Month())
  660. numDay := 0
  661. //获取截止月的总天数
  662. endDateDays := getMonthDay(endDate.Year(), int(endDate.Month()))
  663. //获取截止月的前一个月
  664. endDatePrevMonthDate := endDate.AddDate(0, -1, 0)
  665. //获取截止日期的上一个月的总天数
  666. endDatePrevMonthDays := getMonthDay(endDatePrevMonthDate.Year(), int(endDatePrevMonthDate.Month()))
  667. //获取开始日期的的月份总天数
  668. startDateMonthDays := getMonthDay(startDate.Year(), int(startDate.Month()))
  669. //判断,截止月是否完全被选中,如果相等,那么代表截止月份全部天数被选择
  670. if endDate.Day() == endDateDays {
  671. numDay = startDateMonthDays - startDate.Day() + 1
  672. //如果剩余天数正好与开始日期的天数是一致的,那么月份加1
  673. if numDay == startDateMonthDays {
  674. numMonth++
  675. numDay = 0
  676. //超过月份了,那么年份加1
  677. if numMonth == 12 {
  678. numYear++
  679. numMonth = 0
  680. }
  681. }
  682. } else {
  683. numDay = endDate.Day() - startDate.Day() + 1
  684. }
  685. //天数小于0,那么向月份借一位
  686. if numDay < 0 {
  687. //向上一个月借一个月的天数
  688. numDay += endDatePrevMonthDays
  689. //总月份减去一个月
  690. numMonth = numMonth - 1
  691. }
  692. //月份小于0,那么向年份借一位
  693. if numMonth < 0 {
  694. //向上一个年借12个月
  695. numMonth += 12
  696. //总年份减去一年
  697. numYear = numYear - 1
  698. }
  699. if numYear < 0 {
  700. err = errors.New("日期异常")
  701. return
  702. }
  703. if numYear > 0 {
  704. beetweenDay += fmt.Sprint(numYear, "年")
  705. }
  706. if numMonth > 0 {
  707. beetweenDay += fmt.Sprint(numMonth, "个月")
  708. }
  709. if numDay > 0 {
  710. beetweenDay += fmt.Sprint(numDay, "天")
  711. }
  712. return
  713. }
  714. // getMonthDay 获取某年某月有多少天
  715. func getMonthDay(year, month int) (days int) {
  716. if month != 2 {
  717. if month == 4 || month == 6 || month == 9 || month == 11 {
  718. days = 30
  719. } else {
  720. days = 31
  721. }
  722. } else {
  723. if ((year%4) == 0 && (year%100) != 0) || (year%400) == 0 {
  724. days = 29
  725. } else {
  726. days = 28
  727. }
  728. }
  729. return
  730. }
  731. // SubStr 截取字符串(中文)
  732. func SubStr(str string, subLen int) string {
  733. strRune := []rune(str)
  734. bodyRuneLen := len(strRune)
  735. if bodyRuneLen > subLen {
  736. bodyRuneLen = subLen
  737. }
  738. str = string(strRune[:bodyRuneLen])
  739. return str
  740. }
  741. // InArrayByInt php中的in_array(判断Int类型的切片中是否存在该int值)
  742. func InArrayByInt(idIntList []int, searchId int) (has bool) {
  743. for _, id := range idIntList {
  744. if id == searchId {
  745. has = true
  746. return
  747. }
  748. }
  749. return
  750. }
  751. // InArrayByStr php中的in_array(判断String类型的切片中是否存在该string值)
  752. func InArrayByStr(idStrList []string, searchId string) (has bool) {
  753. for _, id := range idStrList {
  754. if id == searchId {
  755. has = true
  756. return
  757. }
  758. }
  759. return
  760. }
  761. func GetLocalIP() (ip string, err error) {
  762. addrs, err := net.InterfaceAddrs()
  763. if err != nil {
  764. return
  765. }
  766. for _, addr := range addrs {
  767. ipAddr, ok := addr.(*net.IPNet)
  768. if !ok {
  769. continue
  770. }
  771. if ipAddr.IP.IsLoopback() {
  772. continue
  773. }
  774. if !ipAddr.IP.IsGlobalUnicast() {
  775. continue
  776. }
  777. return ipAddr.IP.String(), nil
  778. }
  779. return
  780. }
  781. // 富文本字段过滤处理
  782. func GetRichText(content string) (contentSub string) {
  783. contentSub = strings.Replace(content, "<p data-f-id=\"pbf\" style=\"text-align: center; font-size: 14px; margin-top: 30px; opacity: 0.65; font-family: sans-serif;\">Powered by <a href=\"https://www.froala.com/wysiwyg-editor?pb=1\" title=\"Froala Editor\">Froala Editor</a></p>", "", -1)
  784. return
  785. }
  786. // GetOrmInReplace 获取orm的in查询替换?的方法
  787. func GetOrmInReplace(num int) string {
  788. //template := make([]string, num)
  789. //for i := 0; i < num; i++ {
  790. // template[i] = "?"
  791. //}
  792. //return strings.Join(template, ",")
  793. return "?"
  794. }
  795. // SubFloatToFloatStr 截取小数点后几位
  796. func SubFloatToFloatStr(f float64, m int) string {
  797. newn := SubFloatToString(f, m)
  798. return newn
  799. }
  800. func GetVideoPlaySeconds(videoPath string) (playSeconds float64, err error) {
  801. cmd := `ffmpeg -i ` + videoPath + ` 2>&1 | grep 'Duration' | cut -d ' ' -f 4 | sed s/,//`
  802. out, err := exec.Command("bash", "-c", cmd).Output()
  803. if err != nil {
  804. return
  805. }
  806. outTimes := string(out)
  807. fmt.Println("outTimes:", outTimes)
  808. if outTimes != "" {
  809. timeArr := strings.Split(outTimes, ":")
  810. h := timeArr[0]
  811. m := timeArr[1]
  812. s := timeArr[2]
  813. hInt, err := strconv.Atoi(h)
  814. if err != nil {
  815. return playSeconds, err
  816. }
  817. mInt, err := strconv.Atoi(m)
  818. if err != nil {
  819. return playSeconds, err
  820. }
  821. s = strings.Trim(s, " ")
  822. s = strings.Trim(s, "\n")
  823. sInt, err := strconv.ParseFloat(s, 64)
  824. if err != nil {
  825. return playSeconds, err
  826. }
  827. playSeconds = float64(hInt)*3600 + float64(mInt)*60 + float64(sInt)
  828. }
  829. return
  830. }
  831. // GetTimeSubDay 计算两个时间的自然日期差(后面减去前面)
  832. func GetTimeSubDay(t1, t2 time.Time) int {
  833. var day int
  834. swap := false
  835. if t1.Unix() > t2.Unix() {
  836. t1, t2 = t2, t1
  837. swap = true
  838. }
  839. t1_ := t1.Add(time.Duration(t2.Sub(t1).Milliseconds()%86400000) * time.Millisecond)
  840. day = int(t2.Sub(t1).Hours() / 24)
  841. // 计算在t1+两个时间的余数之后天数是否有变化
  842. if t1_.Day() != t1.Day() {
  843. day += 1
  844. }
  845. if swap {
  846. day = -day
  847. }
  848. return day
  849. }
  850. // HmacSha256 计算HmacSha256
  851. // key 是加密所使用的key
  852. // data 是加密的内容
  853. func HmacSha256(key string, data string) []byte {
  854. mac := hmac.New(sha256.New, []byte(key))
  855. _, _ = mac.Write([]byte(data))
  856. return mac.Sum(nil)
  857. }
  858. // HmacSha256ToBase64 将加密后的二进制转Base64字符串
  859. func HmacSha256ToBase64(key string, data string) string {
  860. return base64.URLEncoding.EncodeToString(HmacSha256(key, data))
  861. }
  862. func TimeTransferString(format string, t time.Time) string {
  863. str := t.Format(format)
  864. if t.IsZero() {
  865. return ""
  866. }
  867. return str
  868. }
  869. // IsErrNoRow
  870. // @Description: 判断是否是gorm的查询不到数据的报错
  871. // @param err
  872. // @return bool
  873. func IsErrNoRow(err error) bool {
  874. if err == nil {
  875. return false
  876. }
  877. return errors.Is(err, gorm.ErrRecordNotFound)
  878. }
  879. // GormDateStrToDateStr
  880. // @Description: gorm日期字符串格式转正常显示的日期字符串
  881. // @param originalString
  882. // @return formatStr
  883. func GormDateStrToDateStr(originalString string) (formatStr string) {
  884. if originalString == `` {
  885. return
  886. }
  887. if strings.Contains(originalString, "0001-01-01") {
  888. return
  889. }
  890. formatStr = originalString
  891. if !strings.Contains(originalString, "T") {
  892. return
  893. }
  894. // 解析原始字符串
  895. t, err := time.Parse(FormatDateWallWithLoc, originalString)
  896. if err != nil {
  897. fmt.Println("Error parsing time:", err)
  898. return
  899. }
  900. if t.IsZero() {
  901. formatStr = ""
  902. return
  903. }
  904. // 重新格式化时间
  905. formatStr = t.Format(FormatDate)
  906. return
  907. }
  908. // GormDateStrToDateTimeStr
  909. // @Description: gorm日期字符串格式转正常显示的日期时间字符串
  910. // @param originalString
  911. // @return formatStr
  912. func GormDateStrToDateTimeStr(originalString string) (formatStr string) {
  913. if originalString == `` {
  914. return
  915. }
  916. if strings.Contains(originalString, "0001-01-01") {
  917. return
  918. }
  919. formatStr = originalString
  920. if !strings.Contains(originalString, "T") {
  921. return
  922. }
  923. // 解析原始字符串
  924. t, err := time.Parse(FormatDateWallWithLoc, originalString)
  925. if err != nil {
  926. fmt.Println("Error parsing time:", err)
  927. return
  928. }
  929. if t.IsZero() {
  930. formatStr = ""
  931. return
  932. }
  933. // 重新格式化时间
  934. formatStr = t.Format(FormatDateTime)
  935. return
  936. }