common.go 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262
  1. package utils
  2. import (
  3. "bufio"
  4. "crypto/cipher"
  5. "crypto/des"
  6. "crypto/md5"
  7. "crypto/sha1"
  8. "encoding/base64"
  9. "encoding/hex"
  10. "encoding/json"
  11. "errors"
  12. "fmt"
  13. "image"
  14. "image/png"
  15. "io"
  16. "math"
  17. "math/rand"
  18. "net"
  19. "net/http"
  20. "os"
  21. "path"
  22. "regexp"
  23. "strconv"
  24. "strings"
  25. "time"
  26. "github.com/shopspring/decimal"
  27. "gorm.io/gorm"
  28. )
  29. func GetRandString(size int) string {
  30. 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", "!", "@", "#", "$", "%", "^", "&", "*"}
  31. randomSb := ""
  32. digitSize := len(allLetterDigit)
  33. // 随机数种子
  34. rnd := rand.New(rand.NewSource(time.Now().UnixNano()))
  35. for i := 0; i < size; i++ {
  36. randomSb += allLetterDigit[rnd.Intn(digitSize)]
  37. }
  38. return randomSb
  39. }
  40. func GetRandStringNoSpecialChar(size int) string {
  41. 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"}
  42. randomSb := ""
  43. digitSize := len(allLetterDigit)
  44. // 随机数种子
  45. rnd := rand.New(rand.NewSource(time.Now().UnixNano()))
  46. for i := 0; i < size; i++ {
  47. randomSb += allLetterDigit[rnd.Intn(digitSize)]
  48. }
  49. return randomSb
  50. }
  51. func StringsToJSON(str string) string {
  52. rs := []rune(str)
  53. jsons := ""
  54. for _, r := range rs {
  55. rint := int(r)
  56. if rint < 128 {
  57. jsons += string(r)
  58. } else {
  59. jsons += "\\u" + strconv.FormatInt(int64(rint), 16) // json
  60. }
  61. }
  62. return jsons
  63. }
  64. func ToString(v interface{}) string {
  65. data, _ := json.Marshal(v)
  66. return string(data)
  67. }
  68. func MD5(data string) string {
  69. m := md5.Sum([]byte(data))
  70. return hex.EncodeToString(m[:])
  71. }
  72. func GetToday(format string) string {
  73. today := time.Now().Format(format)
  74. return today
  75. }
  76. func GetTodayLastSecond() time.Duration {
  77. today := GetToday(FormatDate) + " 23:59:59"
  78. end, _ := time.ParseInLocation(FormatDateTime, today, time.Local)
  79. return time.Duration(end.Unix()-time.Now().Local().Unix()) * time.Second
  80. }
  81. func GetBrithDate(idcard string) string {
  82. l := len(idcard)
  83. var s string
  84. if l == 15 {
  85. s = "19" + idcard[6:8] + "-" + idcard[8:10] + "-" + idcard[10:12]
  86. return s
  87. }
  88. if l == 18 {
  89. s = idcard[6:10] + "-" + idcard[10:12] + "-" + idcard[12:14]
  90. return s
  91. }
  92. return GetToday(FormatDate)
  93. }
  94. func WhichSexByIdcard(idcard string) string {
  95. var sexs = [2]string{"女", "男"}
  96. length := len(idcard)
  97. if length == 18 {
  98. sex, _ := strconv.Atoi(string(idcard[16]))
  99. return sexs[sex%2]
  100. } else if length == 15 {
  101. sex, _ := strconv.Atoi(string(idcard[14]))
  102. return sexs[sex%2]
  103. }
  104. return "男"
  105. }
  106. func SubFloatToString(f float64, m int) string {
  107. n := strconv.FormatFloat(f, 'f', -1, 64)
  108. if n == "" {
  109. return ""
  110. }
  111. if m >= len(n) {
  112. return n
  113. }
  114. newn := strings.Split(n, ".")
  115. if m == 0 {
  116. return newn[0]
  117. }
  118. if len(newn) < 2 || m >= len(newn[1]) {
  119. return n
  120. }
  121. return newn[0] + "." + newn[1][:m]
  122. }
  123. func SubFloatToFloat(f float64, m int) float64 {
  124. newn := SubFloatToString(f, m)
  125. newf, _ := strconv.ParseFloat(newn, 64)
  126. return newf
  127. }
  128. func SubFloatToFloatStr(f float64, m int) string {
  129. newn := SubFloatToString(f, m)
  130. return newn
  131. }
  132. func GetYearDiffer(start_time, end_time string) int {
  133. t1, _ := time.ParseInLocation("2006-01-02", start_time, time.Local)
  134. t2, _ := time.ParseInLocation("2006-01-02", end_time, time.Local)
  135. age := t2.Year() - t1.Year()
  136. if t2.Month() < t1.Month() || (t2.Month() == t1.Month() && t2.Day() < t1.Day()) {
  137. age--
  138. }
  139. return age
  140. }
  141. func GetSecondDifferByTime(start_time, end_time time.Time) int64 {
  142. diff := end_time.Unix() - start_time.Unix()
  143. return diff
  144. }
  145. func FixFloat(f float64, m int) float64 {
  146. newn := SubFloatToString(f+0.00000001, m)
  147. newf, _ := strconv.ParseFloat(newn, 64)
  148. return newf
  149. }
  150. func StrListToString(strList []string) (str string) {
  151. if len(strList) > 0 {
  152. for k, v := range strList {
  153. if k == 0 {
  154. str = v
  155. } else {
  156. str = str + "," + v
  157. }
  158. }
  159. return
  160. }
  161. return ""
  162. }
  163. func ErrNoRow() string {
  164. return "<QuerySeter> no row found"
  165. }
  166. func IsErrNoRow(err error) bool {
  167. if err == nil {
  168. return false
  169. }
  170. return errors.Is(err, gorm.ErrRecordNotFound)
  171. }
  172. func ValidateEmailFormatat(email string) bool {
  173. reg := regexp.MustCompile(RegularEmail)
  174. return reg.MatchString(email)
  175. }
  176. func ValidateMobileFormatat(mobileNum string) bool {
  177. reg := regexp.MustCompile(RegularMobile)
  178. return reg.MatchString(mobileNum)
  179. }
  180. func FileIsExist(filePath string) bool {
  181. _, err := os.Stat(filePath)
  182. return err == nil || os.IsExist(err)
  183. }
  184. func GetImgExt(file string) (ext string, err error) {
  185. var headerByte []byte
  186. headerByte = make([]byte, 8)
  187. fd, err := os.Open(file)
  188. if err != nil {
  189. return "", err
  190. }
  191. defer fd.Close()
  192. _, err = fd.Read(headerByte)
  193. if err != nil {
  194. return "", err
  195. }
  196. xStr := fmt.Sprintf("%x", headerByte)
  197. switch {
  198. case xStr == "89504e470d0a1a0a":
  199. ext = ".png"
  200. case xStr == "0000010001002020":
  201. ext = ".ico"
  202. case xStr == "0000020001002020":
  203. ext = ".cur"
  204. case xStr[:12] == "474946383961" || xStr[:12] == "474946383761":
  205. ext = ".gif"
  206. case xStr[:10] == "0000020000" || xStr[:10] == "0000100000":
  207. ext = ".tga"
  208. case xStr[:8] == "464f524d":
  209. ext = ".iff"
  210. case xStr[:8] == "52494646":
  211. ext = ".ani"
  212. case xStr[:4] == "4d4d" || xStr[:4] == "4949":
  213. ext = ".tiff"
  214. case xStr[:4] == "424d":
  215. ext = ".bmp"
  216. case xStr[:4] == "ffd8":
  217. ext = ".jpg"
  218. case xStr[:2] == "0a":
  219. ext = ".pcx"
  220. default:
  221. ext = ""
  222. }
  223. return ext, nil
  224. }
  225. func SaveImage(path string, img image.Image) (err error) {
  226. imgfile, err := os.Create(path)
  227. defer imgfile.Close()
  228. err = png.Encode(imgfile, img)
  229. return err
  230. }
  231. func DownloadImage(imgUrl string) (filePath string, err error) {
  232. imgPath := "./static/imgs/"
  233. fileName := path.Base(imgUrl)
  234. res, err := http.Get(imgUrl)
  235. if err != nil {
  236. fmt.Println("A error occurred!")
  237. return
  238. }
  239. defer res.Body.Close()
  240. reader := bufio.NewReaderSize(res.Body, 32*1024)
  241. filePath = imgPath + fileName
  242. file, err := os.Create(filePath)
  243. if err != nil {
  244. return
  245. }
  246. writer := bufio.NewWriter(file)
  247. written, _ := io.Copy(writer, reader)
  248. fmt.Printf("Total length: %d \n", written)
  249. return
  250. }
  251. func SaveBase64ToFile(content, path string) error {
  252. data, err := base64.StdEncoding.DecodeString(content)
  253. if err != nil {
  254. return err
  255. }
  256. f, err := os.Create(path)
  257. defer f.Close()
  258. if err != nil {
  259. return err
  260. }
  261. f.Write(data)
  262. return nil
  263. }
  264. func SaveBase64ToFileBySeek(content, path string) (err error) {
  265. data, err := base64.StdEncoding.DecodeString(content)
  266. exist, err := PathExists(path)
  267. if err != nil {
  268. return
  269. }
  270. if !exist {
  271. f, err := os.Create(path)
  272. if err != nil {
  273. return err
  274. }
  275. n, _ := f.Seek(0, 2)
  276. _, err = f.WriteAt([]byte(data), n)
  277. defer f.Close()
  278. } else {
  279. f, err := os.OpenFile(path, os.O_WRONLY, 0644)
  280. if err != nil {
  281. return err
  282. }
  283. n, _ := f.Seek(0, 2)
  284. _, err = f.WriteAt([]byte(data), n)
  285. defer f.Close()
  286. }
  287. return nil
  288. }
  289. func PathExists(path string) (bool, error) {
  290. _, err := os.Stat(path)
  291. if err == nil {
  292. return true, nil
  293. }
  294. if os.IsNotExist(err) {
  295. return false, nil
  296. }
  297. return false, err
  298. }
  299. func StartIndex(page, pagesize int) int {
  300. if page > 1 {
  301. return (page - 1) * pagesize
  302. }
  303. return 0
  304. }
  305. func PageCount(count, pagesize int) int {
  306. if count%pagesize > 0 {
  307. return count/pagesize + 1
  308. } else {
  309. return count / pagesize
  310. }
  311. }
  312. func TrimHtml(src string) string {
  313. re, _ := regexp.Compile("\\<[\\S\\s]+?\\>")
  314. src = re.ReplaceAllStringFunc(src, strings.ToLower)
  315. re, _ = regexp.Compile("\\<img[\\S\\s]+?\\>")
  316. src = re.ReplaceAllString(src, "[图片]")
  317. re, _ = regexp.Compile("class[\\S\\s]+?>")
  318. src = re.ReplaceAllString(src, "")
  319. re, _ = regexp.Compile("\\<[\\S\\s]+?\\>")
  320. src = re.ReplaceAllString(src, "")
  321. return strings.TrimSpace(src)
  322. }
  323. func TimeToTimestamp() {
  324. fmt.Println(time.Unix(1556164246, 0).Format("2006-01-02 15:04:05"))
  325. }
  326. func ToUnicode(text string) string {
  327. textQuoted := strconv.QuoteToASCII(text)
  328. textUnquoted := textQuoted[1 : len(textQuoted)-1]
  329. return textUnquoted
  330. }
  331. func VersionToInt(version string) int {
  332. version = strings.Replace(version, ".", "", -1)
  333. n, _ := strconv.Atoi(version)
  334. return n
  335. }
  336. func IsCheckInList(list []int, s int) bool {
  337. for _, v := range list {
  338. if v == s {
  339. return true
  340. }
  341. }
  342. return false
  343. }
  344. func round(num float64) int {
  345. return int(num + math.Copysign(0.5, num))
  346. }
  347. func toFixed(num float64, precision int) float64 {
  348. output := math.Pow(10, float64(precision))
  349. return float64(round(num*output)) / output
  350. }
  351. func GetWilsonScore(p, n float64) float64 {
  352. if p == 0 && n == 0 {
  353. return 0
  354. }
  355. 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)
  356. }
  357. func ChangeWordsToNum(str string) (numStr string) {
  358. words := ([]rune)(str)
  359. num := 0
  360. n := 0
  361. for i := 0; i < len(words); i++ {
  362. word := string(words[i : i+1])
  363. switch word {
  364. case "万":
  365. if n == 0 {
  366. n = 1
  367. }
  368. n = n * 10000
  369. num = num*10000 + n
  370. n = 0
  371. case "千":
  372. if n == 0 {
  373. n = 1
  374. }
  375. n = n * 1000
  376. num += n
  377. n = 0
  378. case "百":
  379. if n == 0 {
  380. n = 1
  381. }
  382. n = n * 100
  383. num += n
  384. n = 0
  385. case "十":
  386. if n == 0 {
  387. n = 1
  388. }
  389. n = n * 10
  390. num += n
  391. n = 0
  392. case "一":
  393. n += 1
  394. case "二":
  395. n += 2
  396. case "三":
  397. n += 3
  398. case "四":
  399. n += 4
  400. case "五":
  401. n += 5
  402. case "六":
  403. n += 6
  404. case "七":
  405. n += 7
  406. case "八":
  407. n += 8
  408. case "九":
  409. n += 9
  410. case "零":
  411. default:
  412. if n > 0 {
  413. num += n
  414. n = 0
  415. }
  416. if num == 0 {
  417. numStr += word
  418. } else {
  419. numStr += strconv.Itoa(num) + word
  420. num = 0
  421. }
  422. }
  423. }
  424. if n > 0 {
  425. num += n
  426. n = 0
  427. }
  428. if num != 0 {
  429. numStr += strconv.Itoa(num)
  430. }
  431. return
  432. }
  433. func Sha1(data string) string {
  434. sha1 := sha1.New()
  435. sha1.Write([]byte(data))
  436. return hex.EncodeToString(sha1.Sum([]byte("")))
  437. }
  438. func GetMaxTradeCode(tradeCode string) (maxTradeCode string, err error) {
  439. tradeCode = strings.Replace(tradeCode, "W", "", -1)
  440. tradeCode = strings.Trim(tradeCode, " ")
  441. tradeCodeInt, err := strconv.Atoi(tradeCode)
  442. if err != nil {
  443. return
  444. }
  445. tradeCodeInt = tradeCodeInt + 1
  446. maxTradeCode = fmt.Sprintf("W%06d", tradeCodeInt)
  447. return
  448. }
  449. func ConvertToFormatDay(excelDaysString string) string {
  450. baseDiffDay := 38719 //在网上工具计算的天数需要加2天,什么原因没弄清楚
  451. curDiffDay := excelDaysString
  452. b, _ := strconv.Atoi(curDiffDay)
  453. realDiffDay := b - baseDiffDay
  454. realDiffSecond := realDiffDay * 24 * 3600
  455. baseOriginSecond := 1136185445
  456. resultTime := time.Unix(int64(baseOriginSecond+realDiffSecond), 0).Format("2006-01-02")
  457. return resultTime
  458. }
  459. func CheckPwd(pwd string) bool {
  460. compile := `([0-9a-z]+){6,12}|(a-z0-9]+){6,12}`
  461. reg := regexp.MustCompile(compile)
  462. flag := reg.MatchString(pwd)
  463. return flag
  464. }
  465. func GetMonthStartAndEnd(myYear string, myMonth string) (startDate, endDate string) {
  466. if len(myMonth) == 1 {
  467. myMonth = "0" + myMonth
  468. }
  469. yInt, _ := strconv.Atoi(myYear)
  470. timeLayout := "2006-01-02 15:04:05"
  471. loc, _ := time.LoadLocation("Local")
  472. theTime, _ := time.ParseInLocation(timeLayout, myYear+"-"+myMonth+"-01 00:00:00", loc)
  473. newMonth := theTime.Month()
  474. t1 := time.Date(yInt, newMonth, 1, 0, 0, 0, 0, time.Local).Format("2006-01-02")
  475. t2 := time.Date(yInt, newMonth+1, 0, 0, 0, 0, 0, time.Local).Format("2006-01-02")
  476. return t1, t2
  477. }
  478. func TrimStr(str string) (str2 string) {
  479. return strings.Replace(str, " ", "", -1)
  480. }
  481. func StrTimeToTime(strTime string) time.Time {
  482. timeLayout := "2006-01-02 15:04:05" //转化所需模板
  483. loc, _ := time.LoadLocation("Local") //重要:获取时区
  484. resultTime, _ := time.ParseInLocation(timeLayout, strTime, loc)
  485. return resultTime
  486. }
  487. func GetOrmInReplace(num int) string {
  488. template := make([]string, num)
  489. for i := 0; i < num; i++ {
  490. template[i] = "?"
  491. }
  492. return strings.Join(template, ",")
  493. }
  494. func GetGormInReplace(num int) string {
  495. if num == 0 {
  496. return ""
  497. }
  498. return "?"
  499. }
  500. func RevSlice(slice []int) []int {
  501. for i, j := 0, len(slice)-1; i < j; i, j = i+1, j-1 {
  502. slice[i], slice[j] = slice[j], slice[i]
  503. }
  504. return slice
  505. }
  506. func GetTimeSubDay(t1, t2 time.Time) int {
  507. var day int
  508. swap := false
  509. if t1.Unix() > t2.Unix() {
  510. t1, t2 = t2, t1
  511. swap = true
  512. }
  513. t1_ := t1.Add(time.Duration(t2.Sub(t1).Milliseconds()%86400000) * time.Millisecond)
  514. day = int(t2.Sub(t1).Hours() / 24)
  515. if t1_.Day() != t1.Day() {
  516. day += 1
  517. }
  518. if swap {
  519. day = -day
  520. }
  521. return day
  522. }
  523. func GetDaysBetween2Date(format, date1Str, date2Str string) (int, error) {
  524. date1, err := time.ParseInLocation(format, date1Str, time.Local)
  525. if err != nil {
  526. return 0, err
  527. }
  528. date2, err := time.ParseInLocation(format, date2Str, time.Local)
  529. if err != nil {
  530. return 0, err
  531. }
  532. return int(date1.Sub(date2).Hours() / 24), nil
  533. }
  534. type MapSorter []Item
  535. type Item struct {
  536. Key int
  537. Val float64
  538. }
  539. func NewMapSorter(m map[int]float64) MapSorter {
  540. ms := make(MapSorter, 0, len(m))
  541. for k, v := range m {
  542. ms = append(ms, Item{k, v})
  543. }
  544. return ms
  545. }
  546. func (ms MapSorter) Len() int {
  547. return len(ms)
  548. }
  549. func (ms MapSorter) Less(i, j int) bool {
  550. return ms[i].Val > ms[j].Val // 按值排序
  551. }
  552. func (ms MapSorter) Swap(i, j int) {
  553. ms[i], ms[j] = ms[j], ms[i]
  554. }
  555. func InArrayByInt(idIntList []int, searchId int) (has bool) {
  556. for _, id := range idIntList {
  557. if id == searchId {
  558. has = true
  559. return
  560. }
  561. }
  562. return
  563. }
  564. func InArrayByStr(idStrList []string, searchId string) (has bool) {
  565. for _, id := range idStrList {
  566. if id == searchId {
  567. has = true
  568. return
  569. }
  570. }
  571. return
  572. }
  573. func GetDateByDateType(dateType int, tmpStartDate, tmpEndDate string) (startDate, endDate string) {
  574. startDate = tmpStartDate
  575. endDate = tmpEndDate
  576. switch dateType {
  577. case 1:
  578. startDate = "2000-01-01"
  579. endDate = ""
  580. case 2:
  581. startDate = "2010-01-01"
  582. endDate = ""
  583. case 3:
  584. startDate = "2015-01-01"
  585. endDate = ""
  586. case 4:
  587. startDate = "2021-01-01"
  588. endDate = ""
  589. case 5:
  590. case 6:
  591. endDate = ""
  592. case 7:
  593. startDate = "2018-01-01"
  594. endDate = ""
  595. case 8:
  596. startDate = "2019-01-01"
  597. endDate = ""
  598. case 9:
  599. startDate = "2020-01-01"
  600. endDate = ""
  601. case 11:
  602. startDate = "2022-01-01"
  603. endDate = ""
  604. }
  605. {
  606. if strings.Count(startDate, "-") == 1 {
  607. startDate = startDate + "-01"
  608. }
  609. if strings.Count(endDate, "-") == 1 {
  610. endDate = endDate + "-01"
  611. }
  612. }
  613. return
  614. }
  615. func GetDateByDateType2(dateType int, currDate time.Time) (startDate time.Time) {
  616. switch dateType {
  617. case 1:
  618. startDate = currDate.AddDate(0, -3, 0)
  619. case 2:
  620. startDate = currDate.AddDate(0, -6, 0)
  621. case 3:
  622. startDate = currDate.AddDate(-1, 0, 0)
  623. case 4:
  624. startDate = currDate.AddDate(-2, 0, 0)
  625. case 5:
  626. startDate = currDate.AddDate(-3, 0, 0)
  627. case 6:
  628. startDate = currDate.AddDate(-5, 0, 0)
  629. case 7:
  630. startDate = currDate.AddDate(-10, 0, 0)
  631. }
  632. return
  633. }
  634. func GetCeilNewNum(num float64, baseLen int) (newNum float64) {
  635. if num >= 1 {
  636. tmpNum := int(math.Ceil(num)) // 向上取整
  637. str := strconv.Itoa(tmpNum)
  638. lenStr := len(str)
  639. if lenStr > baseLen {
  640. newNumStr := str[0:baseLen]
  641. newNumInt, _ := strconv.Atoi(newNumStr)
  642. newNum = float64(newNumInt) * math.Pow(10, float64(lenStr-baseLen))
  643. if newNum < num {
  644. newNumInt += 1
  645. newNum = float64(newNumInt) * math.Pow(10, float64(lenStr-baseLen))
  646. }
  647. } else {
  648. newNum = float64(tmpNum)
  649. }
  650. return
  651. } else if num > 0 {
  652. str := strconv.FormatFloat(num, 'f', -1, 64)
  653. str = removeDecimalPoint(str)
  654. lenStr := len(str)
  655. if lenStr > baseLen {
  656. newNumStr := str[0:baseLen]
  657. newNumInt, _ := strconv.Atoi(newNumStr)
  658. newNum, _ = decimal.NewFromInt(int64(newNumInt)).Div(decimal.NewFromFloat(math.Pow(10, float64(baseLen)))).Float64()
  659. if newNum < num {
  660. newNumInt += 1
  661. newNum, _ = decimal.NewFromInt(int64(newNumInt)).Div(decimal.NewFromFloat(math.Pow(10, float64(baseLen)))).Float64()
  662. }
  663. } else {
  664. newNum = num
  665. }
  666. } else if num > -1 {
  667. str := strconv.FormatFloat(num, 'f', -1, 64)
  668. str = removeDecimalPoint(str)
  669. lenStr := len(str)
  670. if lenStr > baseLen {
  671. newNumStr := str[0:baseLen]
  672. newNumInt, _ := strconv.Atoi(newNumStr)
  673. newNum, _ = decimal.NewFromInt(int64(newNumInt)).Div(decimal.NewFromFloat(math.Pow(10, float64(baseLen)))).Float64()
  674. newNum = -newNum
  675. if newNum < num {
  676. newNumInt -= 1
  677. newNum, _ = decimal.NewFromInt(int64(newNumInt)).Div(decimal.NewFromFloat(math.Pow(10, float64(baseLen)))).Float64()
  678. newNum = -newNum
  679. }
  680. } else {
  681. newNum = num
  682. }
  683. if newNum == -0 {
  684. newNum = 0
  685. }
  686. } else { // 小于等于-1
  687. tmpNumFloat := math.Abs(num)
  688. tmpNum := int(math.Floor(tmpNumFloat)) // 向上取整
  689. str := strconv.Itoa(tmpNum)
  690. lenStr := len(str)
  691. if lenStr > baseLen {
  692. newNumStr := str[0:baseLen]
  693. newNumInt, _ := strconv.Atoi(newNumStr)
  694. newNum = float64(newNumInt) * math.Pow(10, float64(lenStr-baseLen))
  695. newNum = -newNum
  696. if newNum < num {
  697. newNumInt -= 1
  698. newNum = float64(newNumInt) * math.Pow(10, float64(lenStr-baseLen))
  699. newNum = -newNum
  700. }
  701. } else {
  702. newNum = float64(-tmpNum)
  703. }
  704. }
  705. return
  706. }
  707. func GetFloorNewNum(num float64, baseLen int) (newNum float64) {
  708. if num >= 1 {
  709. tmpNum := int(math.Floor(num)) // 向上取整
  710. str := strconv.Itoa(tmpNum)
  711. lenStr := len(str)
  712. if lenStr > baseLen {
  713. newNumStr := str[0:baseLen]
  714. newNumInt, _ := strconv.Atoi(newNumStr)
  715. newNum = float64(newNumInt) * math.Pow(10, float64(lenStr-baseLen))
  716. if newNum < num {
  717. newNumInt -= 1
  718. newNum = float64(newNumInt) * math.Pow(10, float64(lenStr-baseLen))
  719. }
  720. } else {
  721. newNum = float64(tmpNum)
  722. }
  723. return
  724. } else if num > 0 {
  725. str := strconv.FormatFloat(num, 'f', -1, 64)
  726. str = removeDecimalPoint(str)
  727. lenStr := len(str)
  728. if lenStr > baseLen {
  729. newNumStr := str[0:baseLen]
  730. newNumInt, _ := strconv.Atoi(newNumStr)
  731. newNum, _ = decimal.NewFromInt(int64(newNumInt)).Div(decimal.NewFromFloat(math.Pow(10, float64(baseLen)))).Float64()
  732. if newNum > num {
  733. newNumInt -= 1
  734. newNum, _ = decimal.NewFromInt(int64(newNumInt)).Div(decimal.NewFromFloat(math.Pow(10, float64(baseLen)))).Float64()
  735. }
  736. } else {
  737. newNum = num
  738. }
  739. } else if num > -1 {
  740. str := strconv.FormatFloat(num, 'f', -1, 64)
  741. str = removeDecimalPoint(str)
  742. lenStr := len(str)
  743. if lenStr > baseLen {
  744. newNumStr := str[0:baseLen]
  745. newNumInt, _ := strconv.Atoi(newNumStr)
  746. newNum, _ = decimal.NewFromInt(int64(newNumInt)).Div(decimal.NewFromFloat(math.Pow(10, float64(baseLen)))).Float64()
  747. newNum = -newNum
  748. if newNum > num {
  749. newNumInt += 1
  750. newNum, _ = decimal.NewFromInt(int64(newNumInt)).Div(decimal.NewFromFloat(math.Pow(10, float64(baseLen)))).Float64()
  751. newNum = -newNum
  752. }
  753. } else {
  754. newNum = num
  755. }
  756. if newNum == -0 {
  757. newNum = 0
  758. }
  759. } else { // 小于等于-1
  760. tmpNumFloat := math.Abs(num)
  761. tmpNum := int(math.Ceil(tmpNumFloat)) // 向上取整
  762. str := strconv.Itoa(tmpNum)
  763. lenStr := len(str)
  764. if lenStr > baseLen {
  765. newNumStr := str[0:baseLen]
  766. newNumInt, _ := strconv.Atoi(newNumStr)
  767. newNum = float64(newNumInt) * math.Pow(10, float64(lenStr-baseLen))
  768. newNum = -newNum
  769. if newNum > num {
  770. newNumInt += 1
  771. newNum = float64(newNumInt) * math.Pow(10, float64(lenStr-baseLen))
  772. newNum = -newNum
  773. }
  774. } else {
  775. newNum = float64(-tmpNum)
  776. }
  777. }
  778. return
  779. }
  780. func removeDecimalPoint(str string) string {
  781. str = str[strings.Index(str, ".")+1:]
  782. return str
  783. }
  784. func GetLocalIP() (ip string, err error) {
  785. addrs, err := net.InterfaceAddrs()
  786. if err != nil {
  787. return
  788. }
  789. for _, addr := range addrs {
  790. ipAddr, ok := addr.(*net.IPNet)
  791. if !ok {
  792. continue
  793. }
  794. if ipAddr.IP.IsLoopback() {
  795. continue
  796. }
  797. if !ipAddr.IP.IsGlobalUnicast() {
  798. continue
  799. }
  800. return ipAddr.IP.String(), nil
  801. }
  802. return
  803. }
  804. func GetDateByDateTypeV2(dateType int, tmpStartDate, tmpEndDate string, startYear, yearMax int) (startDate, endDate string) {
  805. startDate = tmpStartDate
  806. endDate = tmpEndDate
  807. switch dateType {
  808. case 1:
  809. startDate = "2000-01-01"
  810. endDate = ""
  811. case 2:
  812. startDate = "2010-01-01"
  813. endDate = ""
  814. case 3:
  815. startDate = "2015-01-01"
  816. endDate = ""
  817. case 4:
  818. startDate = "2021-01-01"
  819. endDate = ""
  820. case 5:
  821. case 6:
  822. endDate = ""
  823. case 7:
  824. startDate = "2018-01-01"
  825. endDate = ""
  826. case 8:
  827. startDate = "2019-01-01"
  828. endDate = ""
  829. case 9:
  830. startDate = "2020-01-01"
  831. endDate = ""
  832. case 11:
  833. startDate = "2022-01-01"
  834. endDate = ""
  835. case DateTypeNYears:
  836. if startYear == 0 { //默认取最近5年
  837. startYear = 5
  838. }
  839. if yearMax == 0 {
  840. return
  841. }
  842. startYear = startYear - 1
  843. baseDate, _ := time.Parse(FormatDate, fmt.Sprintf("%d-01-01", yearMax))
  844. startDate = baseDate.AddDate(-startYear, 0, 0).Format(FormatDate)
  845. endDate = ""
  846. }
  847. {
  848. if strings.Count(startDate, "-") == 1 {
  849. startDate = startDate + "-01"
  850. }
  851. if strings.Count(endDate, "-") == 1 {
  852. endDate = endDate + "-01"
  853. }
  854. }
  855. return
  856. }
  857. func GetColorMap() map[int]string {
  858. colorMap := make(map[int]string)
  859. colors := []string{"#0000FF", "#FF0000", "#999999", "#000000", "#7CB5EC", "#90ED7D", "#F7A35C", "#8085E9",
  860. "#F15C80", "#E4D354", "#2B908F", "#F45B5B", "#91E8E1", "#FDA8C7", "#8A4294",
  861. "#578B5A", "#0033FF", "#849EC1", "#FFDF0C", "#005496", "#00F0FF", "#4D535B",
  862. "#4F4C34", "#804141", "#86BABD", "#8AA3FF", "#960000", "#A173DB", "#A39340",
  863. "#CE814A", "#D1D2E6", "#EAB7B7", "#FF2E7A", "#FF4AF8", "#FF785B", "#FF9696", "#FFA800", "#FFBC97", "#FFDFDF"}
  864. for k, v := range colors {
  865. colorMap[k] = v
  866. }
  867. return colorMap
  868. }
  869. func GetDaysDiff1900(date string) int {
  870. tStart, err := time.ParseInLocation(FormatDate, "1899-12-30", time.Local)
  871. if err != nil {
  872. return 0
  873. }
  874. tEnd, err := time.ParseInLocation(FormatDate, date, time.Local)
  875. if err != nil {
  876. return 0
  877. }
  878. duration := tEnd.Sub(tStart).Hours() / 24
  879. days := int(duration)
  880. return days
  881. }
  882. func ReplaceFormulaByTagMap(valTagMap map[string]int, formulaStr string) string {
  883. funMap := getFormulaMap()
  884. for k, v := range funMap {
  885. formulaStr = strings.Replace(formulaStr, k, v, -1)
  886. }
  887. replaceCount := 0
  888. for tag, val := range valTagMap {
  889. dvStr := fmt.Sprintf("%v", val)
  890. formulaStr = strings.Replace(formulaStr, tag, dvStr, -1)
  891. replaceCount++
  892. }
  893. for k, v := range funMap {
  894. formulaStr = strings.Replace(formulaStr, v, k, -1)
  895. }
  896. return formulaStr
  897. }
  898. func GetFrequencyEn(frequency string) (frequencyEn string) {
  899. switch frequency {
  900. case "日度":
  901. frequencyEn = "day"
  902. return
  903. case "周度":
  904. frequencyEn = "week"
  905. return
  906. case "旬度":
  907. frequencyEn = "ten days"
  908. return
  909. case "月度":
  910. frequencyEn = "month"
  911. return
  912. case "季度":
  913. frequencyEn = "quarter"
  914. return
  915. case "年度":
  916. frequencyEn = "year"
  917. return
  918. }
  919. return
  920. }
  921. func DateConvMysqlConvMongo(dateCon string) string {
  922. cond := ""
  923. switch dateCon {
  924. case "=":
  925. cond = "$eq"
  926. case "<":
  927. cond = "$lt"
  928. case "<=":
  929. cond = "$lte"
  930. case ">":
  931. cond = "$gt"
  932. case ">=":
  933. cond = "$gte"
  934. }
  935. return cond
  936. }
  937. func DesBase64Decrypt(crypted []byte, desKey string) []byte {
  938. result, _ := base64.StdEncoding.DecodeString(string(crypted))
  939. remain := len(result) % 8
  940. if remain > 0 {
  941. mod := 8 - remain
  942. for i := 0; i < mod; i++ {
  943. result = append(result, 0)
  944. }
  945. }
  946. origData, err := TripleDesDecrypt(result, []byte(desKey))
  947. if err != nil {
  948. panic(any(err))
  949. }
  950. return origData
  951. }
  952. func TripleDesDecrypt(crypted, key []byte) ([]byte, error) {
  953. block, err := des.NewTripleDESCipher(key)
  954. if err != nil {
  955. return nil, err
  956. }
  957. blockMode := cipher.NewCBCDecrypter(block, key[:8])
  958. origData := make([]byte, len(crypted))
  959. blockMode.CryptBlocks(origData, crypted)
  960. origData = PKCS5UnPadding(origData)
  961. return origData, nil
  962. }
  963. func PKCS5UnPadding(origData []byte) []byte {
  964. length := len(origData)
  965. unpadding := int(origData[length-1])
  966. return origData[:(length - unpadding)]
  967. }
  968. func TimeTransferString(format string, t time.Time) string {
  969. str := t.Format(format)
  970. if t.IsZero() {
  971. return ""
  972. }
  973. return str
  974. }
  975. func HandleSystemAppointDateT(currDate time.Time, appointDay, frequency string) (date string, err error, errMsg string) {
  976. switch frequency {
  977. case "本周":
  978. day := int(currDate.Weekday())
  979. if day == 0 { // 周日
  980. day = 7
  981. }
  982. num := 0
  983. switch appointDay {
  984. case "周一":
  985. num = 1
  986. case "周二":
  987. num = 2
  988. case "周三":
  989. num = 3
  990. case "周四":
  991. num = 4
  992. case "周五":
  993. num = 5
  994. case "周六":
  995. num = 6
  996. case "周日":
  997. num = 7
  998. }
  999. day = num - day
  1000. date = currDate.AddDate(0, 0, day).Format(FormatDate)
  1001. case "本旬":
  1002. day := currDate.Day()
  1003. var tmpDate time.Time
  1004. switch appointDay {
  1005. case "第一天":
  1006. if day <= 10 {
  1007. tmpDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, currDate.Location())
  1008. } else if day <= 20 {
  1009. tmpDate = time.Date(currDate.Year(), currDate.Month(), 11, 0, 0, 0, 0, currDate.Location())
  1010. } else {
  1011. tmpDate = time.Date(currDate.Year(), currDate.Month(), 21, 0, 0, 0, 0, currDate.Location())
  1012. }
  1013. case "最后一天":
  1014. if day <= 10 {
  1015. tmpDate = time.Date(currDate.Year(), currDate.Month(), 10, 0, 0, 0, 0, currDate.Location())
  1016. } else if day <= 20 {
  1017. tmpDate = time.Date(currDate.Year(), currDate.Month(), 20, 0, 0, 0, 0, currDate.Location())
  1018. } else {
  1019. tmpDate = time.Date(currDate.Year(), currDate.Month()+1, 1, 0, 0, 0, 0, currDate.Location()).AddDate(0, 0, -1)
  1020. }
  1021. }
  1022. date = tmpDate.Format(FormatDate)
  1023. case "本月":
  1024. var tmpDate time.Time
  1025. switch appointDay {
  1026. case "第一天":
  1027. tmpDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, currDate.Location())
  1028. case "最后一天":
  1029. tmpDate = time.Date(currDate.Year(), currDate.Month()+1, 1, 0, 0, 0, 0, currDate.Location()).AddDate(0, 0, -1)
  1030. }
  1031. date = tmpDate.Format(FormatDate)
  1032. case "本季":
  1033. month := currDate.Month()
  1034. var tmpDate time.Time
  1035. switch appointDay {
  1036. case "第一天":
  1037. if month <= 3 {
  1038. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  1039. } else if month <= 6 {
  1040. tmpDate = time.Date(currDate.Year(), 4, 1, 0, 0, 0, 0, currDate.Location())
  1041. } else if month <= 9 {
  1042. tmpDate = time.Date(currDate.Year(), 7, 1, 0, 0, 0, 0, currDate.Location())
  1043. } else {
  1044. tmpDate = time.Date(currDate.Year(), 10, 1, 0, 0, 0, 0, currDate.Location())
  1045. }
  1046. case "最后一天":
  1047. if month <= 3 {
  1048. tmpDate = time.Date(currDate.Year(), 3, 31, 0, 0, 0, 0, currDate.Location())
  1049. } else if month <= 6 {
  1050. tmpDate = time.Date(currDate.Year(), 6, 30, 0, 0, 0, 0, currDate.Location())
  1051. } else if month <= 9 {
  1052. tmpDate = time.Date(currDate.Year(), 9, 30, 0, 0, 0, 0, currDate.Location())
  1053. } else {
  1054. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  1055. }
  1056. }
  1057. date = tmpDate.Format(FormatDate)
  1058. case "本半年":
  1059. month := currDate.Month()
  1060. var tmpDate time.Time
  1061. switch appointDay {
  1062. case "第一天":
  1063. if month <= 6 {
  1064. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  1065. } else {
  1066. tmpDate = time.Date(currDate.Year(), 7, 1, 0, 0, 0, 0, currDate.Location())
  1067. }
  1068. case "最后一天":
  1069. if month <= 6 {
  1070. tmpDate = time.Date(currDate.Year(), 6, 30, 0, 0, 0, 0, currDate.Location())
  1071. } else {
  1072. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  1073. }
  1074. }
  1075. date = tmpDate.Format(FormatDate)
  1076. case "本年":
  1077. var tmpDate time.Time
  1078. switch appointDay {
  1079. case "第一天":
  1080. tmpDate = time.Date(currDate.Year(), 1, 1, 0, 0, 0, 0, currDate.Location())
  1081. case "最后一天":
  1082. tmpDate = time.Date(currDate.Year(), 12, 31, 0, 0, 0, 0, currDate.Location())
  1083. }
  1084. date = tmpDate.Format(FormatDate)
  1085. default:
  1086. errMsg = "错误的日期频度:" + frequency
  1087. err = errors.New(errMsg)
  1088. return
  1089. }
  1090. return
  1091. }
  1092. func CompareFloatByOpStrings(op string, a, b float64) bool {
  1093. switch op {
  1094. case "=":
  1095. return a == b
  1096. case ">":
  1097. return a > b
  1098. case ">=":
  1099. return a >= b
  1100. case "<=":
  1101. return a <= b
  1102. case "<":
  1103. return a < b
  1104. }
  1105. return false
  1106. }
  1107. func GormDateStrToDateTimeStr(originalString string) (formatStr string) {
  1108. formatStr = originalString
  1109. if !strings.Contains(originalString, "T") {
  1110. return
  1111. }
  1112. t, err := time.Parse(FormatDateWallWithLoc, originalString)
  1113. if err != nil {
  1114. fmt.Println("Error parsing time:", err)
  1115. return
  1116. }
  1117. formatStr = t.Format(FormatDateTime)
  1118. return
  1119. }
  1120. func GormDateStrToDateStr(originalString string) (formatStr string) {
  1121. formatStr = originalString
  1122. if !strings.Contains(originalString, "T") {
  1123. return
  1124. }
  1125. t, err := time.Parse(FormatDateWallWithLoc, originalString)
  1126. if err != nil {
  1127. fmt.Println("Error parsing time:", err)
  1128. return
  1129. }
  1130. formatStr = t.Format(FormatDate)
  1131. return
  1132. }
  1133. func RoundNumber(num string, decimalPlaces int, hasPercent bool) string {
  1134. numDecimal, _ := decimal.NewFromString(num)
  1135. if hasPercent {
  1136. numDecimal = numDecimal.Mul(decimal.NewFromInt(100))
  1137. }
  1138. numFloat, _ := numDecimal.Round(int32(decimalPlaces)).Float64()
  1139. numStr := strconv.FormatFloat(numFloat, 'f', decimalPlaces, 64)
  1140. if hasPercent {
  1141. numStr += "%"
  1142. }
  1143. return numStr
  1144. }