-
Notifications
You must be signed in to change notification settings - Fork 9
/
intents.go
169 lines (146 loc) · 4.39 KB
/
intents.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package apiai
import (
"encoding/json"
"fmt"
"net/http"
)
type Data struct {
Text string `json:"text"`
Meta string `json:"meta"`
Alias string `json:"alias"`
UserDefined bool `json:"userDefined"`
}
type UserSays struct {
Id string `json:"id"`
Data []Data `json:"data"`
IsTemplate bool `json:"isTemplate"`
Count int `json:"count"`
}
type IntentParameter struct {
Name string `json:"name"`
Value string `json:"value"`
DefaultValue string `json:"defaultValue"`
Required bool `json:"required"`
DataType string `json:"dataType"`
Prompts []string `json:"prompts"`
IsList bool `json:"isList"`
}
type IntentResponse struct {
Action string `json:"action"`
ResetContexts bool `json:"resetContexts"`
AffectedContexts []Context `json:"affectedContexts"`
Params []IntentParameter `json:"parameters"`
Messages []Message `json:"messages"`
}
type CortanaCommand struct {
NavigateOrService string `json:"navigateOrService"`
Target string `json:"target"`
}
type Intent struct {
Id string `json:"id"`
Name string `json:"name"`
Auto bool `json:"auto"`
Contexts []string `json:"contexts"`
Templates []string `json:"templates"`
UserSays []UserSays `json:"userSays"`
Responses []IntentResponse `json:"responses"`
Priority int `json:"priority"`
WebhookUsed bool `json:"webhookUsed"`
WebhookForSlotFilling bool `json:"webhookForSlotFilling"`
FallbackIntent bool `json:"fallbackIntent"`
CortanaCommand CortanaCommand `json:"cortanaCommand"`
Events []Event `json:"events"`
}
type IntentDescription struct {
Id string `json:"id"`
Name string `json:"name"`
ContextIn []string `json:"contextIn"`
ContextOut []Context `json:"contextOut"`
Actions []string `json:"actions"`
Params []IntentParameter `json:"parameters"`
Priority int `json:"priority"`
FallbackIntent bool `json:"fallbackIntent"`
}
func (c *ApiClient) GetIntents() ([]IntentDescription, error) {
resp, err := c.getApiaiResponse(http.MethodGet, "intents", nil, nil)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var intents []IntentDescription
switch resp.StatusCode {
case http.StatusOK:
decoder := json.NewDecoder(resp.Body)
err = decoder.Decode(&intents)
if err != nil {
return nil, err
}
return intents, nil
default:
return nil, fmt.Errorf(DefaultErrorMsg, resp.StatusCode)
}
}
func (c *ApiClient) GetIntent(id string) (*Intent, error) {
resp, err := c.getApiaiResponse(http.MethodGet, "intents/"+id, nil, nil)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var intent *Intent
switch resp.StatusCode {
case http.StatusOK:
decoder := json.NewDecoder(resp.Body)
err = decoder.Decode(&intent)
if err != nil {
return nil, err
}
return intent, nil
default:
return nil, fmt.Errorf(DefaultErrorMsg, resp.StatusCode)
}
}
func (c *ApiClient) CreateIntent(intent Intent) (*CreationResponse, error) {
resp, err := c.getApiaiResponse(http.MethodPost, "intents", nil, intent)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var cr *CreationResponse
switch resp.StatusCode {
case http.StatusOK:
decoder := json.NewDecoder(resp.Body)
err = decoder.Decode(&cr)
if err != nil {
return nil, err
}
return cr, nil
default:
return nil, fmt.Errorf(DefaultErrorMsg, resp.StatusCode)
}
}
func (c *ApiClient) UpdateIntent(id string, intent Intent) error {
resp, err := c.getApiaiResponse(http.MethodPut, "intents/"+id, nil, intent)
if err != nil {
return err
}
defer resp.Body.Close()
switch resp.StatusCode {
case http.StatusOK:
return nil
default:
return fmt.Errorf(DefaultErrorMsg, resp.StatusCode)
}
}
func (c *ApiClient) DeleteIntent(id string) error {
resp, err := c.getApiaiResponse(http.MethodDelete, "intents/"+id, nil, nil)
if err != nil {
return err
}
defer resp.Body.Close()
switch resp.StatusCode {
case http.StatusOK:
return nil
default:
return fmt.Errorf(DefaultErrorMsg, resp.StatusCode)
}
}