-
Notifications
You must be signed in to change notification settings - Fork 73
/
channel.go
518 lines (404 loc) · 14.4 KB
/
channel.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
package ari
import (
"encoding/json"
"strings"
"time"
ptypes "github.com/gogo/protobuf/types"
"github.com/pkg/errors"
)
// Channel represents a communication path interacting with an Asterisk server.
type Channel interface {
// Get returns a handle to a channel for further interaction
Get(key *Key) *ChannelHandle
// GetVariable retrieves the value of a channel variable
GetVariable(*Key, string) (string, error)
// List lists the channels in asterisk, optionally using the key for filtering
List(*Key) ([]*Key, error)
// Originate creates a new channel, returning a handle to it or an error, if
// the creation failed.
// The Key should be that of the linked channel, if one exists, so that the
// Node can be matches to it.
Originate(*Key, OriginateRequest) (*ChannelHandle, error)
// StageOriginate creates a new Originate, created when the `Exec` method
// on `ChannelHandle` is invoked.
// The Key should be that of the linked channel, if one exists, so that the
// Node can be matches to it.
StageOriginate(*Key, OriginateRequest) (*ChannelHandle, error)
// Create creates a new channel, returning a handle to it or an
// error, if the creation failed. Create is already Staged via `Dial`.
// The Key should be that of the linked channel, if one exists, so that the
// Node can be matches to it.
Create(*Key, ChannelCreateRequest) (*ChannelHandle, error)
// Data returns the channel data for a given channel
Data(key *Key) (*ChannelData, error)
// Continue tells Asterisk to return a channel to the dialplan
Continue(key *Key, context, extension string, priority int) error
// Busy hangs up the channel with the "busy" cause code
Busy(key *Key) error
// Congestion hangs up the channel with the "congestion" cause code
Congestion(key *Key) error
// Answer answers the channel
Answer(key *Key) error
// Hangup hangs up the given channel
Hangup(key *Key, reason string) error
// Ring indicates ringing to the channel
Ring(key *Key) error
// StopRing stops ringing on the channel
StopRing(key *Key) error
// SendDTMF sends DTMF to the channel
SendDTMF(key *Key, dtmf string, opts *DTMFOptions) error
// Hold puts the channel on hold
Hold(key *Key) error
// StopHold retrieves the channel from hold
StopHold(key *Key) error
// Mute mutes a channel in the given direction (in,out,both)
Mute(key *Key, dir Direction) error
// Unmute unmutes a channel in the given direction (in,out,both)
Unmute(key *Key, dir Direction) error
// MOH plays music on hold
MOH(key *Key, moh string) error
// SetVariable sets a channel variable
SetVariable(key *Key, name, value string) error
// StopMOH stops music on hold
StopMOH(key *Key) error
// Silence plays silence to the channel
Silence(key *Key) error
// StopSilence stops the silence on the channel
StopSilence(key *Key) error
// Play plays the media URI to the channel
Play(key *Key, playbackID string, mediaURI string) (*PlaybackHandle, error)
// StagePlay stages a `Play` operation and returns the `PlaybackHandle`
// for invoking it.
StagePlay(key *Key, playbackID string, mediaURI string) (*PlaybackHandle, error)
// Record records the channel
Record(key *Key, name string, opts *RecordingOptions) (*LiveRecordingHandle, error)
// StageRecord stages a `Record` operation and returns the `PlaybackHandle`
// for invoking it.
StageRecord(key *Key, name string, opts *RecordingOptions) (*LiveRecordingHandle, error)
// Dial dials a created channel
Dial(key *Key, caller string, timeout time.Duration) error
// Snoop spies on a specific channel, creating a new snooping channel
Snoop(key *Key, snoopID string, opts *SnoopOptions) (*ChannelHandle, error)
// StageSnoop creates a new `ChannelHandle`, when `Exec`ed, snoops on the given channel ID and
// creates a new snooping channel.
StageSnoop(key *Key, snoopID string, opts *SnoopOptions) (*ChannelHandle, error)
// Subscribe subscribes on the channel events
Subscribe(key *Key, n ...string) Subscription
}
// channelDataJSON is the data for a specific channel
type channelDataJSON struct {
// Key is the unique identifier for a channel in the cluster
Key *Key `json:"key,omitempty"`
ID string `json:"id"` // Unique id for this channel (same as for AMI)
Name string `json:"name"` // Name of this channel (tech/name-id format)
State string `json:"state"` // State of the channel
Accountcode string `json:"accountcode"`
Caller *CallerID `json:"caller"` // CallerId of the calling endpoint
Connected *CallerID `json:"connected"` // CallerId of the connected line
Creationtime DateTime `json:"creationtime"`
Dialplan *DialplanCEP `json:"dialplan"` // Current location in the dialplan
ChannelVars map[string]string `json:"channelvars"`
}
// MarshalJSON encodes ChannelData to JSON
func (d *ChannelData) MarshalJSON() ([]byte, error) {
t, err := ptypes.TimestampFromProto(d.Creationtime)
if err != nil {
Logger.Debug("ignoring failed creationtime timestamp parsing", "error", err)
}
return json.Marshal(&channelDataJSON{
Key: d.Key,
ID: d.ID,
Name: d.Name,
State: d.State,
Accountcode: d.Accountcode,
Caller: d.Caller,
Connected: d.Connected,
Creationtime: DateTime(t),
Dialplan: d.Dialplan,
ChannelVars: d.ChannelVars,
})
}
// UnmarshalJSON decodes ChannelData from JSON
func (d *ChannelData) UnmarshalJSON(data []byte) error {
in := new(channelDataJSON)
err := json.Unmarshal(data, in)
if err != nil {
return err
}
t, err := ptypes.TimestampProto(time.Time(in.Creationtime))
if err != nil {
Logger.Debug("ignoring failed creationtime timestamp parsing", "error", err)
}
*d = ChannelData{
Key: in.Key,
ID: in.ID,
Name: in.Name,
State: in.State,
Accountcode: in.Accountcode,
Caller: in.Caller,
Connected: in.Connected,
Creationtime: t,
Dialplan: in.Dialplan,
ChannelVars: in.ChannelVars,
}
return nil
}
// ChannelCreateRequest describes how a channel should be created, when
// using the separate Create and Dial calls.
type ChannelCreateRequest struct {
// Endpoint is the target endpoint for the dial
Endpoint string `json:"endpoint"`
// App is the name of the Stasis application to execute on connection
App string `json:"app"`
// AppArgs is the set of (comma-separated) arguments for the Stasis App
AppArgs string `json:"appArgs,omitempty"`
// ChannelID is the ID to give to the newly-created channel
ChannelID string `json:"channelId,omitempty"`
// OtherChannelID is the ID of the second created channel (when creating Local channels)
OtherChannelID string `json:"otherChannelId,omitempty"`
// Originator is the unique ID of the calling channel, for which this new channel-dial is being created
Originator string `json:"originator,omitempty"`
// Formats is the comma-separated list of valid codecs to allow for the new channel, in the case that
// the Originator is not specified
Formats string `json:"formats,omitempty"`
}
// SnoopOptions enumerates the non-required arguments for the snoop operation
type SnoopOptions struct {
// App is the ARI application into which the newly-created Snoop channel should be dropped.
App string `json:"app"`
// AppArgs is the set of arguments to pass with the newly-created Snoop channel's entry into ARI.
AppArgs string `json:"appArgs,omitempty"`
// Spy describes the direction of audio on which to spy (none, in, out, both).
// The default is 'none'.
Spy Direction `json:"spy,omitempty"`
// Whisper describes the direction of audio on which to send (none, in, out, both).
// The default is 'none'.
Whisper Direction `json:"whisper,omitempty"`
}
// ChannelHandle provides a wrapper on the Channel interface for operations on a particular channel ID.
type ChannelHandle struct {
key *Key
c Channel
exec func(ch *ChannelHandle) error
executed bool
}
// NewChannelHandle returns a handle to the given ARI channel
func NewChannelHandle(key *Key, c Channel, exec func(ch *ChannelHandle) error) *ChannelHandle {
return &ChannelHandle{
key: key,
c: c,
exec: exec,
}
}
// ID returns the identifier for the channel handle
func (ch *ChannelHandle) ID() string {
return ch.key.ID
}
// Key returns the key for the channel handle
func (ch *ChannelHandle) Key() *Key {
return ch.key
}
// Exec executes any staged channel operations attached to this handle.
func (ch *ChannelHandle) Exec() (err error) {
if !ch.executed {
ch.executed = true
if ch.exec != nil {
err = ch.exec(ch)
ch.exec = nil
}
}
return err
}
// Data returns the channel's data
func (ch *ChannelHandle) Data() (*ChannelData, error) {
return ch.c.Data(ch.key)
}
// Continue tells Asterisk to return the channel to the dialplan
func (ch *ChannelHandle) Continue(context, extension string, priority int) error {
return ch.c.Continue(ch.key, context, extension, priority)
}
//---
// Play/Record operations
//---
// Play initiates playback of the specified media uri
// to the channel, returning the Playback handle
func (ch *ChannelHandle) Play(id string, mediaURI string) (ph *PlaybackHandle, err error) {
return ch.c.Play(ch.key, id, mediaURI)
}
// Record records the channel to the given filename
func (ch *ChannelHandle) Record(name string, opts *RecordingOptions) (*LiveRecordingHandle, error) {
return ch.c.Record(ch.key, name, opts)
}
// StagePlay stages a `Play` operation.
func (ch *ChannelHandle) StagePlay(id string, mediaURI string) (*PlaybackHandle, error) {
return ch.c.StagePlay(ch.key, id, mediaURI)
}
// StageRecord stages a `Record` operation
func (ch *ChannelHandle) StageRecord(name string, opts *RecordingOptions) (*LiveRecordingHandle, error) {
return ch.c.StageRecord(ch.key, name, opts)
}
//---
// Hangup Operations
//---
// Busy hangs up the channel with the "busy" cause code
func (ch *ChannelHandle) Busy() error {
return ch.c.Busy(ch.key)
}
// Congestion hangs up the channel with the congestion cause code
func (ch *ChannelHandle) Congestion() error {
return ch.c.Congestion(ch.key)
}
// Hangup hangs up the channel with the normal cause code
func (ch *ChannelHandle) Hangup() error {
return ch.c.Hangup(ch.key, "normal")
}
//--
// --
// Answer operations
// --
// Answer answers the channel
func (ch *ChannelHandle) Answer() error {
return ch.c.Answer(ch.key)
}
// IsAnswered checks the current state of the channel to see if it is "Up"
func (ch *ChannelHandle) IsAnswered() (bool, error) {
updated, err := ch.Data()
if err != nil {
return false, errors.Wrap(err, "Failed to get updated channel")
}
return strings.ToLower(updated.State) == "up", nil
}
// ------
// --
// Ring Operations
// --
// Ring indicates ringing to the channel
func (ch *ChannelHandle) Ring() error {
return ch.c.Ring(ch.key)
}
// StopRing stops ringing on the channel
func (ch *ChannelHandle) StopRing() error {
return ch.c.StopRing(ch.key)
}
// ------
// --
// Mute operations
// --
// Mute mutes the channel in the given direction (in, out, both)
func (ch *ChannelHandle) Mute(dir Direction) (err error) {
if dir == "" {
dir = DirectionIn
}
return ch.c.Mute(ch.key, dir)
}
// Unmute unmutes the channel in the given direction (in, out, both)
func (ch *ChannelHandle) Unmute(dir Direction) (err error) {
if dir == "" {
dir = DirectionIn
}
return ch.c.Unmute(ch.key, dir)
}
// ----
// --
// Hold operations
// --
// Hold puts the channel on hold
func (ch *ChannelHandle) Hold() error {
return ch.c.Hold(ch.key)
}
// StopHold retrieves the channel from hold
func (ch *ChannelHandle) StopHold() error {
return ch.c.StopHold(ch.key)
}
// ----
// --
// Music on hold operations
// --
// MOH plays music on hold of the given class
// to the channel
func (ch *ChannelHandle) MOH(mohClass string) error {
return ch.c.MOH(ch.key, mohClass)
}
// StopMOH stops playing of music on hold to the channel
func (ch *ChannelHandle) StopMOH() error {
return ch.c.StopMOH(ch.key)
}
// ----
// GetVariable returns the value of a channel variable
func (ch *ChannelHandle) GetVariable(name string) (string, error) {
return ch.c.GetVariable(ch.key, name)
}
// SetVariable sets the value of a channel variable
func (ch *ChannelHandle) SetVariable(name, value string) error {
return ch.c.SetVariable(ch.key, name, value)
}
// --
// Misc
// --
// Originate creates (and dials) a new channel using the present channel as its Originator.
func (ch *ChannelHandle) Originate(req OriginateRequest) (*ChannelHandle, error) {
if req.Originator == "" {
req.Originator = ch.ID()
}
return ch.c.Originate(ch.key, req)
}
// StageOriginate stages an originate (channel creation and dial) to be Executed later.
func (ch *ChannelHandle) StageOriginate(req OriginateRequest) (*ChannelHandle, error) {
if req.Originator == "" {
req.Originator = ch.ID()
}
return ch.c.StageOriginate(ch.key, req)
}
// Create creates (but does not dial) a new channel, using the present channel as its Originator.
func (ch *ChannelHandle) Create(req ChannelCreateRequest) (*ChannelHandle, error) {
if req.Originator == "" {
req.Originator = ch.ID()
}
return ch.c.Create(ch.key, req)
}
// Dial dials a created channel. `caller` is the optional
// channel ID of the calling party (if there is one). Timeout
// is the length of time to wait before the dial is answered
// before aborting.
func (ch *ChannelHandle) Dial(caller string, timeout time.Duration) error {
return ch.c.Dial(ch.key, caller, timeout)
}
// Snoop spies on a specific channel, creating a new snooping channel placed into the given app
func (ch *ChannelHandle) Snoop(snoopID string, opts *SnoopOptions) (*ChannelHandle, error) {
return ch.c.Snoop(ch.key, snoopID, opts)
}
// StageSnoop stages a `Snoop` operation
func (ch *ChannelHandle) StageSnoop(snoopID string, opts *SnoopOptions) (*ChannelHandle, error) {
return ch.c.StageSnoop(ch.key, snoopID, opts)
}
// ----
// --
// Silence operations
// --
// Silence plays silence to the channel
func (ch *ChannelHandle) Silence() error {
return ch.c.Silence(ch.key)
}
// StopSilence stops silence to the channel
func (ch *ChannelHandle) StopSilence() error {
return ch.c.StopSilence(ch.key)
}
// ----
// --
// Subscription
// --
// Subscribe subscribes the list of channel events
func (ch *ChannelHandle) Subscribe(n ...string) Subscription {
if ch == nil {
return nil
}
return ch.c.Subscribe(ch.key, n...)
}
// TODO: rest of ChannelHandle
// --
// DTMF
// --
// SendDTMF sends the DTMF information to the server
func (ch *ChannelHandle) SendDTMF(dtmf string, opts *DTMFOptions) error {
return ch.c.SendDTMF(ch.key, dtmf, opts)
}