-
Notifications
You must be signed in to change notification settings - Fork 17
/
endpoint.go
246 lines (216 loc) · 5.55 KB
/
endpoint.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
package main
import (
"fmt"
"time"
"github.com/stefankopieczek/gossip/base"
"github.com/stefankopieczek/gossip/log"
"github.com/stefankopieczek/gossip/transaction"
)
type endpoint struct {
// Sip Params
displayName string
username string
host string
// Transport Params
port uint16 // Listens on this port.
transport string // Sends using this transport. ("tcp" or "udp")
// Internal guts
tm *transaction.Manager
dialog dialog
dialogIx int
}
type dialog struct {
callId string
to_tag string // The tag in the To header.
from_tag string // The tag in the From header.
currentTx txInfo // The current transaction.
cseq uint32
}
type txInfo struct {
tx transaction.Transaction // The underlying transaction.
branch string // The via branch.
}
func (e *endpoint) Start() error {
tm, err := transaction.NewManager(e.transport, fmt.Sprintf("%v:%v", e.host, e.port))
if err != nil {
return err
}
e.tm = tm
return nil
}
func (e *endpoint) ClearDialog() {
caller.dialog = dialog{}
}
func (caller *endpoint) Invite(callee *endpoint) error {
// Starting a dialog.
callid := "thisisacall" + string(caller.dialogIx)
tag := "tag." + caller.username + "." + caller.host
branch := "z9hG4bK.callbranch.INVITE"
caller.dialog.callId = callid
caller.dialog.from_tag = tag
caller.dialog.currentTx = txInfo{}
caller.dialog.currentTx.branch = branch
invite := base.NewRequest(
base.INVITE,
&base.SipUri{
User: &callee.username,
Host: callee.host,
},
"SIP/2.0",
[]base.SipHeader{
Via(caller, branch),
To(callee, caller.dialog.to_tag),
From(caller, caller.dialog.from_tag),
Contact(caller),
CSeq(caller.dialog.cseq, base.INVITE),
CallId(callid),
ContentLength(0),
},
"",
)
caller.dialog.cseq += 1
log.Info("Sending: %v", invite.Short())
tx := caller.tm.Send(invite, fmt.Sprintf("%v:%v", callee.host, callee.port))
caller.dialog.currentTx.tx = transaction.Transaction(tx)
for {
select {
case r := <-tx.Responses():
log.Info("Received response: %v", r.Short())
log.Debug("Full form:\n%v\n", r.String())
// Get To tag if present.
tag, ok := r.Headers("To")[0].(*base.ToHeader).Params["tag"]
if ok {
caller.dialog.to_tag = *tag
}
switch {
case r.StatusCode >= 300:
// Call setup failed.
return fmt.Errorf("callee sent negative response code %v.", r.StatusCode)
case r.StatusCode >= 200:
// Ack 200s manually.
log.Info("Sending Ack")
tx.Ack()
return nil
}
case e := <-tx.Errors():
log.Warn(e.Error())
return e
}
}
}
func (caller *endpoint) Bye(callee *endpoint) error {
return caller.nonInvite(callee, base.BYE)
}
func (caller *endpoint) nonInvite(callee *endpoint, method base.Method) error {
caller.dialog.currentTx.branch = "z9hG4bK.callbranch." + string(method)
request := base.NewRequest(
method,
&base.SipUri{
User: &callee.username,
Host: callee.host,
},
"SIP/2.0",
[]base.SipHeader{
Via(caller, caller.dialog.currentTx.branch),
To(callee, caller.dialog.to_tag),
From(caller, caller.dialog.from_tag),
Contact(caller),
CSeq(caller.dialog.cseq, method),
CallId(caller.dialog.callId),
ContentLength(0),
},
"",
)
caller.dialog.cseq += 1
log.Info("Sending: %v", request.Short())
tx := caller.tm.Send(request, fmt.Sprintf("%v:%v", callee.host, callee.port))
caller.dialog.currentTx.tx = transaction.Transaction(tx)
for {
select {
case r := <-tx.Responses():
log.Info("Received response: %v", r.Short())
log.Debug("Full form:\n%v\n", r.String())
switch {
case r.StatusCode >= 300:
// Failure (or redirect).
return fmt.Errorf("callee sent negative response code %v.", r.StatusCode)
case r.StatusCode >= 200:
// Success.
log.Info("Successful transaction")
return nil
}
case e := <-tx.Errors():
log.Warn(e.Error())
return e
}
}
}
// Server side function.
func (e *endpoint) ServeInvite() {
log.Info("Listening for incoming requests...")
tx := <-e.tm.Requests()
r := tx.Origin()
log.Info("Received request: %v", r.Short())
log.Debug("Full form:\n%v\n", r.String())
e.dialog.callId = string(*r.Headers("Call-Id")[0].(*base.CallId))
// Send a 200 OK
resp := base.NewResponse(
"SIP/2.0",
200,
"OK",
[]base.SipHeader{},
"",
)
base.CopyHeaders("Via", tx.Origin(), resp)
base.CopyHeaders("From", tx.Origin(), resp)
base.CopyHeaders("To", tx.Origin(), resp)
base.CopyHeaders("Call-Id", tx.Origin(), resp)
base.CopyHeaders("CSeq", tx.Origin(), resp)
resp.AddHeader(
&base.ContactHeader{
DisplayName: &e.displayName,
Address: &base.SipUri{
User: &e.username,
Host: e.host,
},
},
)
log.Info("Sending 200 OK")
<-time.After(1 * time.Second)
tx.Respond(resp)
ack := <-tx.Ack()
log.Info("Received ACK")
log.Debug("Full form:\n%v\n", ack.String())
}
func (e *endpoint) ServeNonInvite() {
log.Info("Listening for incoming requests...")
tx := <-e.tm.Requests()
r := tx.Origin()
log.Info("Received request: %v", r.Short())
log.Debug("Full form:\n%v\n", r.String())
// Send a 200 OK
resp := base.NewResponse(
"SIP/2.0",
200,
"OK",
[]base.SipHeader{},
"",
)
base.CopyHeaders("Via", tx.Origin(), resp)
base.CopyHeaders("From", tx.Origin(), resp)
base.CopyHeaders("To", tx.Origin(), resp)
base.CopyHeaders("Call-Id", tx.Origin(), resp)
base.CopyHeaders("CSeq", tx.Origin(), resp)
resp.AddHeader(
&base.ContactHeader{
DisplayName: &e.displayName,
Address: &base.SipUri{
User: &e.username,
Host: e.host,
},
},
)
log.Info("Sending 200 OK")
<-time.After(1 * time.Second)
tx.Respond(resp)
}