blob: 378dcdbf09e95afba5ea760919803e80ef29fadd (
plain) (
blame)
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
|
//go:generate genny -in=pagers_template.go -out=pager_bug.go gen "NodeType=bug.Snapshot EdgeType=BugEdge"
//go:generate genny -in=pagers_template.go -out=pager_operation.go gen "NodeType=bug.Operation EdgeType=OperationEdge"
//go:generate genny -in=pagers_template.go -out=pager_comment.go gen "NodeType=bug.Comment EdgeType=CommentEdge"
package resolvers
import (
"encoding/base64"
"fmt"
"strconv"
"strings"
)
const cursorPrefix = "cursor:"
type Edge interface {
GetCursor() string
}
// Creates the cursor string from an offset
func offsetToCursor(offset int) string {
str := fmt.Sprintf("%v%v", cursorPrefix, offset)
return base64.StdEncoding.EncodeToString([]byte(str))
}
// Re-derives the offset from the cursor string.
func cursorToOffset(cursor string) (int, error) {
str := ""
b, err := base64.StdEncoding.DecodeString(cursor)
if err == nil {
str = string(b)
}
str = strings.Replace(str, cursorPrefix, "", -1)
offset, err := strconv.Atoi(str)
if err != nil {
return 0, fmt.Errorf("Invalid cursor")
}
return offset, nil
}
func (e OperationEdge) GetCursor() string {
return e.Cursor
}
func (e BugEdge) GetCursor() string {
return e.Cursor
}
func (e CommentEdge) GetCursor() string {
return e.Cursor
}
|