-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest.go
54 lines (45 loc) · 1.53 KB
/
request.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
package alice
type RequestPayloadType string
const (
SimpleUtterance RequestPayloadType = "SimpleUtterance"
ButtonPressed RequestPayloadType = "ButtonPressed"
)
// https://tech.yandex.ru/dialogs/alice/doc/protocol-docpage/#request
type Request struct {
Version string `json:"version"`
Meta RequestMeta `json:"meta"`
Request RequestPayload `json:"request"`
Session RequestSession `json:"session"`
}
type RequestMeta struct {
Locale string `json:"locale"`
Timezone string `json:"timezone"`
ClientID string `json:"client_id"`
Interfaces map[string]interface{} `json:"interfaces"`
}
type RequestPayload struct {
Command string `json:"command"`
OriginalUtterance string `json:"original_utterance"`
Type RequestPayloadType `json:"type"`
Markup RequestMarkup `json:"markup"`
Payload interface{} `json:"payload,omitempty"`
NLU RequestNLU `json:"nlu"`
}
type RequestMarkup struct {
DangerousContext bool `json:"dangerous_context"`
}
type RequestNLU struct {
Tokens []string `json:"tokens"`
Entities []Entity `json:"entities"`
}
type RequestSession struct {
New bool `json:"new"`
MessageID int `json:"message_id"`
SessionID string `json:"session_id"`
SkillID string `json:"skill_id"`
UserID string `json:"user_id"`
}
// HasScreen returns true if user's device has screen.
func (m RequestMeta) HasScreen() bool {
return m.Interfaces["screen"] != nil
}