1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093 |
- package utils
- import (
- "bufio"
- "crypto/md5"
- "crypto/sha1"
- "encoding/base64"
- "encoding/hex"
- "encoding/json"
- "errors"
- "fmt"
- "github.com/astaxie/beego/logs"
- "github.com/dgrijalva/jwt-go"
- "gorm.io/gorm"
- "image"
- "image/png"
- "io"
- "math"
- "math/rand"
- "net/http"
- "os"
- "os/exec"
- "path"
- "regexp"
- "strconv"
- "strings"
- "time"
- )
- var ErrNoRow = gorm.ErrRecordNotFound
- var (
- KEY = []byte("5Mb5Gdmb5y")
- )
- // GenToken 发放token
- func GenToken(account string) string {
- token := jwt.New(jwt.SigningMethodHS256)
- token.Claims = &jwt.StandardClaims{
- NotBefore: int64(time.Now().Unix()),
- ExpiresAt: int64(time.Now().Unix() + 90*24*60*60),
- Issuer: "hongze_admin",
- Subject: account,
- }
- ss, err := token.SignedString(KEY)
- if err != nil {
- logs.Error(err)
- return ""
- }
- return ss
- }
- // 随机数种子
- var rnd = rand.New(rand.NewSource(time.Now().UnixNano()))
- // GetRandString 获取随机字符串
- func GetRandString(size int) string {
- 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", "!", "@", "#", "$", "%", "^", "&", "*"}
- randomSb := ""
- digitSize := len(allLetterDigit)
- for i := 0; i < size; i++ {
- randomSb += allLetterDigit[rnd.Intn(digitSize)]
- }
- return randomSb
- }
- // GetRandStringNoSpecialChar
- func GetRandStringNoSpecialChar(size int) string {
- 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"}
- randomSb := ""
- digitSize := len(allLetterDigit)
- for i := 0; i < size; i++ {
- randomSb += allLetterDigit[rnd.Intn(digitSize)]
- }
- return randomSb
- }
- // StringsToJSON
- func StringsToJSON(str string) string {
- rs := []rune(str)
- jsons := ""
- for _, r := range rs {
- rint := int(r)
- if rint < 128 {
- jsons += string(r)
- } else {
- jsons += "\\u" + strconv.FormatInt(int64(rint), 16) // json
- }
- }
- return jsons
- }
- // ToString 序列化
- func ToString(v interface{}) string {
- data, _ := json.Marshal(v)
- return string(data)
- }
- // MD5 md5加密
- func MD5(data string) string {
- m := md5.Sum([]byte(data))
- return hex.EncodeToString(m[:])
- }
- // GetRandDigit 获取数字随机字符
- func GetRandDigit(n int) string {
- return fmt.Sprintf("%0"+strconv.Itoa(n)+"d", rnd.Intn(int(math.Pow10(n))))
- }
- // GetRandNumber 获取随机数
- func GetRandNumber(n int) int {
- return rnd.Intn(n)
- }
- // GetRandInt
- func GetRandInt(min, max int) int {
- if min >= max || min == 0 || max == 0 {
- return max
- }
- return rand.Intn(max-min) + min
- }
- // GetToday 获取今天的随机字符
- func GetToday(format string) string {
- today := time.Now().Format(format)
- return today
- }
- // GetTodayLastSecond 获取今天剩余秒数
- func GetTodayLastSecond() time.Duration {
- today := GetToday(FormatDate) + " 23:59:59"
- end, _ := time.ParseInLocation(FormatDateTime, today, time.Local)
- return time.Duration(end.Unix()-time.Now().Local().Unix()) * time.Second
- }
- // GetBrithDate 处理出生日期函数
- func GetBrithDate(idcard string) string {
- l := len(idcard)
- var s string
- if l == 15 {
- s = "19" + idcard[6:8] + "-" + idcard[8:10] + "-" + idcard[10:12]
- return s
- }
- if l == 18 {
- s = idcard[6:10] + "-" + idcard[10:12] + "-" + idcard[12:14]
- return s
- }
- return GetToday(FormatDate)
- }
- // WhichSexByIdcard 处理性别
- func WhichSexByIdcard(idcard string) string {
- var sexs = [2]string{"女", "男"}
- length := len(idcard)
- if length == 18 {
- sex, _ := strconv.Atoi(string(idcard[16]))
- return sexs[sex%2]
- } else if length == 15 {
- sex, _ := strconv.Atoi(string(idcard[14]))
- return sexs[sex%2]
- }
- return "男"
- }
- // SubFloatToString 截取小数点后几位
- func SubFloatToString(f float64, m int) string {
- n := strconv.FormatFloat(f, 'f', -1, 64)
- if n == "" {
- return ""
- }
- if m >= len(n) {
- return n
- }
- newn := strings.Split(n, ".")
- if m == 0 {
- return newn[0]
- }
- if len(newn) < 2 || m >= len(newn[1]) {
- return n
- }
- return newn[0] + "." + newn[1][:m]
- }
- // SubFloatToFloat 截取小数点后几位
- func SubFloatToFloat(f float64, m int) float64 {
- newn := SubFloatToString(f, m)
- newf, _ := strconv.ParseFloat(newn, 64)
- return newf
- }
- // SubFloatToFloatStr 截取小数点后几位
- func SubFloatToFloatStr(f float64, m int) string {
- newn := SubFloatToString(f, m)
- return newn
- }
- // GetYearDiffer 获取相差时间-年
- func GetYearDiffer(start_time, end_time string) int {
- t1, _ := time.ParseInLocation("2006-01-02", start_time, time.Local)
- t2, _ := time.ParseInLocation("2006-01-02", end_time, time.Local)
- age := t2.Year() - t1.Year()
- if t2.Month() < t1.Month() || (t2.Month() == t1.Month() && t2.Day() < t1.Day()) {
- age--
- }
- return age
- }
- // GetSecondDifferByTime 获取相差时间-秒
- func GetSecondDifferByTime(start_time, end_time time.Time) int64 {
- diff := end_time.Unix() - start_time.Unix()
- return diff
- }
- // FixFloat
- func FixFloat(f float64, m int) float64 {
- newn := SubFloatToString(f+0.00000001, m)
- newf, _ := strconv.ParseFloat(newn, 64)
- return newf
- }
- // StrListToString 将字符串数组转化为逗号分割的字符串形式 ["str1","str2","str3"] >>> "str1,str2,str3"
- func StrListToString(strList []string) (str string) {
- if len(strList) > 0 {
- for k, v := range strList {
- if k == 0 {
- str = v
- } else {
- str = str + "," + v
- }
- }
- return
- }
- return ""
- }
- // ValidateEmailFormatat 校验邮箱格式
- func ValidateEmailFormatat(email string) bool {
- reg := regexp.MustCompile(RegularEmail)
- return reg.MatchString(email)
- }
- // ValidateMobileFormatat 验证是否是手机号
- func ValidateMobileFormatat(mobileNum string) bool {
- reg := regexp.MustCompile(RegularMobile)
- return reg.MatchString(mobileNum)
- }
- // FileIsExist 判断文件是否存在
- func FileIsExist(filePath string) bool {
- _, err := os.Stat(filePath)
- return err == nil || os.IsExist(err)
- }
- // GetImgExt 获取图片扩展名
- func GetImgExt(file string) (ext string, err error) {
- var headerByte []byte
- headerByte = make([]byte, 8)
- fd, err := os.Open(file)
- if err != nil {
- return "", err
- }
- defer fd.Close()
- _, err = fd.Read(headerByte)
- if err != nil {
- return "", err
- }
- xStr := fmt.Sprintf("%x", headerByte)
- switch {
- case xStr == "89504e470d0a1a0a":
- ext = ".png"
- case xStr == "0000010001002020":
- ext = ".ico"
- case xStr == "0000020001002020":
- ext = ".cur"
- case xStr[:12] == "474946383961" || xStr[:12] == "474946383761":
- ext = ".gif"
- case xStr[:10] == "0000020000" || xStr[:10] == "0000100000":
- ext = ".tga"
- case xStr[:8] == "464f524d":
- ext = ".iff"
- case xStr[:8] == "52494646":
- ext = ".ani"
- case xStr[:4] == "4d4d" || xStr[:4] == "4949":
- ext = ".tiff"
- case xStr[:4] == "424d":
- ext = ".bmp"
- case xStr[:4] == "ffd8":
- ext = ".jpg"
- case xStr[:2] == "0a":
- ext = ".pcx"
- default:
- ext = ""
- }
- return ext, nil
- }
- // SaveImage 保存图片
- func SaveImage(path string, img image.Image) (err error) {
- //需要保持的文件
- imgfile, err := os.Create(path)
- defer imgfile.Close()
- // 以PNG格式保存文件
- err = png.Encode(imgfile, img)
- return err
- }
- // DownloadImage 下载图片
- func DownloadImage(imgUrl string) (filePath string, err error) {
- imgPath := "./static/imgs/"
- fileName := path.Base(imgUrl)
- res, err := http.Get(imgUrl)
- if err != nil {
- fmt.Println("A error occurred!")
- return
- }
- defer res.Body.Close()
- // 获得get请求响应的reader对象
- reader := bufio.NewReaderSize(res.Body, 32*1024)
- filePath = imgPath + fileName
- file, err := os.Create(filePath)
- if err != nil {
- return
- }
- // 获得文件的writer对象
- writer := bufio.NewWriter(file)
- written, _ := io.Copy(writer, reader)
- fmt.Printf("Total length: %d \n", written)
- return
- }
- // SaveBase64ToFile 保存base64数据为文件
- func SaveBase64ToFile(content, path string) error {
- data, err := base64.StdEncoding.DecodeString(content)
- if err != nil {
- return err
- }
- f, err := os.Create(path)
- defer f.Close()
- if err != nil {
- return err
- }
- f.Write(data)
- return nil
- }
- // SaveBase64ToFileBySeek
- func SaveBase64ToFileBySeek(content, path string) (err error) {
- data, err := base64.StdEncoding.DecodeString(content)
- exist, err := PathExists(path)
- if err != nil {
- return
- }
- if !exist {
- f, err := os.Create(path)
- if err != nil {
- return err
- }
- n, _ := f.Seek(0, 2)
- // 从末尾的偏移量开始写入内容
- _, err = f.WriteAt([]byte(data), n)
- defer f.Close()
- } else {
- f, err := os.OpenFile(path, os.O_WRONLY, 0644)
- if err != nil {
- return err
- }
- n, _ := f.Seek(0, 2)
- // 从末尾的偏移量开始写入内容
- _, err = f.WriteAt([]byte(data), n)
- defer f.Close()
- }
- return nil
- }
- // StartIndex 开始下标
- func StartIndex(page, pagesize int) int {
- if page > 1 {
- return (page - 1) * pagesize
- }
- return 0
- }
- // PageCount
- func PageCount(count, pagesize int) int {
- if count%pagesize > 0 {
- return count/pagesize + 1
- } else {
- return count / pagesize
- }
- }
- // TrimHtml
- func TrimHtml(src string) string {
- //将HTML标签全转换成小写
- re, _ := regexp.Compile("\\<[\\S\\s]+?\\>")
- src = re.ReplaceAllStringFunc(src, strings.ToLower)
- re, _ = regexp.Compile("\\<img[\\S\\s]+?\\>")
- src = re.ReplaceAllString(src, "")
- re, _ = regexp.Compile("class[\\S\\s]+?>")
- src = re.ReplaceAllString(src, "")
- re, _ = regexp.Compile("\\<[\\S\\s]+?\\>")
- src = re.ReplaceAllString(src, "")
- return strings.TrimSpace(src)
- }
- // 1556164246 -> 2019-04-25 03:50:46 +0000
- // timestamp
- // TimeToTimestamp
- func TimeToTimestamp() {
- fmt.Println(time.Unix(1556164246, 0).Format("2006-01-02 15:04:05"))
- }
- func TimeTransferString(format string, t time.Time) string {
- str := t.Format(format)
- var emptyT time.Time
- if str == emptyT.Format(format) {
- return ""
- }
- return str
- }
- // ToUnicode
- func ToUnicode(text string) string {
- textQuoted := strconv.QuoteToASCII(text)
- textUnquoted := textQuoted[1 : len(textQuoted)-1]
- return textUnquoted
- }
- // VersionToInt
- func VersionToInt(version string) int {
- version = strings.Replace(version, ".", "", -1)
- n, _ := strconv.Atoi(version)
- return n
- }
- // IsCheckInList
- func IsCheckInList(list []int, s int) bool {
- for _, v := range list {
- if v == s {
- return true
- }
- }
- return false
- }
- // round
- func round(num float64) int {
- return int(num + math.Copysign(0.5, num))
- }
- // toFixed
- func toFixed(num float64, precision int) float64 {
- output := math.Pow(10, float64(precision))
- return float64(round(num*output)) / output
- }
- // GetWilsonScore returns Wilson Score
- func GetWilsonScore(p, n float64) float64 {
- if p == 0 && n == 0 {
- return 0
- }
- 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)
- }
- // 将中文数字转化成数字,比如 第三百四十五章,返回第345章 不支持一亿及以上
- func ChangeWordsToNum(str string) (numStr string) {
- words := ([]rune)(str)
- num := 0
- n := 0
- for i := 0; i < len(words); i++ {
- word := string(words[i : i+1])
- switch word {
- case "万":
- if n == 0 {
- n = 1
- }
- n = n * 10000
- num = num*10000 + n
- n = 0
- case "千":
- if n == 0 {
- n = 1
- }
- n = n * 1000
- num += n
- n = 0
- case "百":
- if n == 0 {
- n = 1
- }
- n = n * 100
- num += n
- n = 0
- case "十":
- if n == 0 {
- n = 1
- }
- n = n * 10
- num += n
- n = 0
- case "一":
- n += 1
- case "二":
- n += 2
- case "三":
- n += 3
- case "四":
- n += 4
- case "五":
- n += 5
- case "六":
- n += 6
- case "七":
- n += 7
- case "八":
- n += 8
- case "九":
- n += 9
- case "零":
- default:
- if n > 0 {
- num += n
- n = 0
- }
- if num == 0 {
- numStr += word
- } else {
- numStr += strconv.Itoa(num) + word
- num = 0
- }
- }
- }
- if n > 0 {
- num += n
- n = 0
- }
- if num != 0 {
- numStr += strconv.Itoa(num)
- }
- return
- }
- // Sha1
- func Sha1(data string) string {
- sha1 := sha1.New()
- sha1.Write([]byte(data))
- return hex.EncodeToString(sha1.Sum([]byte("")))
- }
- // GetVideoPlaySeconds
- func GetVideoPlaySeconds(videoPath string) (playSeconds float64, err error) {
- cmd := `ffmpeg -i ` + videoPath + ` 2>&1 | grep 'Duration' | cut -d ' ' -f 4 | sed s/,//`
- out, err := exec.Command("bash", "-c", cmd).Output()
- if err != nil {
- return
- }
- outTimes := string(out)
- fmt.Println("outTimes:", outTimes)
- if outTimes != "" {
- timeArr := strings.Split(outTimes, ":")
- h := timeArr[0]
- m := timeArr[1]
- s := timeArr[2]
- hInt, err := strconv.Atoi(h)
- if err != nil {
- return playSeconds, err
- }
- mInt, err := strconv.Atoi(m)
- if err != nil {
- return playSeconds, err
- }
- s = strings.Trim(s, " ")
- s = strings.Trim(s, "\n")
- sInt, err := strconv.ParseFloat(s, 64)
- if err != nil {
- return playSeconds, err
- }
- playSeconds = float64(hInt)*3600 + float64(mInt)*60 + float64(sInt)
- }
- return
- }
- // GetMaxTradeCode
- func GetMaxTradeCode(tradeCode string) (maxTradeCode string, err error) {
- tradeCode = strings.Replace(tradeCode, "W", "", -1)
- tradeCode = strings.Trim(tradeCode, " ")
- tradeCodeInt, err := strconv.Atoi(tradeCode)
- if err != nil {
- return
- }
- tradeCodeInt = tradeCodeInt + 1
- maxTradeCode = fmt.Sprintf("W%06d", tradeCodeInt)
- return
- }
- // ConvertToFormatDay excel日期字段格式化 yyyy-mm-dd
- func ConvertToFormatDay(excelDaysString string) string {
- // 2006-01-02 距离 1900-01-01的天数
- baseDiffDay := 38719 //在网上工具计算的天数需要加2天,什么原因没弄清楚
- curDiffDay := excelDaysString
- b, _ := strconv.Atoi(curDiffDay)
- // 获取excel的日期距离2006-01-02的天数
- realDiffDay := b - baseDiffDay
- //fmt.Println("realDiffDay:",realDiffDay)
- // 距离2006-01-02 秒数
- realDiffSecond := realDiffDay * 24 * 3600
- //fmt.Println("realDiffSecond:",realDiffSecond)
- // 2006-01-02 15:04:05距离1970-01-01 08:00:00的秒数 网上工具可查出
- baseOriginSecond := 1136185445
- resultTime := time.Unix(int64(baseOriginSecond+realDiffSecond), 0).Format("2006-01-02")
- return resultTime
- }
- // CheckPwd
- func CheckPwd(pwd string) bool {
- compile := `([0-9a-z]+){6,12}|(a-z0-9]+){6,12}`
- reg := regexp.MustCompile(compile)
- flag := reg.MatchString(pwd)
- return flag
- }
- // GetMonthStartAndEnd
- func GetMonthStartAndEnd(myYear string, myMonth string) (startDate, endDate string) {
- // 数字月份必须前置补零
- if len(myMonth) == 1 {
- myMonth = "0" + myMonth
- }
- yInt, _ := strconv.Atoi(myYear)
- timeLayout := "2006-01-02 15:04:05"
- loc, _ := time.LoadLocation("Local")
- theTime, _ := time.ParseInLocation(timeLayout, myYear+"-"+myMonth+"-01 00:00:00", loc)
- newMonth := theTime.Month()
- t1 := time.Date(yInt, newMonth, 1, 0, 0, 0, 0, time.Local).Format("2006-01-02")
- t2 := time.Date(yInt, newMonth+1, 0, 0, 0, 0, 0, time.Local).Format("2006-01-02")
- return t1, t2
- }
- // TrimStr 移除字符串中的空格
- func TrimStr(str string) (str2 string) {
- return strings.Replace(str, " ", "", -1)
- }
- // StrTimeToTime 字符串转换为time
- func StrTimeToTime(strTime string) time.Time {
- timeLayout := "2006-01-02 15:04:05" //转化所需模板
- loc, _ := time.LoadLocation("Local") //重要:获取时区
- resultTime, _ := time.ParseInLocation(timeLayout, strTime, loc)
- return resultTime
- }
- // StrDateTimeToWeek 字符串类型时间转周几
- func StrDateTimeToWeek(strTime string) string {
- var WeekDayMap = map[string]string{
- "Monday": "周一",
- "Tuesday": "周二",
- "Wednesday": "周三",
- "Thursday": "周四",
- "Friday": "周五",
- "Saturday": "周六",
- "Sunday": "周日",
- }
- var ctime = StrTimeToTime(strTime).Format("2006-01-02")
- startday, _ := time.Parse("2006-01-02", ctime)
- staweek_int := startday.Weekday().String()
- return WeekDayMap[staweek_int]
- }
- // TimeToStrYmd 时间格式转年月日字符串
- func TimeToStrYmd(time2 time.Time) string {
- var Ymd string
- year := time2.Year()
- month := time2.Format("1")
- day1 := time.Now().Day()
- Ymd = strconv.Itoa(year) + "年" + month + "月" + strconv.Itoa(day1) + "日"
- return Ymd
- }
- // TimeRemoveHms 时间格式去掉时分秒
- func TimeRemoveHms(strTime string) string {
- var Ymd string
- var resultTime = StrTimeToTime(strTime)
- year := resultTime.Year()
- month := resultTime.Format("01")
- day1 := resultTime.Day()
- Ymd = strconv.Itoa(year) + "." + month + "." + strconv.Itoa(day1)
- return Ymd
- }
- // ArticleLastTime 文章上一次编辑时间
- func ArticleLastTime(strTime string) string {
- var newTime string
- stamp, _ := time.ParseInLocation("2006-01-02 15:04:05", strTime, time.Local)
- diffTime := time.Now().Unix() - stamp.Unix()
- if diffTime <= 60 {
- newTime = "当前"
- } else if diffTime < 60*60 {
- newTime = strconv.FormatInt(diffTime/60, 10) + "分钟前"
- } else if diffTime < 24*60*60 {
- newTime = strconv.FormatInt(diffTime/(60*60), 10) + "小时前"
- } else if diffTime < 30*24*60*60 {
- newTime = strconv.FormatInt(diffTime/(24*60*60), 10) + "天前"
- } else if diffTime < 12*30*24*60*60 {
- newTime = strconv.FormatInt(diffTime/(30*24*60*60), 10) + "月前"
- } else {
- newTime = "1年前"
- }
- return newTime
- }
- // ConvertNumToCny 人民币小写转大写
- func ConvertNumToCny(num float64) (str string, err error) {
- strNum := strconv.FormatFloat(num*100, 'f', 0, 64)
- sliceUnit := []string{"仟", "佰", "拾", "亿", "仟", "佰", "拾", "万", "仟", "佰", "拾", "元", "角", "分"}
- // log.Println(sliceUnit[:len(sliceUnit)-2])
- s := sliceUnit[len(sliceUnit)-len(strNum):]
- upperDigitUnit := map[string]string{"0": "零", "1": "壹", "2": "贰", "3": "叁", "4": "肆", "5": "伍", "6": "陆", "7": "柒", "8": "捌", "9": "玖"}
- for k, v := range strNum[:] {
- str = str + upperDigitUnit[string(v)] + s[k]
- }
- reg, err := regexp.Compile(`零角零分$`)
- str = reg.ReplaceAllString(str, "整")
- reg, err = regexp.Compile(`零角`)
- str = reg.ReplaceAllString(str, "零")
- reg, err = regexp.Compile(`零分$`)
- str = reg.ReplaceAllString(str, "整")
- reg, err = regexp.Compile(`零[仟佰拾]`)
- str = reg.ReplaceAllString(str, "零")
- reg, err = regexp.Compile(`零{2,}`)
- str = reg.ReplaceAllString(str, "零")
- reg, err = regexp.Compile(`零亿`)
- str = reg.ReplaceAllString(str, "亿")
- reg, err = regexp.Compile(`零万`)
- str = reg.ReplaceAllString(str, "万")
- reg, err = regexp.Compile(`零*元`)
- str = reg.ReplaceAllString(str, "元")
- reg, err = regexp.Compile(`亿零{0, 3}万`)
- str = reg.ReplaceAllString(str, "^元")
- reg, err = regexp.Compile(`零元`)
- str = reg.ReplaceAllString(str, "零")
- return
- }
- // GetNowWeekMonday 获取本周周一的时间
- func GetNowWeekMonday() time.Time {
- offset := int(time.Monday - time.Now().Weekday())
- if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
- offset = -6
- }
- mondayTime := time.Now().AddDate(0, 0, offset)
- mondayTime = time.Date(mondayTime.Year(), mondayTime.Month(), mondayTime.Day(), 0, 0, 0, 0, mondayTime.Location())
- return mondayTime
- }
- // GetNowWeekLastDay 获取本周最后一天的时间
- func GetNowWeekLastDay() time.Time {
- offset := int(time.Monday - time.Now().Weekday())
- if offset == 1 { //正好是周日,但是按照中国人的理解,周日是一周最后一天,而不是一周开始的第一天
- offset = -6
- }
- firstDayTime := time.Now().AddDate(0, 0, offset)
- firstDayTime = time.Date(firstDayTime.Year(), firstDayTime.Month(), firstDayTime.Day(), 0, 0, 0, 0, firstDayTime.Location()).AddDate(0, 0, 6)
- lastDayTime := time.Date(firstDayTime.Year(), firstDayTime.Month(), firstDayTime.Day(), 23, 59, 59, 0, firstDayTime.Location())
- return lastDayTime
- }
- // GetNowMonthFirstDay 获取本月第一天的时间
- func GetNowMonthFirstDay() time.Time {
- nowMonthFirstDay := time.Date(time.Now().Year(), time.Now().Month(), 1, 0, 0, 0, 0, time.Now().Location())
- return nowMonthFirstDay
- }
- // GetNowMonthLastDay 获取本月最后一天的时间
- func GetNowMonthLastDay() time.Time {
- nowMonthLastDay := time.Date(time.Now().Year(), time.Now().Month(), 1, 0, 0, 0, 0, time.Now().Location()).AddDate(0, 1, -1)
- nowMonthLastDay = time.Date(nowMonthLastDay.Year(), nowMonthLastDay.Month(), nowMonthLastDay.Day(), 23, 59, 59, 0, nowMonthLastDay.Location())
- return nowMonthLastDay
- }
- // GetNowQuarterFirstDay 获取本季度第一天的时间
- func GetNowQuarterFirstDay() time.Time {
- month := int(time.Now().Month())
- var nowQuarterFirstDay time.Time
- if month >= 1 && month <= 3 {
- //1月1号
- nowQuarterFirstDay = time.Date(time.Now().Year(), 1, 1, 0, 0, 0, 0, time.Now().Location())
- } else if month >= 4 && month <= 6 {
- //4月1号
- nowQuarterFirstDay = time.Date(time.Now().Year(), 4, 1, 0, 0, 0, 0, time.Now().Location())
- } else if month >= 7 && month <= 9 {
- nowQuarterFirstDay = time.Date(time.Now().Year(), 7, 1, 0, 0, 0, 0, time.Now().Location())
- } else {
- nowQuarterFirstDay = time.Date(time.Now().Year(), 10, 1, 0, 0, 0, 0, time.Now().Location())
- }
- return nowQuarterFirstDay
- }
- // GetNowQuarterLastDay 获取本季度最后一天的时间
- func GetNowQuarterLastDay() time.Time {
- month := int(time.Now().Month())
- var nowQuarterLastDay time.Time
- if month >= 1 && month <= 3 {
- //03-31 23:59:59
- nowQuarterLastDay = time.Date(time.Now().Year(), 3, 31, 23, 59, 59, 0, time.Now().Location())
- } else if month >= 4 && month <= 6 {
- //06-30 23:59:59
- nowQuarterLastDay = time.Date(time.Now().Year(), 6, 30, 23, 59, 59, 0, time.Now().Location())
- } else if month >= 7 && month <= 9 {
- //09-30 23:59:59
- nowQuarterLastDay = time.Date(time.Now().Year(), 9, 30, 23, 59, 59, 0, time.Now().Location())
- } else {
- //12-31 23:59:59
- nowQuarterLastDay = time.Date(time.Now().Year(), 12, 31, 23, 59, 59, 0, time.Now().Location())
- }
- return nowQuarterLastDay
- }
- // GetNowHalfYearFirstDay 获取当前半年的第一天的时间
- func GetNowHalfYearFirstDay() time.Time {
- month := int(time.Now().Month())
- var nowHalfYearLastDay time.Time
- if month >= 1 && month <= 6 {
- //03-31 23:59:59
- nowHalfYearLastDay = time.Date(time.Now().Year(), 1, 1, 0, 0, 0, 0, time.Now().Location())
- } else {
- //12-31 23:59:59
- nowHalfYearLastDay = time.Date(time.Now().Year(), 7, 1, 0, 0, 0, 0, time.Now().Location())
- }
- return nowHalfYearLastDay
- }
- // GetNowHalfYearLastDay 获取当前半年的最后一天的时间
- func GetNowHalfYearLastDay() time.Time {
- month := int(time.Now().Month())
- var nowHalfYearLastDay time.Time
- if month >= 1 && month <= 6 {
- //03-31 23:59:59
- nowHalfYearLastDay = time.Date(time.Now().Year(), 6, 30, 23, 59, 59, 0, time.Now().Location())
- } else {
- //12-31 23:59:59
- nowHalfYearLastDay = time.Date(time.Now().Year(), 12, 31, 23, 59, 59, 0, time.Now().Location())
- }
- return nowHalfYearLastDay
- }
- // GetNowYearFirstDay 获取当前年的最后一天的时间
- func GetNowYearFirstDay() time.Time {
- //12-31 23:59:59
- nowYearFirstDay := time.Date(time.Now().Year(), 1, 1, 0, 0, 0, 0, time.Now().Location())
- return nowYearFirstDay
- }
- // GetNowYearLastDay 获取当前年的最后一天的时间
- func GetNowYearLastDay() time.Time {
- //12-31 23:59:59
- nowYearLastDay := time.Date(time.Now().Year(), 12, 31, 23, 59, 59, 0, time.Now().Location())
- return nowYearLastDay
- }
- // CalculationDate 计算两个日期之间相差n年m月y天
- func CalculationDate(startDate, endDate time.Time) (beetweenDay string, err error) {
- //startDate := time.Date(2021, 3, 28, 0, 0, 0, 0, time.Now().Location())
- //endDate := time.Date(2022, 3, 31, 0, 0, 0, 0, time.Now().Location())
- numYear := endDate.Year() - startDate.Year()
- numMonth := int(endDate.Month()) - int(startDate.Month())
- numDay := 0
- //获取截止月的总天数
- endDateDays := getMonthDay(endDate.Year(), int(endDate.Month()))
- //获取截止月的前一个月
- endDatePrevMonthDate := endDate.AddDate(0, -1, 0)
- //获取截止日期的上一个月的总天数
- endDatePrevMonthDays := getMonthDay(endDatePrevMonthDate.Year(), int(endDatePrevMonthDate.Month()))
- //获取开始日期的的月份总天数
- startDateMonthDays := getMonthDay(startDate.Year(), int(startDate.Month()))
- //判断,截止月是否完全被选中,如果相等,那么代表截止月份全部天数被选择
- if endDate.Day() == endDateDays {
- numDay = startDateMonthDays - startDate.Day() + 1
- //如果剩余天数正好与开始日期的天数是一致的,那么月份加1
- if numDay == startDateMonthDays {
- numMonth++
- numDay = 0
- //超过月份了,那么年份加1
- if numMonth == 12 {
- numYear++
- numMonth = 0
- }
- }
- } else {
- numDay = endDate.Day() - startDate.Day() + 1
- }
- //天数小于0,那么向月份借一位
- if numDay < 0 {
- //向上一个月借一个月的天数
- numDay += endDatePrevMonthDays
- //总月份减去一个月
- numMonth = numMonth - 1
- }
- //月份小于0,那么向年份借一位
- if numMonth < 0 {
- //向上一个年借12个月
- numMonth += 12
- //总年份减去一年
- numYear = numYear - 1
- }
- if numYear < 0 {
- err = errors.New("日期异常")
- return
- }
- if numYear > 0 {
- beetweenDay += fmt.Sprint(numYear, "年")
- }
- if numMonth > 0 {
- beetweenDay += fmt.Sprint(numMonth, "个月")
- }
- if numDay > 0 {
- beetweenDay += fmt.Sprint(numDay, "天")
- }
- return
- }
- // getMonthDay 获取某年某月有多少天
- func getMonthDay(year, month int) (days int) {
- if month != 2 {
- if month == 4 || month == 6 || month == 9 || month == 11 {
- days = 30
- } else {
- days = 31
- }
- } else {
- if ((year%4) == 0 && (year%100) != 0) || (year%400) == 0 {
- days = 29
- } else {
- days = 28
- }
- }
- return
- }
- // InArray 是否在切片(数组/map)中含有该值,目前只支持:string、int 、 int64,其他都是返回false
- func InArray(needle interface{}, hyStack interface{}) bool {
- switch key := needle.(type) {
- case string:
- for _, item := range hyStack.([]string) {
- if key == item {
- return true
- }
- }
- case int:
- for _, item := range hyStack.([]int) {
- if key == item {
- return true
- }
- }
- case int64:
- for _, item := range hyStack.([]int64) {
- if key == item {
- return true
- }
- }
- default:
- return false
- }
- return false
- }
- // bit转MB 保留小数
- func Bit2MB(bitSize int64, prec int) (size float64) {
- mb := float64(bitSize) / float64(1024*1024)
- size, _ = strconv.ParseFloat(strconv.FormatFloat(mb, 'f', prec, 64), 64)
- return
- }
- // SubStr 截取字符串(中文)
- func SubStr(str string, subLen int) string {
- strRune := []rune(str)
- bodyRuneLen := len(strRune)
- if bodyRuneLen > subLen {
- bodyRuneLen = subLen
- }
- str = string(strRune[:bodyRuneLen])
- return str
- }
- func GetUpdateWeekEn(updateWeek string) string {
- switch updateWeek {
- case "周一":
- updateWeek = "monday"
- case "周二":
- updateWeek = "tuesday"
- case "周三":
- updateWeek = "wednesday"
- case "周四":
- updateWeek = "thursday"
- case "周五":
- updateWeek = "friday"
- case "周六":
- updateWeek = "saturday"
- case "周日":
- updateWeek = "sunday"
- }
- return updateWeek
- }
- func GetWeekZn(updateWeek string) (week string) {
- switch updateWeek {
- case "Monday":
- week = "周一"
- case "Tuesday":
- week = "周二"
- case "Wednesday":
- week = "周三"
- case "Thursday":
- week = "周四"
- case "Friday":
- week = "周五"
- case "Saturday":
- week = "周六"
- case "Sunday":
- week = "周日"
- }
- return week
- }
- func GetWeekDay() (string, string) {
- now := time.Now()
- offset := int(time.Monday - now.Weekday())
- //周日做特殊判断 因为time.Monday = 0
- if offset > 0 {
- offset = -6
- }
- lastoffset := int(time.Saturday - now.Weekday())
- //周日做特殊判断 因为time.Monday = 0
- if lastoffset == 6 {
- lastoffset = -1
- }
- firstOfWeek := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, time.Local).AddDate(0, 0, offset)
- lastOfWeeK := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, time.Local).AddDate(0, 0, lastoffset+1)
- f := firstOfWeek.Unix()
- l := lastOfWeeK.Unix()
- return time.Unix(f, 0).Format("2006-01-02") + " 00:00:00", time.Unix(l, 0).Format("2006-01-02") + " 23:59:59"
- }
- // GetOracleInReplace 获取oracle sql的in查询替换:1的方法
- func GetOracleInReplace(num int) string {
- template := make([]string, num)
- for i := 0; i < num; i++ {
- template[i] = ":1"
- }
- return strings.Join(template, ",")
- }
- // InArrayByInt php中的in_array(判断Int类型的切片中是否存在该Int值)
- func InArrayByInt(idStrList []int, searchId int) (has bool) {
- for _, id := range idStrList {
- if id == searchId {
- has = true
- return
- }
- }
- return
- }
|