-
Notifications
You must be signed in to change notification settings - Fork 0
/
scope.go
93 lines (75 loc) · 1.85 KB
/
scope.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
package mongowire
import (
"errors"
"github.com/tychoish/birch"
)
type OpScope struct {
Type OpType
Context string
Command string
Payload *birch.Document
}
func (s *OpScope) Validate() error {
switch s.Type {
case OP_COMMAND:
if s.Command == "" {
return errors.New("commands must identify a named command")
}
return nil
case OP_DELETE:
if s.Context == "" {
return errors.New("delete ops must specify a scope (dbname.collection)")
}
if s.Command != "" {
return errors.New("kill cursors cannot specify a command name")
}
return nil
case OP_UPDATE:
if s.Context == "" {
return errors.New("update ops must specify a scope (dbname.collection)")
}
if s.Command != "" {
return errors.New("updates cannot specify a command name")
}
return nil
case OP_KILL_CURSORS:
if s.Context != "" {
return errors.New("kill cursors cannot specify a scope")
}
if s.Command != "" {
return errors.New("kill cursors cannot specify a command name")
}
return nil
case OP_QUERY:
if s.Context == "" {
return errors.New("query ops must specify a scope (dbname.collection)")
}
if s.Command != "" {
return errors.New("query ops cannot specify a command name")
}
return nil
case OP_INSERT:
if s.Context == "" {
return errors.New("insert ops must specify a scope (dbname.collection)")
}
if s.Command != "" {
return errors.New("insert ops cannot specify a command name")
}
return nil
case OP_GET_MORE:
if s.Context == "" {
return errors.New("get more ops must specify a scope (dbname.collection)")
}
if s.Command != "" {
return errors.New("get more ops cannot specify a command name")
}
return nil
case OP_MSG:
if s.Command == "" {
return errors.New("msg ops must identify a command name")
}
return nil
default:
return errors.New("must specify a valid request op type")
}
}