forked from abourget/ari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.go
273 lines (237 loc) · 5.93 KB
/
messages.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
package ari
import "encoding/json"
// Package models implements the Asterisk ARI Messages structures. See https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+REST+Data+Models
type StasisStart struct {
Event
Args []string
Channel *Channel
ReplaceChannel *Channel `json:"replace_channel"`
}
type StasisEnd struct {
Event
Channel *Channel
}
type ChannelVarset struct {
Event
Channel *Channel // optionnal
Value string
Variable string
}
type BridgeCreated struct {
Event
Bridge *Bridge
}
type BridgeDestroyed struct {
Event
Bridge *Bridge
}
type BridgeMerged struct {
Event
Bridge *Bridge
BridgeFrom *Bridge `json:"bridge_from"`
}
type BridgeBlindTransfer struct {
Event
Bridge *Bridge
Channel *Channel
Context string
Exten string
IsExternal bool `json:"is_external"`
ReplaceChannel *Channel `json:"replace_channel"`
Result string
Transferee *Channel
}
type BridgeAttendedTransfer struct {
Event
DestinationApplication string `json:"destination_application"`
DestinationBridge string `json:"destination_bridge"`
DestinationLinkFirstLeg *Channel `json:"destination_link_first_leg"`
DestinationLinkSecondLeg *Channel `json:"destination_link_second_leg"`
DestinationThreeWayBridge *Bridge `json:"destination_three_way_bridge"`
DestinationThreeWayChannel *Channel `json:"destination_three_way_channel"`
DestinationType string `json:"destination_type"`
IsExternal bool `json:"is_external"`
ReplaceChannel *Channel `json:"replace_channel"`
Result string
TransferTarget *Channel `json:"transfer_target"`
Transferee *Channel
TransfererFirstLeg *Channel `json:"transferer_first_leg"`
TransfererFirstLegBridge *Bridge `json:"transferer_first_leg_bridge"`
TransfererSecondLeg *Channel `json:"transferer_second_leg"`
TransfererSecondLegBridge *Bridge `json:"transferer_second_leg_bridge"`
}
type ChannelHangupRequest struct {
Event
Cause int
Channel *Channel
Soft bool
}
type ChannelDtmfReceived struct {
Event
Channel *Channel
Digit string
DurationMs int `json:"duration_ms"`
}
type ChannelTalkingStarted struct {
Event
Channel *Channel
}
type ChannelTalkingFinished struct {
Event
Channel *Channel
Duration int64
}
type ChannelStateChange struct {
Event
Channel *Channel
}
type ChannelEnteredBridge struct {
Event
Bridge *Bridge
Channel *Channel
}
type ChannelLeftBridge struct {
Event
Bridge *Bridge
Channel *Channel
}
type ChannelDialplan struct {
Event
Channel *Channel
DialplanApp string `json:"dialplan_app"`
DialplanAppData string `json:"dialplan_app_data"`
}
type ChannelCallerID struct {
Event
CallerPresentation int64 `json:"caller_presentation"`
CallerPresentationTxt string `json:"caller_presentation_txt"`
Channel *Channel
}
type ChannelCreated struct {
Event
Channel *Channel
}
type ChannelConnectedLine struct {
Event
Channel *Channel
}
type ChannelDestroyed struct {
Event
Channel *Channel
Cause int64
CauseTxt string `json:"cause_txt"`
}
type PlaybackStarted struct {
Event
Playback *Playback
}
type PlaybackFinished struct {
Event
Playback *Playback
}
type DeviceStateChanged struct {
Event
DeviceState *DeviceState `json:"device_state"`
}
type PeerStatusChange struct {
Event
Endpoint *Endpoint `json:"endpoint"`
Peer *Peer `json:"peer"`
}
type RecordingFailed struct {
Event
Recording *LiveRecording `json:"recording"`
}
type RecordingFinished struct {
Event
Recording *LiveRecording `json:"recording"`
}
type RecordingStarted struct {
Event
Recording *LiveRecording `json:"recording"`
}
type EndpointStateChange struct {
Event
Endpoint *Endpoint `json:"endpoint"`
}
//
// AsteriskInfo-related
//
// AriConnected is an Go library specific message, indicating a successful WebSocket connection.
type AriConnected struct {
Event
Reconnections int
}
// AriDisonnected is an Go library specific message, indicating an error or a disconnection of the WebSocket connection.
type AriDisconnected struct {
Event
}
func parseMsg(raw []byte) (Eventer, error) {
var event Event
err := json.Unmarshal(raw, &event)
if err != nil {
return nil, err
}
var msg Eventer
switch event.Type {
case "ChannelVarset":
msg = &ChannelVarset{}
case "ChannelDtmfReceived":
msg = &ChannelDtmfReceived{}
case "ChannelHangupRequest":
msg = &ChannelHangupRequest{}
case "ChannelConnectedLine":
msg = &ChannelConnectedLine{}
case "StasisStart":
msg = &StasisStart{}
case "PlaybackStarted":
msg = &PlaybackStarted{}
case "PlaybackFinished":
msg = &PlaybackFinished{}
case "ChannelTalkingStarted":
msg = &ChannelTalkingStarted{}
case "ChannelTalkingFinished":
msg = &ChannelTalkingFinished{}
case "ChannelDialplan":
msg = &ChannelDialplan{}
case "ChannelCallerId":
msg = &ChannelCallerID{}
case "ChannelStateChange":
msg = &ChannelStateChange{}
case "ChannelEnteredBridge":
msg = &ChannelEnteredBridge{}
case "ChannelLeftBridge":
msg = &ChannelLeftBridge{}
case "ChannelCreated":
msg = &ChannelCreated{}
case "ChannelDestroyed":
msg = &ChannelDestroyed{}
case "BridgeCreated":
msg = &BridgeCreated{}
case "BridgeDestroyed":
msg = &BridgeDestroyed{}
case "BridgeMerged":
msg = &BridgeMerged{}
case "BridgeBlindTransfer":
msg = &BridgeBlindTransfer{}
case "BridgeAttendedTransfer":
msg = &BridgeAttendedTransfer{}
case "DeviceStateChanged":
msg = &DeviceStateChanged{}
case "StasisEnd":
msg = &StasisEnd{}
case "PeerStatusChange":
msg = &PeerStatusChange{}
case "RecordingFailed":
msg = &RecordingFailed{}
case "RecordingFinished":
msg = &RecordingFinished{}
case "RecordingStarted":
msg = &RecordingStarted{}
case "EndpointStateChange":
msg = &EndpointStateChange{}
default:
return &event, nil
}
return msg, json.Unmarshal(raw, msg)
}