-
Notifications
You must be signed in to change notification settings - Fork 178
/
get_events.go
86 lines (72 loc) · 2.47 KB
/
get_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
package request
import (
"fmt"
"regexp"
"github.com/onflow/flow-go/model/flow"
)
const eventTypeQuery = "type"
const blockQuery = "block_ids"
const MaxEventRequestHeightRange = 250
type GetEvents struct {
StartHeight uint64
EndHeight uint64
Type string
BlockIDs []flow.Identifier
}
func (g *GetEvents) Build(r *Request) error {
return g.Parse(
r.GetQueryParam(eventTypeQuery),
r.GetQueryParam(startHeightQuery),
r.GetQueryParam(endHeightQuery),
r.GetQueryParams(blockQuery),
)
}
func (g *GetEvents) Parse(rawType string, rawStart string, rawEnd string, rawBlockIDs []string) error {
var height Height
err := height.Parse(rawStart)
if err != nil {
return fmt.Errorf("invalid start height: %w", err)
}
g.StartHeight = height.Flow()
err = height.Parse(rawEnd)
if err != nil {
return fmt.Errorf("invalid end height: %w", err)
}
g.EndHeight = height.Flow()
var blockIDs IDs
err = blockIDs.Parse(rawBlockIDs)
if err != nil {
return err
}
g.BlockIDs = blockIDs.Flow()
// if both height and one or both of start and end height are provided
if len(blockIDs) > 0 && (g.StartHeight != EmptyHeight || g.EndHeight != EmptyHeight) {
return fmt.Errorf("can only provide either block IDs or start and end height range")
}
// if neither height nor start and end height are provided
if len(blockIDs) == 0 && (g.StartHeight == EmptyHeight || g.EndHeight == EmptyHeight) {
return fmt.Errorf("must provide either block IDs or start and end height range")
}
g.Type = rawType
if g.Type == "" {
return fmt.Errorf("event type must be provided")
}
// match basic format A.address.contract.event (ignore err since regex will always compile)
basic, _ := regexp.MatchString(`[A-Z]\.[a-f0-9]{16}\.[\w+]*\.[\w+]*`, g.Type)
// match core events flow.event
core, _ := regexp.MatchString(`flow\.[\w]*`, g.Type)
if !core && !basic {
return fmt.Errorf("invalid event type format")
}
// validate start end height option
if g.StartHeight != EmptyHeight && g.EndHeight != EmptyHeight {
if g.StartHeight > g.EndHeight {
return fmt.Errorf("start height must be less than or equal to end height")
}
// check if range exceeds maximum but only if end is not equal to special value which is not known yet
if g.EndHeight-g.StartHeight >= MaxEventRequestHeightRange && g.EndHeight != FinalHeight && g.EndHeight != SealedHeight {
return fmt.Errorf("height range %d exceeds maximum allowed of %d", g.EndHeight-g.StartHeight, MaxEventRequestHeightRange)
}
}
return nil
}