forked from rocketlaunchr/dbq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helpers.igo
315 lines (257 loc) · 7.05 KB
/
helpers.igo
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
// Copyright 2019-20 PJ Engineering and Business Solutions Pty. Ltd. All rights reserved.
package dbq
import (
"errors"
"fmt"
"reflect"
"strconv"
"strings"
"time"
"cloud.google.com/go/civil"
)
// Database is used to set the Database.
// Different databases have different syntax for placeholders etc.
type Database int
const (
// MySQL database
MySQL Database = 0
// PostgreSQL database
PostgreSQL Database = 1
)
// INSERT will generate an INSERT statement.
//
// NOTE: You may have to escape the column names. For MySQL, use backticks.
func INSERT(tableName string, columns []string, rows int, dbtype ...Database) string {
return fmt.Sprintf("INSERT INTO %s ( %s ) VALUES %s", tableName, strings.Join(columns, ","), Ph(len(columns), rows, 0, dbtype...))
}
// Ph generates the placeholders for SQL queries.
// For a bulk insert operation, rows is the number of rows you intend
// to insert, and columnsN is the number of fields per row.
// For the IN function, set rows to 1.
// For PostgreSQL, you can use incr to increment the placeholder starting count.
//
// NOTE: The function panics if either columnsN or rows is 0.
//
// Example:
//
// dbq.Ph(3, 1, 0)
// // Output: ( ?,?,? )
//
// dbq.Ph(3, 2, 0)
// // Output: ( ?,?,? ),( ?,?,? )
//
func Ph(columnsN, rows int, incr int, dbtype ...Database) string {
var typ Database
if len(dbtype) > 0 {
typ = dbtype[0]
}
if columnsN == 0 {
panic(errors.New("columnsN must not be 0"))
}
if rows == 0 {
panic(errors.New("rows must not be 0"))
}
if typ == MySQL {
inner := "( " + strings.TrimSuffix(strings.Repeat("?,", columnsN), ",") + " ),"
return strings.TrimSuffix(strings.Repeat(inner, rows), ",")
}
var singleValuesStr string
varCount := 1 + incr
for i := 1; i <= rows; i++ {
singleValuesStr = singleValuesStr + "("
for j := 1; j <= columnsN; j++ {
singleValuesStr = singleValuesStr + fmt.Sprintf("$%d,", varCount)
varCount++
}
singleValuesStr = strings.TrimSuffix(singleValuesStr, ",") + "),"
}
return strings.TrimSuffix(singleValuesStr, ",")
}
func sliceConv(arg reflect.Value) []interface{} {
out := []interface{}{}
if arg.Kind() == reflect.Slice {
for i := 0; i < arg.Len(); i++ {
out = append(out, sliceConv(reflect.ValueOf(arg.Index(i).Interface()))...)
}
} else {
out = append(out, arg.Interface())
}
return out
}
// StdTimeConversionConfig provides a standard configuration for unmarshaling to
// time-related fields in a struct. It properly converts timestamps and datetime columns into
// time.Time objects. It assumes a MySQL database as default.
func StdTimeConversionConfig(dbtype ...Database) *StructorConfig {
layouts := []string{
"2006-01-02 15:04:05", // MySQL
time.RFC3339, // PostgreSQL
}
if len(dbtype) > 0 && dbtype[0] == PostgreSQL {
// Swap preferences
layouts[0], layouts[1] = layouts[1], layouts[0]
}
return &StructorConfig{
WeaklyTypedInput: true,
DecodeHook: func(f reflect.Type, t reflect.Type, data interface{}) (interface{}, error) {
if f.Kind() != reflect.String {
return data, nil
}
switch t {
case reflect.TypeOf(civil.Date{}):
return civil.ParseDate(data.(string))
case reflect.TypeOf(civil.DateTime{}):
t, err := time.Parse(layouts[0], data.(string))
if err != nil {
t, err = time.Parse(layouts[1], data.(string))
if err != nil {
return nil, err
}
}
return civil.DateTime{
Date: civil.DateOf(t),
Time: civil.TimeOf(t),
}, nil
case reflect.TypeOf(civil.Time{}):
return civil.ParseTime(data.(string))
case reflect.TypeOf(time.Time{}):
t, err := time.Parse(layouts[0], data.(string))
if err != nil {
t, err := time.Parse(layouts[1], data.(string))
if err != nil {
return nil, err
}
return t, nil
}
return t, nil
default:
return data, nil
}
return data, nil
},
}
}
// Struct converts the fields of the struct into a slice of values.
// You can use it to convert a struct into the placeholder arguments required by
// the Q and E function. tagName is used to indicate the struct tag (default is "dbq").
// The function panics if strct is not an actual struct.
func Struct(strct interface{}, tagName ...string) []interface{} {
tg := "dbq"
if len(tagName) > 0 {
tg = tagName[0]
}
out := []interface{}{}
if strct == nil {
panic(errors.New("strct must be a struct"))
}
s := reflect.ValueOf(strct)
// Check if s is a pointer
if s.Kind() == reflect.Ptr {
s = reflect.Indirect(s)
}
typeOfT := s.Type()
for i := 0; i < s.NumField(); i++ {
f := typeOfT.Field(i)
if f.PkgPath != "" {
// Not exported
continue
}
fieldTag := f.Tag.Get(tg)
fieldValRaw := s.Field(i)
fieldVal := fieldValRaw.Interface()
// Ignore maps
if fieldValRaw.Kind() == reflect.Map {
continue
}
// Check if json parser would ordinarily hide the value anyway
if fieldTag == "-" || (strings.HasSuffix(fieldTag, ",omitempty") && reflect.DeepEqual(fieldVal, reflect.Zero(reflect.TypeOf(fieldVal)).Interface())) {
continue
}
// slices - treat specially
if fieldValRaw.Kind() == reflect.Slice {
out = append(out, sliceConv(fieldValRaw)...)
continue
}
out = append(out, fieldVal)
}
return out
}
func parseUintP(s string) *uint {
n, _ := strconv.ParseUint(s, 10, 0)
return &[]uint{uint(n)}[0]
}
func parseUint8P(s string) *uint8 {
n, _ := strconv.ParseUint(s, 10, 8)
return &[]uint8{uint8(n)}[0]
}
func parseUint16P(s string) *uint16 {
n, _ := strconv.ParseUint(s, 10, 16)
return &[]uint16{uint16(n)}[0]
}
func parseUint32P(s string) *uint32 {
n, _ := strconv.ParseUint(s, 10, 32)
return &[]uint32{uint32(n)}[0]
}
func parseUint64P(s string) *uint64 {
n, _ := strconv.ParseUint(s, 10, 64)
return &[]uint64{uint64(n)}[0]
}
func parseIntP(s string) *int {
n, _ := strconv.ParseInt(s, 10, 0)
return &[]int{int(n)}[0]
}
func parseInt8P(s string) *int8 {
n, _ := strconv.ParseInt(s, 10, 8)
return &[]int8{int8(n)}[0]
}
func parseInt16P(s string) *int16 {
n, _ := strconv.ParseInt(s, 10, 16)
return &[]int16{int16(n)}[0]
}
func parseInt32P(s string) *int32 {
n, _ := strconv.ParseInt(s, 10, 32)
return &[]int32{int32(n)}[0]
}
func parseInt64P(s string) *int64 {
n, _ := strconv.ParseInt(s, 10, 64)
return &[]int64{int64(n)}[0]
}
func parseUint(s string) uint {
n, _ := strconv.ParseUint(s, 10, 0)
return uint(n)
}
func parseUint8(s string) uint8 {
n, _ := strconv.ParseUint(s, 10, 8)
return uint8(n)
}
func parseUint16(s string) uint16 {
n, _ := strconv.ParseUint(s, 10, 16)
return uint16(n)
}
func parseUint32(s string) uint32 {
n, _ := strconv.ParseUint(s, 10, 32)
return uint32(n)
}
func parseUint64(s string) uint64 {
n, _ := strconv.ParseUint(s, 10, 64)
return n
}
func parseInt(s string) int {
n, _ := strconv.ParseInt(s, 10, 0)
return int(n)
}
func parseInt8(s string) int8 {
n, _ := strconv.ParseInt(s, 10, 8)
return int8(n)
}
func parseInt16(s string) int16 {
n, _ := strconv.ParseInt(s, 10, 16)
return int16(n)
}
func parseInt32(s string) int32 {
n, _ := strconv.ParseInt(s, 10, 32)
return int32(n)
}
func parseInt64(s string) int64 {
n, _ := strconv.ParseInt(s, 10, 64)
return n
}