forked from abourget/ari
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessages.go
More file actions
163 lines (138 loc) · 3.5 KB
/
Copy pathmessages.go
File metadata and controls
163 lines (138 loc) · 3.5 KB
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
package ari
// 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 ChannelDestroyed struct {
Event
Channel *Channel
Cause int64
CauseTxt string `json:"cause_txt"`
}
type PlaybackStarted struct {
Event
Playback *Playback
}
type PlaybackFinished struct {
Event
Playback *Playback
}
//
// 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
}