forked from botlabs-gg/yagpdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scheduled_events.go
852 lines (700 loc) · 28 KB
/
scheduled_events.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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
// Code generated by SQLBoiler (https://github.com/volatiletech/sqlboiler). DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package models
import (
"context"
"database/sql"
"fmt"
"reflect"
"strconv"
"strings"
"sync"
"time"
"github.com/pkg/errors"
"github.com/volatiletech/sqlboiler/boil"
"github.com/volatiletech/sqlboiler/queries"
"github.com/volatiletech/sqlboiler/queries/qm"
"github.com/volatiletech/sqlboiler/queries/qmhelper"
"github.com/volatiletech/sqlboiler/strmangle"
"github.com/volatiletech/sqlboiler/types"
)
// ScheduledEvent is an object representing the database table.
type ScheduledEvent struct {
ID int64 `boil:"id" json:"id" toml:"id" yaml:"id"`
CreatedAt time.Time `boil:"created_at" json:"created_at" toml:"created_at" yaml:"created_at"`
TriggersAt time.Time `boil:"triggers_at" json:"triggers_at" toml:"triggers_at" yaml:"triggers_at"`
RetryOnError bool `boil:"retry_on_error" json:"retry_on_error" toml:"retry_on_error" yaml:"retry_on_error"`
GuildID int64 `boil:"guild_id" json:"guild_id" toml:"guild_id" yaml:"guild_id"`
EventName string `boil:"event_name" json:"event_name" toml:"event_name" yaml:"event_name"`
Data types.JSON `boil:"data" json:"data" toml:"data" yaml:"data"`
Processed bool `boil:"processed" json:"processed" toml:"processed" yaml:"processed"`
R *scheduledEventR `boil:"-" json:"-" toml:"-" yaml:"-"`
L scheduledEventL `boil:"-" json:"-" toml:"-" yaml:"-"`
}
var ScheduledEventColumns = struct {
ID string
CreatedAt string
TriggersAt string
RetryOnError string
GuildID string
EventName string
Data string
Processed string
}{
ID: "id",
CreatedAt: "created_at",
TriggersAt: "triggers_at",
RetryOnError: "retry_on_error",
GuildID: "guild_id",
EventName: "event_name",
Data: "data",
Processed: "processed",
}
// Generated where
type whereHelperint64 struct{ field string }
func (w whereHelperint64) EQ(x int64) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.EQ, x) }
func (w whereHelperint64) NEQ(x int64) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.NEQ, x) }
func (w whereHelperint64) LT(x int64) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.LT, x) }
func (w whereHelperint64) LTE(x int64) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.LTE, x) }
func (w whereHelperint64) GT(x int64) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.GT, x) }
func (w whereHelperint64) GTE(x int64) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.GTE, x) }
type whereHelpertime_Time struct{ field string }
func (w whereHelpertime_Time) EQ(x time.Time) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.EQ, x)
}
func (w whereHelpertime_Time) NEQ(x time.Time) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.NEQ, x)
}
func (w whereHelpertime_Time) LT(x time.Time) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.LT, x)
}
func (w whereHelpertime_Time) LTE(x time.Time) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.LTE, x)
}
func (w whereHelpertime_Time) GT(x time.Time) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.GT, x)
}
func (w whereHelpertime_Time) GTE(x time.Time) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.GTE, x)
}
type whereHelperbool struct{ field string }
func (w whereHelperbool) EQ(x bool) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.EQ, x) }
func (w whereHelperbool) NEQ(x bool) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.NEQ, x) }
func (w whereHelperbool) LT(x bool) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.LT, x) }
func (w whereHelperbool) LTE(x bool) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.LTE, x) }
func (w whereHelperbool) GT(x bool) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.GT, x) }
func (w whereHelperbool) GTE(x bool) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.GTE, x) }
type whereHelperstring struct{ field string }
func (w whereHelperstring) EQ(x string) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.EQ, x) }
func (w whereHelperstring) NEQ(x string) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.NEQ, x) }
func (w whereHelperstring) LT(x string) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.LT, x) }
func (w whereHelperstring) LTE(x string) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.LTE, x) }
func (w whereHelperstring) GT(x string) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.GT, x) }
func (w whereHelperstring) GTE(x string) qm.QueryMod { return qmhelper.Where(w.field, qmhelper.GTE, x) }
type whereHelpertypes_JSON struct{ field string }
func (w whereHelpertypes_JSON) EQ(x types.JSON) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.EQ, x)
}
func (w whereHelpertypes_JSON) NEQ(x types.JSON) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.NEQ, x)
}
func (w whereHelpertypes_JSON) LT(x types.JSON) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.LT, x)
}
func (w whereHelpertypes_JSON) LTE(x types.JSON) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.LTE, x)
}
func (w whereHelpertypes_JSON) GT(x types.JSON) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.GT, x)
}
func (w whereHelpertypes_JSON) GTE(x types.JSON) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.GTE, x)
}
var ScheduledEventWhere = struct {
ID whereHelperint64
CreatedAt whereHelpertime_Time
TriggersAt whereHelpertime_Time
RetryOnError whereHelperbool
GuildID whereHelperint64
EventName whereHelperstring
Data whereHelpertypes_JSON
Processed whereHelperbool
}{
ID: whereHelperint64{field: `id`},
CreatedAt: whereHelpertime_Time{field: `created_at`},
TriggersAt: whereHelpertime_Time{field: `triggers_at`},
RetryOnError: whereHelperbool{field: `retry_on_error`},
GuildID: whereHelperint64{field: `guild_id`},
EventName: whereHelperstring{field: `event_name`},
Data: whereHelpertypes_JSON{field: `data`},
Processed: whereHelperbool{field: `processed`},
}
// ScheduledEventRels is where relationship names are stored.
var ScheduledEventRels = struct {
}{}
// scheduledEventR is where relationships are stored.
type scheduledEventR struct {
}
// NewStruct creates a new relationship struct
func (*scheduledEventR) NewStruct() *scheduledEventR {
return &scheduledEventR{}
}
// scheduledEventL is where Load methods for each relationship are stored.
type scheduledEventL struct{}
var (
scheduledEventColumns = []string{"id", "created_at", "triggers_at", "retry_on_error", "guild_id", "event_name", "data", "processed"}
scheduledEventColumnsWithoutDefault = []string{"created_at", "triggers_at", "retry_on_error", "guild_id", "event_name", "data", "processed"}
scheduledEventColumnsWithDefault = []string{"id"}
scheduledEventPrimaryKeyColumns = []string{"id"}
)
type (
// ScheduledEventSlice is an alias for a slice of pointers to ScheduledEvent.
// This should generally be used opposed to []ScheduledEvent.
ScheduledEventSlice []*ScheduledEvent
scheduledEventQuery struct {
*queries.Query
}
)
// Cache for insert, update and upsert
var (
scheduledEventType = reflect.TypeOf(&ScheduledEvent{})
scheduledEventMapping = queries.MakeStructMapping(scheduledEventType)
scheduledEventPrimaryKeyMapping, _ = queries.BindMapping(scheduledEventType, scheduledEventMapping, scheduledEventPrimaryKeyColumns)
scheduledEventInsertCacheMut sync.RWMutex
scheduledEventInsertCache = make(map[string]insertCache)
scheduledEventUpdateCacheMut sync.RWMutex
scheduledEventUpdateCache = make(map[string]updateCache)
scheduledEventUpsertCacheMut sync.RWMutex
scheduledEventUpsertCache = make(map[string]insertCache)
)
var (
// Force time package dependency for automated UpdatedAt/CreatedAt.
_ = time.Second
// Force qmhelper dependency for where clause generation (which doesn't
// always happen)
_ = qmhelper.Where
)
// OneG returns a single scheduledEvent record from the query using the global executor.
func (q scheduledEventQuery) OneG(ctx context.Context) (*ScheduledEvent, error) {
return q.One(ctx, boil.GetContextDB())
}
// One returns a single scheduledEvent record from the query.
func (q scheduledEventQuery) One(ctx context.Context, exec boil.ContextExecutor) (*ScheduledEvent, error) {
o := &ScheduledEvent{}
queries.SetLimit(q.Query, 1)
err := q.Bind(ctx, exec, o)
if err != nil {
if errors.Cause(err) == sql.ErrNoRows {
return nil, sql.ErrNoRows
}
return nil, errors.Wrap(err, "models: failed to execute a one query for scheduled_events")
}
return o, nil
}
// AllG returns all ScheduledEvent records from the query using the global executor.
func (q scheduledEventQuery) AllG(ctx context.Context) (ScheduledEventSlice, error) {
return q.All(ctx, boil.GetContextDB())
}
// All returns all ScheduledEvent records from the query.
func (q scheduledEventQuery) All(ctx context.Context, exec boil.ContextExecutor) (ScheduledEventSlice, error) {
var o []*ScheduledEvent
err := q.Bind(ctx, exec, &o)
if err != nil {
return nil, errors.Wrap(err, "models: failed to assign all query results to ScheduledEvent slice")
}
return o, nil
}
// CountG returns the count of all ScheduledEvent records in the query, and panics on error.
func (q scheduledEventQuery) CountG(ctx context.Context) (int64, error) {
return q.Count(ctx, boil.GetContextDB())
}
// Count returns the count of all ScheduledEvent records in the query.
func (q scheduledEventQuery) Count(ctx context.Context, exec boil.ContextExecutor) (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRowContext(ctx, exec).Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "models: failed to count scheduled_events rows")
}
return count, nil
}
// ExistsG checks if the row exists in the table, and panics on error.
func (q scheduledEventQuery) ExistsG(ctx context.Context) (bool, error) {
return q.Exists(ctx, boil.GetContextDB())
}
// Exists checks if the row exists in the table.
func (q scheduledEventQuery) Exists(ctx context.Context, exec boil.ContextExecutor) (bool, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
queries.SetLimit(q.Query, 1)
err := q.Query.QueryRowContext(ctx, exec).Scan(&count)
if err != nil {
return false, errors.Wrap(err, "models: failed to check if scheduled_events exists")
}
return count > 0, nil
}
// ScheduledEvents retrieves all the records using an executor.
func ScheduledEvents(mods ...qm.QueryMod) scheduledEventQuery {
mods = append(mods, qm.From("\"scheduled_events\""))
return scheduledEventQuery{NewQuery(mods...)}
}
// FindScheduledEventG retrieves a single record by ID.
func FindScheduledEventG(ctx context.Context, iD int64, selectCols ...string) (*ScheduledEvent, error) {
return FindScheduledEvent(ctx, boil.GetContextDB(), iD, selectCols...)
}
// FindScheduledEvent retrieves a single record by ID with an executor.
// If selectCols is empty Find will return all columns.
func FindScheduledEvent(ctx context.Context, exec boil.ContextExecutor, iD int64, selectCols ...string) (*ScheduledEvent, error) {
scheduledEventObj := &ScheduledEvent{}
sel := "*"
if len(selectCols) > 0 {
sel = strings.Join(strmangle.IdentQuoteSlice(dialect.LQ, dialect.RQ, selectCols), ",")
}
query := fmt.Sprintf(
"select %s from \"scheduled_events\" where \"id\"=$1", sel,
)
q := queries.Raw(query, iD)
err := q.Bind(ctx, exec, scheduledEventObj)
if err != nil {
if errors.Cause(err) == sql.ErrNoRows {
return nil, sql.ErrNoRows
}
return nil, errors.Wrap(err, "models: unable to select from scheduled_events")
}
return scheduledEventObj, nil
}
// InsertG a single record. See Insert for whitelist behavior description.
func (o *ScheduledEvent) InsertG(ctx context.Context, columns boil.Columns) error {
return o.Insert(ctx, boil.GetContextDB(), columns)
}
// Insert a single record using an executor.
// See boil.Columns.InsertColumnSet documentation to understand column list inference for inserts.
func (o *ScheduledEvent) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error {
if o == nil {
return errors.New("models: no scheduled_events provided for insertion")
}
var err error
if !boil.TimestampsAreSkipped(ctx) {
currTime := time.Now().In(boil.GetLocation())
if o.CreatedAt.IsZero() {
o.CreatedAt = currTime
}
}
nzDefaults := queries.NonZeroDefaultSet(scheduledEventColumnsWithDefault, o)
key := makeCacheKey(columns, nzDefaults)
scheduledEventInsertCacheMut.RLock()
cache, cached := scheduledEventInsertCache[key]
scheduledEventInsertCacheMut.RUnlock()
if !cached {
wl, returnColumns := columns.InsertColumnSet(
scheduledEventColumns,
scheduledEventColumnsWithDefault,
scheduledEventColumnsWithoutDefault,
nzDefaults,
)
cache.valueMapping, err = queries.BindMapping(scheduledEventType, scheduledEventMapping, wl)
if err != nil {
return err
}
cache.retMapping, err = queries.BindMapping(scheduledEventType, scheduledEventMapping, returnColumns)
if err != nil {
return err
}
if len(wl) != 0 {
cache.query = fmt.Sprintf("INSERT INTO \"scheduled_events\" (\"%s\") %%sVALUES (%s)%%s", strings.Join(wl, "\",\""), strmangle.Placeholders(dialect.UseIndexPlaceholders, len(wl), 1, 1))
} else {
cache.query = "INSERT INTO \"scheduled_events\" %sDEFAULT VALUES%s"
}
var queryOutput, queryReturning string
if len(cache.retMapping) != 0 {
queryReturning = fmt.Sprintf(" RETURNING \"%s\"", strings.Join(returnColumns, "\",\""))
}
cache.query = fmt.Sprintf(cache.query, queryOutput, queryReturning)
}
value := reflect.Indirect(reflect.ValueOf(o))
vals := queries.ValuesFromMapping(value, cache.valueMapping)
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, cache.query)
fmt.Fprintln(boil.DebugWriter, vals)
}
if len(cache.retMapping) != 0 {
err = exec.QueryRowContext(ctx, cache.query, vals...).Scan(queries.PtrsFromMapping(value, cache.retMapping)...)
} else {
_, err = exec.ExecContext(ctx, cache.query, vals...)
}
if err != nil {
return errors.Wrap(err, "models: unable to insert into scheduled_events")
}
if !cached {
scheduledEventInsertCacheMut.Lock()
scheduledEventInsertCache[key] = cache
scheduledEventInsertCacheMut.Unlock()
}
return nil
}
// UpdateG a single ScheduledEvent record using the global executor.
// See Update for more documentation.
func (o *ScheduledEvent) UpdateG(ctx context.Context, columns boil.Columns) (int64, error) {
return o.Update(ctx, boil.GetContextDB(), columns)
}
// Update uses an executor to update the ScheduledEvent.
// See boil.Columns.UpdateColumnSet documentation to understand column list inference for updates.
// Update does not automatically update the record in case of default values. Use .Reload() to refresh the records.
func (o *ScheduledEvent) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error) {
var err error
key := makeCacheKey(columns, nil)
scheduledEventUpdateCacheMut.RLock()
cache, cached := scheduledEventUpdateCache[key]
scheduledEventUpdateCacheMut.RUnlock()
if !cached {
wl := columns.UpdateColumnSet(
scheduledEventColumns,
scheduledEventPrimaryKeyColumns,
)
if !columns.IsWhitelist() {
wl = strmangle.SetComplement(wl, []string{"created_at"})
}
if len(wl) == 0 {
return 0, errors.New("models: unable to update scheduled_events, could not build whitelist")
}
cache.query = fmt.Sprintf("UPDATE \"scheduled_events\" SET %s WHERE %s",
strmangle.SetParamNames("\"", "\"", 1, wl),
strmangle.WhereClause("\"", "\"", len(wl)+1, scheduledEventPrimaryKeyColumns),
)
cache.valueMapping, err = queries.BindMapping(scheduledEventType, scheduledEventMapping, append(wl, scheduledEventPrimaryKeyColumns...))
if err != nil {
return 0, err
}
}
values := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(o)), cache.valueMapping)
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, cache.query)
fmt.Fprintln(boil.DebugWriter, values)
}
var result sql.Result
result, err = exec.ExecContext(ctx, cache.query, values...)
if err != nil {
return 0, errors.Wrap(err, "models: unable to update scheduled_events row")
}
rowsAff, err := result.RowsAffected()
if err != nil {
return 0, errors.Wrap(err, "models: failed to get rows affected by update for scheduled_events")
}
if !cached {
scheduledEventUpdateCacheMut.Lock()
scheduledEventUpdateCache[key] = cache
scheduledEventUpdateCacheMut.Unlock()
}
return rowsAff, nil
}
// UpdateAllG updates all rows with the specified column values.
func (q scheduledEventQuery) UpdateAllG(ctx context.Context, cols M) (int64, error) {
return q.UpdateAll(ctx, boil.GetContextDB(), cols)
}
// UpdateAll updates all rows with the specified column values.
func (q scheduledEventQuery) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error) {
queries.SetUpdate(q.Query, cols)
result, err := q.Query.ExecContext(ctx, exec)
if err != nil {
return 0, errors.Wrap(err, "models: unable to update all for scheduled_events")
}
rowsAff, err := result.RowsAffected()
if err != nil {
return 0, errors.Wrap(err, "models: unable to retrieve rows affected for scheduled_events")
}
return rowsAff, nil
}
// UpdateAllG updates all rows with the specified column values.
func (o ScheduledEventSlice) UpdateAllG(ctx context.Context, cols M) (int64, error) {
return o.UpdateAll(ctx, boil.GetContextDB(), cols)
}
// UpdateAll updates all rows with the specified column values, using an executor.
func (o ScheduledEventSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error) {
ln := int64(len(o))
if ln == 0 {
return 0, nil
}
if len(cols) == 0 {
return 0, errors.New("models: update all requires at least one column argument")
}
colNames := make([]string, len(cols))
args := make([]interface{}, len(cols))
i := 0
for name, value := range cols {
colNames[i] = name
args[i] = value
i++
}
// Append all of the primary key values for each column
for _, obj := range o {
pkeyArgs := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(obj)), scheduledEventPrimaryKeyMapping)
args = append(args, pkeyArgs...)
}
sql := fmt.Sprintf("UPDATE \"scheduled_events\" SET %s WHERE %s",
strmangle.SetParamNames("\"", "\"", 1, colNames),
strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), len(colNames)+1, scheduledEventPrimaryKeyColumns, len(o)))
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, sql)
fmt.Fprintln(boil.DebugWriter, args...)
}
result, err := exec.ExecContext(ctx, sql, args...)
if err != nil {
return 0, errors.Wrap(err, "models: unable to update all in scheduledEvent slice")
}
rowsAff, err := result.RowsAffected()
if err != nil {
return 0, errors.Wrap(err, "models: unable to retrieve rows affected all in update all scheduledEvent")
}
return rowsAff, nil
}
// UpsertG attempts an insert, and does an update or ignore on conflict.
func (o *ScheduledEvent) UpsertG(ctx context.Context, updateOnConflict bool, conflictColumns []string, updateColumns, insertColumns boil.Columns) error {
return o.Upsert(ctx, boil.GetContextDB(), updateOnConflict, conflictColumns, updateColumns, insertColumns)
}
// Upsert attempts an insert using an executor, and does an update or ignore on conflict.
// See boil.Columns documentation for how to properly use updateColumns and insertColumns.
func (o *ScheduledEvent) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, conflictColumns []string, updateColumns, insertColumns boil.Columns) error {
if o == nil {
return errors.New("models: no scheduled_events provided for upsert")
}
if !boil.TimestampsAreSkipped(ctx) {
currTime := time.Now().In(boil.GetLocation())
if o.CreatedAt.IsZero() {
o.CreatedAt = currTime
}
}
nzDefaults := queries.NonZeroDefaultSet(scheduledEventColumnsWithDefault, o)
// Build cache key in-line uglily - mysql vs psql problems
buf := strmangle.GetBuffer()
if updateOnConflict {
buf.WriteByte('t')
} else {
buf.WriteByte('f')
}
buf.WriteByte('.')
for _, c := range conflictColumns {
buf.WriteString(c)
}
buf.WriteByte('.')
buf.WriteString(strconv.Itoa(updateColumns.Kind))
for _, c := range updateColumns.Cols {
buf.WriteString(c)
}
buf.WriteByte('.')
buf.WriteString(strconv.Itoa(insertColumns.Kind))
for _, c := range insertColumns.Cols {
buf.WriteString(c)
}
buf.WriteByte('.')
for _, c := range nzDefaults {
buf.WriteString(c)
}
key := buf.String()
strmangle.PutBuffer(buf)
scheduledEventUpsertCacheMut.RLock()
cache, cached := scheduledEventUpsertCache[key]
scheduledEventUpsertCacheMut.RUnlock()
var err error
if !cached {
insert, ret := insertColumns.InsertColumnSet(
scheduledEventColumns,
scheduledEventColumnsWithDefault,
scheduledEventColumnsWithoutDefault,
nzDefaults,
)
update := updateColumns.UpdateColumnSet(
scheduledEventColumns,
scheduledEventPrimaryKeyColumns,
)
if updateOnConflict && len(update) == 0 {
return errors.New("models: unable to upsert scheduled_events, could not build update column list")
}
conflict := conflictColumns
if len(conflict) == 0 {
conflict = make([]string, len(scheduledEventPrimaryKeyColumns))
copy(conflict, scheduledEventPrimaryKeyColumns)
}
cache.query = buildUpsertQueryPostgres(dialect, "\"scheduled_events\"", updateOnConflict, ret, update, conflict, insert)
cache.valueMapping, err = queries.BindMapping(scheduledEventType, scheduledEventMapping, insert)
if err != nil {
return err
}
if len(ret) != 0 {
cache.retMapping, err = queries.BindMapping(scheduledEventType, scheduledEventMapping, ret)
if err != nil {
return err
}
}
}
value := reflect.Indirect(reflect.ValueOf(o))
vals := queries.ValuesFromMapping(value, cache.valueMapping)
var returns []interface{}
if len(cache.retMapping) != 0 {
returns = queries.PtrsFromMapping(value, cache.retMapping)
}
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, cache.query)
fmt.Fprintln(boil.DebugWriter, vals)
}
if len(cache.retMapping) != 0 {
err = exec.QueryRowContext(ctx, cache.query, vals...).Scan(returns...)
if err == sql.ErrNoRows {
err = nil // Postgres doesn't return anything when there's no update
}
} else {
_, err = exec.ExecContext(ctx, cache.query, vals...)
}
if err != nil {
return errors.Wrap(err, "models: unable to upsert scheduled_events")
}
if !cached {
scheduledEventUpsertCacheMut.Lock()
scheduledEventUpsertCache[key] = cache
scheduledEventUpsertCacheMut.Unlock()
}
return nil
}
// DeleteG deletes a single ScheduledEvent record.
// DeleteG will match against the primary key column to find the record to delete.
func (o *ScheduledEvent) DeleteG(ctx context.Context) (int64, error) {
return o.Delete(ctx, boil.GetContextDB())
}
// Delete deletes a single ScheduledEvent record with an executor.
// Delete will match against the primary key column to find the record to delete.
func (o *ScheduledEvent) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error) {
if o == nil {
return 0, errors.New("models: no ScheduledEvent provided for delete")
}
args := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(o)), scheduledEventPrimaryKeyMapping)
sql := "DELETE FROM \"scheduled_events\" WHERE \"id\"=$1"
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, sql)
fmt.Fprintln(boil.DebugWriter, args...)
}
result, err := exec.ExecContext(ctx, sql, args...)
if err != nil {
return 0, errors.Wrap(err, "models: unable to delete from scheduled_events")
}
rowsAff, err := result.RowsAffected()
if err != nil {
return 0, errors.Wrap(err, "models: failed to get rows affected by delete for scheduled_events")
}
return rowsAff, nil
}
// DeleteAll deletes all matching rows.
func (q scheduledEventQuery) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) {
if q.Query == nil {
return 0, errors.New("models: no scheduledEventQuery provided for delete all")
}
queries.SetDelete(q.Query)
result, err := q.Query.ExecContext(ctx, exec)
if err != nil {
return 0, errors.Wrap(err, "models: unable to delete all from scheduled_events")
}
rowsAff, err := result.RowsAffected()
if err != nil {
return 0, errors.Wrap(err, "models: failed to get rows affected by deleteall for scheduled_events")
}
return rowsAff, nil
}
// DeleteAllG deletes all rows in the slice.
func (o ScheduledEventSlice) DeleteAllG(ctx context.Context) (int64, error) {
return o.DeleteAll(ctx, boil.GetContextDB())
}
// DeleteAll deletes all rows in the slice, using an executor.
func (o ScheduledEventSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) {
if o == nil {
return 0, errors.New("models: no ScheduledEvent slice provided for delete all")
}
if len(o) == 0 {
return 0, nil
}
var args []interface{}
for _, obj := range o {
pkeyArgs := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(obj)), scheduledEventPrimaryKeyMapping)
args = append(args, pkeyArgs...)
}
sql := "DELETE FROM \"scheduled_events\" WHERE " +
strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 1, scheduledEventPrimaryKeyColumns, len(o))
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, sql)
fmt.Fprintln(boil.DebugWriter, args)
}
result, err := exec.ExecContext(ctx, sql, args...)
if err != nil {
return 0, errors.Wrap(err, "models: unable to delete all from scheduledEvent slice")
}
rowsAff, err := result.RowsAffected()
if err != nil {
return 0, errors.Wrap(err, "models: failed to get rows affected by deleteall for scheduled_events")
}
return rowsAff, nil
}
// ReloadG refetches the object from the database using the primary keys.
func (o *ScheduledEvent) ReloadG(ctx context.Context) error {
if o == nil {
return errors.New("models: no ScheduledEvent provided for reload")
}
return o.Reload(ctx, boil.GetContextDB())
}
// Reload refetches the object from the database
// using the primary keys with an executor.
func (o *ScheduledEvent) Reload(ctx context.Context, exec boil.ContextExecutor) error {
ret, err := FindScheduledEvent(ctx, exec, o.ID)
if err != nil {
return err
}
*o = *ret
return nil
}
// ReloadAllG refetches every row with matching primary key column values
// and overwrites the original object slice with the newly updated slice.
func (o *ScheduledEventSlice) ReloadAllG(ctx context.Context) error {
if o == nil {
return errors.New("models: empty ScheduledEventSlice provided for reload all")
}
return o.ReloadAll(ctx, boil.GetContextDB())
}
// ReloadAll refetches every row with matching primary key column values
// and overwrites the original object slice with the newly updated slice.
func (o *ScheduledEventSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error {
if o == nil || len(*o) == 0 {
return nil
}
slice := ScheduledEventSlice{}
var args []interface{}
for _, obj := range *o {
pkeyArgs := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(obj)), scheduledEventPrimaryKeyMapping)
args = append(args, pkeyArgs...)
}
sql := "SELECT \"scheduled_events\".* FROM \"scheduled_events\" WHERE " +
strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 1, scheduledEventPrimaryKeyColumns, len(*o))
q := queries.Raw(sql, args...)
err := q.Bind(ctx, exec, &slice)
if err != nil {
return errors.Wrap(err, "models: unable to reload all in ScheduledEventSlice")
}
*o = slice
return nil
}
// ScheduledEventExistsG checks if the ScheduledEvent row exists.
func ScheduledEventExistsG(ctx context.Context, iD int64) (bool, error) {
return ScheduledEventExists(ctx, boil.GetContextDB(), iD)
}
// ScheduledEventExists checks if the ScheduledEvent row exists.
func ScheduledEventExists(ctx context.Context, exec boil.ContextExecutor, iD int64) (bool, error) {
var exists bool
sql := "select exists(select 1 from \"scheduled_events\" where \"id\"=$1 limit 1)"
if boil.DebugMode {
fmt.Fprintln(boil.DebugWriter, sql)
fmt.Fprintln(boil.DebugWriter, iD)
}
row := exec.QueryRowContext(ctx, sql, iD)
err := row.Scan(&exists)
if err != nil {
return false, errors.Wrap(err, "models: unable to check if scheduled_events exists")
}
return exists, nil
}