-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhelpers.go
103 lines (90 loc) · 2.31 KB
/
helpers.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
package resolvers
import (
"encoding/base64"
"errors"
"strconv"
"github.com/jinzhu/gorm"
"github.com/ossn/ossn-backend/models"
)
func validateFirstAndLast(first, last *int) error {
switch {
case (first == nil && last == nil):
return errors.New("Please provide first or last param")
case (first != nil && last != nil):
return errors.New("Please provide only first or only last")
case (first != nil && *first > 100) || (last != nil && *last > 100):
return errors.New("First and last can't exceed 100")
default:
return nil
}
}
func max(first, second *int) *int {
switch {
case first == nil:
return second
case second == nil:
return first
case *first > *second:
return first
case *first < *second:
return second
default:
zero := 0
return &zero
}
}
func parseBase64Str(str *string) (int, error) {
decoded, err := base64.StdEncoding.DecodeString(*str)
if err != nil {
return 0, err
}
num, err := strconv.Atoi(string(decoded[:]))
return num, err
}
func parseParams(query *gorm.DB, first, last *int, before, after *string, orederByCol string) (*gorm.DB, error) {
l := 0
if first != nil {
query = query.Order("id desc, " + orederByCol + " desc")
l = *first
}
if last != nil {
query = query.Order("id asc, " + orederByCol + " asc")
l = *last
}
query = query.Limit(l + 1)
if after != nil {
id, err := parseBase64Str(after)
if err != nil {
return query, errors.New("Invalid after option")
}
query = query.Where("id > ?", id)
}
if before != nil {
id, err := parseBase64Str(before)
if err != nil {
return query, errors.New("Invalid before option")
}
query = query.Where("id < ?", id)
}
return query, nil
}
func getPageInfo(count *int, firstID, lastID *uint, first, last *int, length int) models.PageInfo {
hasNext := false
hasPrev := false
endCursor := base64.StdEncoding.EncodeToString([]byte(strconv.FormatUint(uint64(*firstID), 10)))
startCursor := base64.StdEncoding.EncodeToString([]byte(strconv.FormatUint(uint64(*lastID), 10)))
switch {
case first != nil:
hasNext = length == (*first + 1)
case last != nil:
hasPrev = length == (*last + 1)
endCursor, startCursor = startCursor, endCursor
}
return models.PageInfo{
TotalCount: *count,
HasPreviousPage: hasPrev,
HasNextPage: hasNext,
EndCursor: endCursor,
StartCursor: startCursor,
}
}