-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathutils.go
338 lines (301 loc) · 7.1 KB
/
utils.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
package kuu
import (
"bytes"
"fmt"
"github.com/jinzhu/gorm"
"github.com/json-iterator/go"
"log"
"math/rand"
"net/http"
"net/url"
"os"
"reflect"
"regexp"
"runtime"
"strconv"
"strings"
"github.com/gin-gonic/gin"
uuid "github.com/satori/go.uuid"
)
var goSrcRegexp = regexp.MustCompile(`kuuland/kuu(@.*)?/.*.go`)
var goTestRegexp = regexp.MustCompile(`kuuland/kuu(@.*)?/.*test.go`)
// IsBlank
func IsBlank(value interface{}) bool {
if value == nil {
return true
}
indirectValue := indirectValue(value)
switch indirectValue.Kind() {
case reflect.String:
return indirectValue.Len() == 0
case reflect.Bool:
return !indirectValue.Bool()
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return indirectValue.Int() == 0
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
return indirectValue.Uint() == 0
case reflect.Float32, reflect.Float64:
return indirectValue.Float() == 0
case reflect.Map:
return indirectValue.Len() == 0
case reflect.Interface, reflect.Ptr:
return indirectValue.IsNil()
}
vi := reflect.ValueOf(value)
if vi.Kind() == reflect.Ptr {
return vi.IsNil()
}
return reflect.DeepEqual(indirectValue.Interface(), reflect.Zero(indirectValue.Type()).Interface())
}
// IsNil
func IsNil(i interface{}) bool {
defer func() {
recover()
}()
if i == nil {
return true
}
vi := reflect.ValueOf(i)
return vi.IsNil()
}
func fileWithLineNum() string {
for i := 2; i < 15; i++ {
_, file, line, ok := runtime.Caller(i)
if ok && (!goSrcRegexp.MatchString(file) || goTestRegexp.MatchString(file)) {
return fmt.Sprintf("%v:%v", file, line)
}
}
return ""
}
func indirectValue(value interface{}) reflect.Value {
reflectValue := reflect.ValueOf(value)
for reflectValue.Kind() == reflect.Ptr {
reflectValue = reflectValue.Elem()
}
return reflectValue
}
func addrValue(value reflect.Value) reflect.Value {
if value.CanAddr() && value.Kind() != reflect.Ptr {
value = value.Addr()
}
return value
}
// CORSMiddleware
func CORSMiddleware() gin.HandlerFunc {
return func(c *gin.Context) {
c.Writer.Header().Set("Access-Control-Allow-Origin", "*")
c.Writer.Header().Set("Access-Control-Allow-Credentials", "true")
c.Writer.Header().Set("Access-Control-Allow-Headers", "*")
c.Writer.Header().Set("Access-Control-Allow-Methods", "*")
if c.Request.Method == "OPTIONS" {
c.AbortWithStatus(http.StatusNoContent)
return
}
c.Next()
}
}
// JSONStringify
func JSONStringify(v interface{}, format ...bool) string {
var (
data []byte
err error
)
if len(format) > 0 && format[0] {
data, err = json.MarshalIndent(v, "", " ")
} else {
data, err = json.Marshal(v)
}
if err == nil {
return string(data)
}
return ""
}
// JSONParse
func JSONParse(v string, r interface{}) error {
return json.Unmarshal([]byte(v), r)
}
// EnsureDir
func EnsureDir(dir string) {
if _, err := os.Stat(dir); os.IsNotExist(err) {
if err := os.MkdirAll(dir, 0755); err != nil {
log.Println(err)
}
}
}
// ParseID
func ParseID(id string) uint {
if v, err := strconv.ParseUint(id, 10, 0); err != nil {
log.Println(err)
} else {
return uint(v)
}
return 0
}
// Copy
func Copy(src interface{}, dest interface{}) (err error) {
var data []byte
if data, err = json.Marshal(src); err == nil {
err = json.Unmarshal(data, dest)
}
if err != nil {
log.Println(err)
}
return
}
// RandCode
func RandCode(size ...int) string {
length := 8
if len(size) > 0 {
length = size[0]
}
str := strings.ReplaceAll(uuid.NewV4().String(), "-", "")[:length]
for i := 0; i < 4; i++ {
idx := rand.Intn(len(str))
str = strings.Replace(str, str[idx:idx+1], strings.ToUpper(str[idx:idx+1]), 1)
}
return str
}
// If
func If(condition bool, trueVal, falseVal interface{}) interface{} {
if condition {
return trueVal
}
return falseVal
}
// assert1 defined assert func
func assert1(guard bool, err interface{}) {
if !guard {
panic(err)
}
}
// isFunc defined func check
func isFunc(target interface{}) bool {
retType := reflect.TypeOf(target)
return retType.Kind() == reflect.Func
}
// ProjectFields
func ProjectFields(data interface{}, project string) interface{} {
if IsNil(data) {
return data
}
if len(project) == 0 {
return data
}
fields := strings.Split(project, ",")
execProject := func(indirectValue reflect.Value) map[string]interface{} {
var (
raw interface{}
val = make(map[string]interface{})
)
if indirectValue.CanAddr() {
raw = indirectValue.Addr().Interface()
} else {
raw = indirectValue.Interface()
}
scope := DB().NewScope(raw)
for _, name := range fields {
if strings.HasPrefix(name, "-") {
name = name[1:]
}
if field, ok := scope.FieldByName(name); ok {
val[field.Name] = field.Field.Interface()
}
}
return val
}
if indirectValue := indirectValue(data); indirectValue.Kind() == reflect.Slice {
list := make([]map[string]interface{}, 0)
for i := 0; i < indirectValue.Len(); i++ {
item := execProject(indirectValue.Index(i))
list = append(list, item)
}
return list
} else {
return execProject(indirectValue)
}
}
// BatchInsertItem
type BatchInsertItem struct {
SQL string
Vars []interface{}
}
// BatchInsert
func BatchInsert(tx *gorm.DB, insertBase string, items []BatchInsertItem, batchSize int) error {
var (
insertBuffer bytes.Buffer
insertVars []interface{}
)
for index, item := range items {
if insertBuffer.Len() == 0 {
insertBuffer.WriteString(insertBase)
}
insertBuffer.WriteString(item.SQL)
insertVars = append(insertVars, item.Vars...)
if (index+1)%batchSize == 0 || index == len(items)-1 {
if sql := insertBuffer.String(); sql != "" {
if err := tx.Exec(sql, insertVars...).Error; err != nil {
return err
}
insertBuffer.Reset()
insertVars = insertVars[0:0]
}
} else {
insertBuffer.WriteString(", ")
}
}
return nil
}
// EncodeURIComponent
func EncodeURIComponent(str string) string {
r := url.QueryEscape(str)
r = strings.Replace(r, "+", "%20", -1)
return r
}
// DecodeURIComponent
func DecodeURIComponent(str string) string {
r, err := url.QueryUnescape(str)
if err != nil {
ERROR(err)
}
return r
}
// SetUrlQuery
func SetUrlQuery(rawUrl string, values map[string]interface{}, replace ...bool) string {
u, _ := url.Parse(rawUrl)
if len(replace) > 0 && replace[0] {
u.RawQuery = ""
}
query := u.Query()
for k, v := range values {
query.Set(k, fmt.Sprintf("%v", v))
}
u.RawQuery = query.Encode()
return u.String()
}
// OmitFields
func OmitFields(src interface{}, fieldNames []string) (omitted map[string]interface{}) {
_ = Copy(src, &omitted)
for _, fieldName := range fieldNames {
delete(omitted, fieldName)
}
return
}
// JSON
func JSON() jsoniter.API {
return json
}
// ParseJSONPath
func ParseJSONPath(path string) []string {
if v, has := parsePathCache.Load(path); has {
return v.([]string)
}
var reg *regexp.Regexp
reg = regexp.MustCompile(`(\[\d+\])`)
path = reg.ReplaceAllString(path, ".$1.")
reg = regexp.MustCompile(`\.+`)
path = reg.ReplaceAllString(path, ".")
path = strings.Trim(path, ".")
keys := strings.Split(path, ".")
parsePathCache.Store(path, keys)
return keys
}