mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
42 lines
1.3 KiB
Go
42 lines
1.3 KiB
Go
//go:generate genny -in=connection_template.go -out=gen_bug.go gen "NodeType=string EdgeType=LazyBugEdge ConnectionType=models.BugConnection"
|
|
//go:generate genny -in=connection_template.go -out=gen_operation.go gen "NodeType=bug.Operation EdgeType=models.OperationEdge ConnectionType=models.OperationConnection"
|
|
//go:generate genny -in=connection_template.go -out=gen_comment.go gen "NodeType=bug.Comment EdgeType=models.CommentEdge ConnectionType=models.CommentConnection"
|
|
|
|
// Package connections implement a generic GraphQL relay connection
|
|
package connections
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
const cursorPrefix = "cursor:"
|
|
|
|
// Edge define the contract for an edge in a relay connection
|
|
type Edge interface {
|
|
GetCursor() string
|
|
}
|
|
|
|
// OffsetToCursor create the cursor string from an offset
|
|
func OffsetToCursor(offset int) string {
|
|
str := fmt.Sprintf("%v%v", cursorPrefix, offset)
|
|
return base64.StdEncoding.EncodeToString([]byte(str))
|
|
}
|
|
|
|
// CursorToOffset 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
|
|
}
|