Commit 5e325a41 by zhengqiuyun86

初始化

parent a760158c
package PagePlus package PagePlus
import ( import (
"git.168cad.top/zhengqiuyun/rym-util/a/exception"
"git.168cad.top/zhengqiuyun/rym-util/a/page"
"git.168cad.top/zhengqiuyun/rym-util/a/util" "git.168cad.top/zhengqiuyun/rym-util/a/util"
"git.168cad.top/zhengqiuyun/rym-util/exception"
page2 "git.168cad.top/zhengqiuyun/rym-util/page"
"gorm.io/gorm" "gorm.io/gorm"
) )
func Page(params []page.Param, pageNum int, pageSize int, m interface{}, data interface{}, orderBy string, db *gorm.DB) *page.Data { func Page(params []page2.Param, pageNum int, pageSize int, m interface{}, data interface{}, orderBy string, db *gorm.DB) *page2.Data {
var page = page.Data{} var page = page2.Data{}
page.PageSize = util.IfInt(pageSize == 0, 10, pageSize) page.PageSize = util.IfInt(pageSize == 0, 10, pageSize)
page.PageNum = util.IfInt(pageNum == 0, 1, pageNum) page.PageNum = util.IfInt(pageNum == 0, 1, pageNum)
tx := db.Session(&gorm.Session{PrepareStmt: true}) tx := db.Session(&gorm.Session{PrepareStmt: true})
......
...@@ -3,7 +3,6 @@ package exception ...@@ -3,7 +3,6 @@ package exception
import ( import (
"errors" "errors"
"git.168cad.top/zhengqiuyun/rym-util/a/log" "git.168cad.top/zhengqiuyun/rym-util/a/log"
"github.com/go-playground/validator/v10"
"reflect" "reflect"
) )
......
...@@ -2,8 +2,8 @@ package catch ...@@ -2,8 +2,8 @@ package catch
import ( import (
"fmt" "fmt"
"git.168cad.top/zhengqiuyun/rym-util/a/exception" "git.168cad.top/zhengqiuyun/rym-util/exception"
"git.168cad.top/zhengqiuyun/rym-util/a/getWay" "git.168cad.top/zhengqiuyun/rym-util/getWay"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"runtime" "runtime"
"strings" "strings"
......
...@@ -3,7 +3,6 @@ package generate ...@@ -3,7 +3,6 @@ package generate
import ( import (
"fmt" "fmt"
"git.168cad.top/zhengqiuyun/rym-util/a/conf" "git.168cad.top/zhengqiuyun/rym-util/a/conf"
"github.com/deckarep/golang-set"
"github.com/iancoleman/strcase" "github.com/iancoleman/strcase"
"io" "io"
"os" "os"
......
package generate package generate
import (
"git.168cad.top/zhengqiuyun/rym-util/a/db/mysql"
)
func MysqlAllTables() []Table { func MysqlAllTables() []Table {
var tables []Table var tables []Table
//查询库中所有表 //查询库中所有表
......
package generate package generate
import (
"git.168cad.top/zhengqiuyun/rym-util/a/db/mysql"
)
func AllTables() []Table { func AllTables() []Table {
var tables []Table var tables []Table
//查询库中所有表 //查询库中所有表
......
package getWay package getWay
import ( import (
"git.168cad.top/zhengqiuyun/rym-util/a/exception" "git.168cad.top/zhengqiuyun/rym-util/exception"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
) )
......
...@@ -8,6 +8,7 @@ import ( ...@@ -8,6 +8,7 @@ import (
"git.168cad.top/zhengqiuyun/rym-util/a/db/redis" "git.168cad.top/zhengqiuyun/rym-util/a/db/redis"
"git.168cad.top/zhengqiuyun/rym-util/a/log" "git.168cad.top/zhengqiuyun/rym-util/a/log"
"git.168cad.top/zhengqiuyun/rym-util/a/log/es" "git.168cad.top/zhengqiuyun/rym-util/a/log/es"
conf2 "git.168cad.top/zhengqiuyun/rym-util/conf"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"net/http" "net/http"
"time" "time"
...@@ -85,14 +86,14 @@ func logEnd(c *gin.Context, data interface{}) { ...@@ -85,14 +86,14 @@ func logEnd(c *gin.Context, data interface{}) {
rs := string(dataJson) rs := string(dataJson)
excludeUrl := []string{""} excludeUrl := []string{""}
if esSwitch { if esSwitch {
if util.ArrayContains(excludeUrl, GetURL(c)) && len(rs) > conf.LogResponseLength { if util.ArrayContains(excludeUrl, GetURL(c)) && len(rs) > conf2.LogResponseLength {
responseStr = rs[0:conf.LogResponseLength] + "......" responseStr = rs[0:conf2.LogResponseLength] + "......"
} else { } else {
responseStr = rs responseStr = rs
} }
} else { } else {
if len(rs) > conf.LogResponseLength { if len(rs) > conf2.LogResponseLength {
responseStr = rs[0:conf.LogResponseLength] + "......" responseStr = rs[0:conf2.LogResponseLength] + "......"
} else { } else {
responseStr = rs responseStr = rs
} }
......
This diff is collapsed. Click to expand it.
...@@ -8,8 +8,8 @@ import ( ...@@ -8,8 +8,8 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"git.168cad.top/zhengqiuyun/rym-util/a/conf" "git.168cad.top/zhengqiuyun/rym-util/a/conf"
"git.168cad.top/zhengqiuyun/rym-util/a/exception"
"git.168cad.top/zhengqiuyun/rym-util/a/log" "git.168cad.top/zhengqiuyun/rym-util/a/log"
"git.168cad.top/zhengqiuyun/rym-util/exception"
"io" "io"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
......
package log package a
import ( import (
"bytes" "bytes"
"fmt" "fmt"
"git.168cad.top/zhengqiuyun/rym-util/a/conf" "git.168cad.top/zhengqiuyun/rym-util/conf"
"runtime" "runtime"
"strconv" "strconv"
"strings" "strings"
...@@ -44,14 +44,14 @@ func Print(tag, msg string, file string, line int) { ...@@ -44,14 +44,14 @@ func Print(tag, msg string, file string, line int) {
} }
} }
file = file[strings.LastIndex(file, "/")+1:] file = file[strings.LastIndex(file, "/")+1:]
fmt.Println(fmt.Sprintf(str, FormatDateMillTime(time.Now()), tag, GetGID(), file, line, msg)) fmt.Println(fmt.Sprintf(str, FormatDateMillTime(time.Now()), tag, getGID(), file, line, msg))
} }
func FormatDateMillTime(dataTime time.Time) string { func FormatDateMillTime(dataTime time.Time) string {
return dataTime.Format("2006-01-02 15:04:05.000000") return dataTime.Format("2006-01-02 15:04:05.000000")
} }
func GetGID() uint64 { func getGID() uint64 {
b := make([]byte, 64) b := make([]byte, 64)
b = b[:runtime.Stack(b, false)] b = b[:runtime.Stack(b, false)]
b = bytes.TrimPrefix(b, []byte("goroutine ")) b = bytes.TrimPrefix(b, []byte("goroutine "))
......
package rym_util package log
import ( import (
"git.168cad.top/zhengqiuyun/rym-util/a/conf" "git.168cad.top/zhengqiuyun/rym-util/conf"
"git.168cad.top/zhengqiuyun/rym-util/a/log" "git.168cad.top/zhengqiuyun/rym-util/log/a"
"runtime" "runtime"
"strings" "strings"
) )
...@@ -16,7 +16,7 @@ func DebugDo(f func()) { ...@@ -16,7 +16,7 @@ func DebugDo(f func()) {
func IsDebug() bool { func IsDebug() bool {
ok := false ok := false
switch strings.ToLower(conf.LogLevel) { switch strings.ToLower(conf.LogLevel) {
case strings.ToLower(log.DebugL): case strings.ToLower(a.DebugL):
ok = true ok = true
break break
} }
...@@ -26,47 +26,47 @@ func IsDebug() bool { ...@@ -26,47 +26,47 @@ func IsDebug() bool {
func Debug(msg string) { func Debug(msg string) {
ok := false ok := false
switch strings.ToLower(conf.LogLevel) { switch strings.ToLower(conf.LogLevel) {
case strings.ToLower(log.DebugL): case strings.ToLower(a.DebugL):
ok = true ok = true
break break
} }
if ok { if ok {
_, file, line, _ := runtime.Caller(1) _, file, line, _ := runtime.Caller(1)
log.Print("Debug", msg, file, line) a.Print("Debug", msg, file, line)
} }
} }
func Info(msg string) { func Info(msg string) {
ok := false ok := false
switch strings.ToLower(conf.LogLevel) { switch strings.ToLower(conf.LogLevel) {
case strings.ToLower(log.DebugL): case strings.ToLower(a.DebugL):
ok = true ok = true
break break
case strings.ToLower(log.InfoL): case strings.ToLower(a.InfoL):
ok = true ok = true
break break
} }
if ok { if ok {
_, file, line, _ := runtime.Caller(1) _, file, line, _ := runtime.Caller(1)
log.Print("Info", msg, file, line) a.Print("Info", msg, file, line)
} }
} }
func Error(msg string) { func Error(msg string) {
ok := false ok := false
switch strings.ToLower(conf.LogLevel) { switch strings.ToLower(conf.LogLevel) {
case strings.ToLower(log.DebugL): case strings.ToLower(a.DebugL):
ok = true ok = true
break break
case strings.ToLower(log.InfoL): case strings.ToLower(a.InfoL):
ok = true ok = true
break break
case strings.ToLower(log.ErrorL): case strings.ToLower(a.ErrorL):
ok = true ok = true
break break
} }
if ok { if ok {
_, file, line, _ := runtime.Caller(1) _, file, line, _ := runtime.Caller(1)
log.Print("Error", msg, file, line) a.Print("Error", msg, file, line)
} }
} }
package rym_util package util
func ArrayContains(array []string, e string) bool { func ArrayContains(array []string, e string) bool {
for _, v := range array { for _, v := range array {
......
package rym_util package util
import ( import (
"time" "time"
......
package rym_util package util
func IfInt(isTrue bool, a, b int) int { func IfInt(isTrue bool, a, b int) int {
if isTrue { if isTrue {
......
package rym_util package util
import ( import (
"encoding/base64" "encoding/base64"
......
package rym_util package util
import ( import (
"bytes" "bytes"
...@@ -9,7 +9,7 @@ import ( ...@@ -9,7 +9,7 @@ import (
"crypto/sha256" "crypto/sha256"
"encoding/base64" "encoding/base64"
"fmt" "fmt"
"git.168cad.top/zhengqiuyun/rym-util/a/exception" "git.168cad.top/zhengqiuyun/rym-util/exception"
"github.com/wechatpay-apiv3/wechatpay-go/utils" "github.com/wechatpay-apiv3/wechatpay-go/utils"
"sort" "sort"
) )
......
package rym_util package util
import ( import (
"encoding/json" "encoding/json"
"git.168cad.top/zhengqiuyun/rym-util/a/exception" "git.168cad.top/zhengqiuyun/rym-util/exception"
"net/url" "net/url"
"sort" "sort"
"strconv" "strconv"
......
package rym_util package util
import ( import (
"crypto/md5" "crypto/md5"
......
package rym_util package util
import ( import (
"os" "os"
......
package rym_util package util
func EncodePwd(loginPwd, loginPwdSalt string) string { func EncodePwd(loginPwd, loginPwdSalt string) string {
pingPwd := loginPwdSalt + loginPwd pingPwd := loginPwdSalt + loginPwd
......
package rym_util package util
import ( import (
"bytes" "bytes"
......
package rym_util package util
import ( import (
"encoding/json" "encoding/json"
"git.168cad.top/zhengqiuyun/rym-util/a/exception" "git.168cad.top/zhengqiuyun/rym-util/exception"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/shopspring/decimal" "github.com/shopspring/decimal"
"math/rand" "math/rand"
......
...@@ -2,7 +2,7 @@ package main ...@@ -2,7 +2,7 @@ package main
import ( import (
"fmt" "fmt"
util "git.168cad.top/zhengqiuyun/rym-util/a/util/aes" "git.168cad.top/zhengqiuyun/rym-util/util/aes"
) )
func main() { func main() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment