forked from emiago/diago
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdialog_server_session.go
More file actions
380 lines (319 loc) · 9.46 KB
/
dialog_server_session.go
File metadata and controls
380 lines (319 loc) · 9.46 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
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
// SPDX-License-Identifier: MPL-2.0
// SPDX-FileCopyrightText: Copyright (c) 2024, Emir Aganovic
package diago
import (
"context"
"errors"
"fmt"
"sync/atomic"
"github.com/emiago/diago/media"
"github.com/emiago/sipgo"
"github.com/emiago/sipgo/sip"
)
// DialogServerSession represents inbound channel
type DialogServerSession struct {
*sipgo.DialogServerSession
// MediaSession *media.MediaSession
DialogMedia
onReferDialog func(referDialog *DialogClientSession)
mediaConf MediaConfig
closed atomic.Uint32
}
func (d *DialogServerSession) Id() string {
return d.ID
}
func (d *DialogServerSession) Close() error {
if !d.closed.CompareAndSwap(0, 1) {
return nil
}
e1 := d.DialogMedia.Close()
e2 := d.DialogServerSession.Close()
return errors.Join(e1, e2)
}
func (d *DialogServerSession) FromUser() string {
return d.InviteRequest.From().Address.User
}
// User that was dialed
func (d *DialogServerSession) ToUser() string {
return d.InviteRequest.To().Address.User
}
func (d *DialogServerSession) Transport() string {
return d.InviteRequest.Transport()
}
func (d *DialogServerSession) Trying() error {
return d.Respond(sip.StatusTrying, "Trying", nil)
}
// Progress sends 100 trying.
//
// Deprecated: Use Trying. It will change behavior to 183 Sesion Progress in future releases
func (d *DialogServerSession) Progress() error {
return d.Respond(sip.StatusTrying, "Trying", nil)
}
// ProgressMedia sends 183 Session Progress and creates early media
//
// Experimental: Naming of API might change
func (d *DialogServerSession) ProgressMedia() error {
return d.ProgressMediaOptions(ProgressMediaOptions{})
}
type ProgressMediaOptions struct {
// Codecs that will be used
Codecs []media.Codec
// RTPNAT exposes MediaSession property
RTPNAT int
}
func (d *DialogServerSession) ProgressMediaOptions(opt ProgressMediaOptions) error {
d.updateMediaConf(opt.Codecs, opt.RTPNAT)
if err := d.initMediaSessionFromConf(d.mediaConf); err != nil {
return err
}
rtpSess := media.NewRTPSession(d.mediaSession)
if err := d.setupRTPSession(rtpSess); err != nil {
return err
}
headers := []sip.Header{sip.NewHeader("Content-Type", "application/sdp")}
body := rtpSess.Sess.LocalSDP()
if err := d.DialogServerSession.Respond(183, "Session Progress", body, headers...); err != nil {
return err
}
return rtpSess.MonitorBackground()
}
func (d *DialogServerSession) Ringing() error {
return d.Respond(sip.StatusRinging, "Ringing", nil)
}
func (d *DialogServerSession) DialogSIP() *sipgo.Dialog {
return &d.Dialog
}
func (d *DialogServerSession) RemoteContact() *sip.ContactHeader {
d.mu.Lock()
defer d.mu.Unlock()
if d.lastInvite != nil {
return d.lastInvite.Contact()
}
return d.InviteRequest.Contact()
}
func (d *DialogServerSession) RespondSDP(body []byte) error {
headers := []sip.Header{sip.NewHeader("Content-Type", "application/sdp")}
return d.DialogServerSession.Respond(200, "OK", body, headers...)
}
// Answer creates media session and answers
// After this new AudioReader and AudioWriter are created for audio manipulation
// NOTE: Not final API
func (d *DialogServerSession) Answer() error {
// Media Exists as early
if d.mediaSession != nil {
// This will now block until ACK received with 64*T1 as max.
if err := d.RespondSDP(d.mediaSession.LocalSDP()); err != nil {
return err
}
return nil
}
if err := d.initMediaSessionFromConf(d.mediaConf); err != nil {
return err
}
rtpSess := media.NewRTPSession(d.mediaSession)
return d.answerSession(rtpSess)
}
type AnswerOptions struct {
// OnMediaUpdate triggers when media update happens. It is blocking func, so make sure you exit
OnMediaUpdate func(d *DialogMedia)
OnRefer func(referDialog *DialogClientSession)
// Codecs that will be used
Codecs []media.Codec
// RTPNAT is media.MediaSession.RTPNAT
// Check media.RTPNAT... options
RTPNAT int
}
// AnswerOptions allows to answer dialog with options
// Experimental
//
// NOTE: API may change
func (d *DialogServerSession) AnswerOptions(opt AnswerOptions) error {
d.mu.Lock()
d.onReferDialog = opt.OnRefer
d.onMediaUpdate = opt.OnMediaUpdate
d.mu.Unlock()
// If media exists as early, only respond 200
if d.mediaSession != nil {
// Check do codecs match
if err := d.RespondSDP(d.mediaSession.LocalSDP()); err != nil {
return err
}
return nil
}
d.updateMediaConf(opt.Codecs, opt.RTPNAT)
if err := d.initMediaSessionFromConf(d.mediaConf); err != nil {
return err
}
rtpSess := media.NewRTPSession(d.mediaSession)
return d.answerSession(rtpSess)
}
func (d *DialogServerSession) updateMediaConf(codecs []media.Codec, rtpNAT int) {
// Let override of formats
conf := &d.mediaConf
if codecs != nil {
conf.Codecs = codecs
}
conf.rtpNAT = rtpNAT
}
// answerSession. It allows answering with custom RTP Session.
// NOTE: Not final API
func (d *DialogServerSession) answerSession(rtpSess *media.RTPSession) error {
// TODO: Use setupRTPSession
sess := rtpSess.Sess
sdp := d.InviteRequest.Body()
if sdp == nil {
return fmt.Errorf("no sdp present in INVITE")
}
if err := sess.RemoteSDP(sdp); err != nil {
return err
}
d.mu.Lock()
d.initRTPSessionUnsafe(sess, rtpSess)
// Close RTP session
d.onCloseUnsafe(func() error {
return rtpSess.Close()
})
d.mu.Unlock()
// This will now block until ACK received with 64*T1 as max.
// How to let caller to cancel this?
if err := d.RespondSDP(sess.LocalSDP()); err != nil {
return err
}
// Must be called after media and reader writer is setup
return rtpSess.MonitorBackground()
}
func (d *DialogServerSession) setupRTPSession(rtpSess *media.RTPSession) error {
sess := rtpSess.Sess
sdp := d.InviteRequest.Body()
if sdp == nil {
return fmt.Errorf("no sdp present in INVITE")
}
if err := sess.RemoteSDP(sdp); err != nil {
return err
}
d.mu.Lock()
d.initRTPSessionUnsafe(sess, rtpSess)
// Close RTP session
d.onCloseUnsafe(func() error {
return rtpSess.Close()
})
d.mu.Unlock()
return nil
}
// AnswerLate does answer with Late offer.
func (d *DialogServerSession) AnswerLate() error {
if err := d.initMediaSessionFromConf(d.mediaConf); err != nil {
return err
}
sess := d.mediaSession
rtpSess := media.NewRTPSession(sess)
localSDP := sess.LocalSDP()
d.mu.Lock()
d.initRTPSessionUnsafe(sess, rtpSess)
// Close RTP session
d.onCloseUnsafe(func() error {
return rtpSess.Close()
})
d.mu.Unlock()
// This will now block until ACK received with 64*T1 as max.
// How to let caller to cancel this?
if err := d.RespondSDP(localSDP); err != nil {
return err
}
// Must be called after media and reader writer is setup
return rtpSess.MonitorBackground()
}
func (d *DialogServerSession) ReadAck(req *sip.Request, tx sip.ServerTransaction) error {
// Check do we have some session
err := func() error {
d.mu.Lock()
defer d.mu.Unlock()
sess := d.mediaSession
if sess == nil {
return nil
}
contentType := req.ContentType()
if contentType == nil {
return nil
}
body := req.Body()
if body != nil && contentType.Value() == "application/sdp" {
// This is Late offer response
if err := sess.RemoteSDP(body); err != nil {
return err
}
}
return nil
}()
if err != nil {
e := d.Hangup(d.Context())
return errors.Join(err, e)
}
return d.DialogServerSession.ReadAck(req, tx)
}
func (d *DialogServerSession) Hangup(ctx context.Context) error {
state := d.LoadState()
if state == sip.DialogStateConfirmed {
return d.Bye(ctx)
}
return d.Respond(sip.StatusTemporarilyUnavailable, "Temporarly unavailable", nil)
}
func (d *DialogServerSession) ReInvite(ctx context.Context) error {
sdp := d.mediaSession.LocalSDP()
contact := d.RemoteContact()
req := sip.NewRequest(sip.INVITE, contact.Address)
req.AppendHeader(sip.NewHeader("Content-Type", "application/sdp"))
req.SetBody(sdp)
res, err := d.Do(ctx, req)
if err != nil {
return err
}
if !res.IsSuccess() {
return sipgo.ErrDialogResponse{
Res: res,
}
}
cont := res.Contact()
if cont == nil {
return fmt.Errorf("reinvite: no contact header present")
}
ack := sip.NewRequest(sip.ACK, cont.Address)
return d.WriteRequest(ack)
}
// Refer tries todo refer (blind transfer) on call
func (d *DialogServerSession) Refer(ctx context.Context, referTo sip.Uri, headers ...sip.Header) error {
cont := d.InviteRequest.Contact()
return dialogRefer(ctx, d, cont.Address, referTo, headers...)
}
func (d *DialogServerSession) handleReferNotify(req *sip.Request, tx sip.ServerTransaction) {
dialogHandleReferNotify(d, req, tx)
}
func (d *DialogServerSession) handleRefer(dg *Diago, req *sip.Request, tx sip.ServerTransaction) {
d.mu.Lock()
onRefDialog := d.onReferDialog
d.mu.Unlock()
if onRefDialog == nil {
tx.Respond(sip.NewResponseFromRequest(req, sip.StatusNotAcceptable, "Not Acceptable", nil))
return
}
dialogHandleRefer(d, dg, req, tx, onRefDialog)
}
func (d *DialogServerSession) handleReInvite(req *sip.Request, tx sip.ServerTransaction) error {
if err := d.ReadRequest(req, tx); err != nil {
return tx.Respond(sip.NewResponseFromRequest(req, sip.StatusBadRequest, err.Error(), nil))
}
return d.handleMediaUpdate(req, tx, d.InviteResponse.Contact())
}
func (d *DialogServerSession) readSIPInfoDTMF(req *sip.Request, tx sip.ServerTransaction) error {
return tx.Respond(sip.NewResponseFromRequest(req, sip.StatusNotAcceptable, "Not Acceptable", nil))
// if err := d.ReadRequest(req, tx); err != nil {
// tx.Respond(sip.NewResponseFromRequest(req, sip.StatusBadRequest, "Bad Request", nil))
// return
// }
// Parse this
//Signal=1
// Duration=160
// reader := bytes.NewReader(req.Body())
// for {
// }
}