Project

General

Profile

WebRTC » History » Version 10

Saúl Ibarra Corretgé, 07/30/2015 05:46 PM

1 1 Saúl Ibarra Corretgé
h1. SylkServer WebRTC gateway application
2
3 2 Saúl Ibarra Corretgé
Starting with version 3.0.0 SylkServer includes a WebRTC gateway application. The application implements a WebSocket protocol which WebRTC endpoints can use in order to interact with the SIP world.
4
5
6
h2. Architecture
7
8 1 Saúl Ibarra Corretgé
TODO
9 2 Saúl Ibarra Corretgé
10
h2. WebSocket API
11
12 5 Saúl Ibarra Corretgé
SylkServer offers the WebSocket API in order to interact with the WebRTC gateway in the @ws(s)://hostname:port/webrtcgateway/ws@ endpoint. Both WebSocket and Secure WebSocket are supported, depending on how SylkServer was configured, check the configuration section.
13 1 Saúl Ibarra Corretgé
14 7 Saúl Ibarra Corretgé
The API uses JSON messages and is modeled around 2 concepts: requests and events.
15 5 Saúl Ibarra Corretgé
16
A request represents an action which SylkServer should perform, and it's identified with a transaction ID which the user must provide. SylkServer will reply with either an 'ack' or an 'error' response, with the associated transaction ID. An example transaction is that of adding an account.
17
18
Events are notifications sent by SylkServer to the client. They are the result of some change triggered by a user action, but they don't have a transaction ID associated with them. An example event would be the connection state changed event.
19 1 Saúl Ibarra Corretgé
20 7 Saúl Ibarra Corretgé
All messages are valid JSON and contain the "sylkrtc" key indicating the message type. A message without the "sylkrtc" key is an invalid message.
21
22 5 Saúl Ibarra Corretgé
h3. Establishing the connection
23 1 Saúl Ibarra Corretgé
24 6 Saúl Ibarra Corretgé
In order to connect to SylkServer to begin to use the API a WebSocket connection must be established, using the @sylkRTC-1@ subprotocol. Example:
25
26
<pre>
27
var conn = new WebSocket('wss://example.com/webrtcgateway/ws', 'sylkRTC-1');
28
</pre>
29
30
After the connection is established, a 'ready' event will be sent to the client, indicating that the connection is ready to be used:
31
32
<pre>
33
{
34
  "sylkrtc": "event",
35
  "event": "ready"
36
}
37
38
</pre>
39 1 Saúl Ibarra Corretgé
40 7 Saúl Ibarra Corretgé
Example:
41
42
<pre>
43
var conn = new WebSocket('wss://example.com/webrtcgateway/ws', 'sylkRTC-1');
44
conn.onmessage = function(event) {
45
    var message = JSON.parse(event.data);
46
    switch (message.sylkrtc) {
47
        case 'event':
48
            if (message.event === 'ready') {
49
                console.log('Ready to rock!');
50
            }
51
            break;
52
        default:
53
            console.log('Received message type: ' + message.sylkrtc);
54
            break;
55
    }
56
};
57
</pre>
58
59 5 Saúl Ibarra Corretgé
h3. Account management
60
61 8 Saúl Ibarra Corretgé
Multiple accounts can be managed from a single WebSocket connection. 2 types of requests are used to manage accounts: "add_account" and "remove_account". Once an account has been added it can be registered via SIP using the "register" command, and unregistered using the "unregister" command.
62
63 10 Saúl Ibarra Corretgé
Note: it's not necessary to register an account in order to make outgoing calls.
64
65 8 Saúl Ibarra Corretgé
h4. add_account
66
67 9 Saúl Ibarra Corretgé
Configures an account on the current connection.
68 8 Saúl Ibarra Corretgé
69
<pre>
70
{'account': 'saghul@sip2sip.info',
71
 'password': '884edfee38ed471b8a15006700139485',
72
 'sylkrtc': 'add_account',
73
 'transaction': '04013f0f-25bb-4082-a02f-44399df492ff'}
74
</pre>
75
76 9 Saúl Ibarra Corretgé
The password MUST be in "HA1 format":https://en.wikipedia.org/wiki/Digest_access_authentication#Overview
77 1 Saúl Ibarra Corretgé
78 9 Saúl Ibarra Corretgé
h4. remove_account
79
80
Removes an account from the current connection.
81
82 8 Saúl Ibarra Corretgé
<pre>
83 9 Saúl Ibarra Corretgé
{'account': 'saghul@sip2sip.info',
84
 'sylkrtc': 'remove_account',
85
 'transaction': 'bd3ee25d-5f16-4f76-b34e-8ac3fe0a4ac0'}
86 8 Saúl Ibarra Corretgé
</pre>
87 1 Saúl Ibarra Corretgé
88 9 Saúl Ibarra Corretgé
h4. register
89 1 Saúl Ibarra Corretgé
90 9 Saúl Ibarra Corretgé
Triggers the account registration via SIP.
91 1 Saúl Ibarra Corretgé
92 9 Saúl Ibarra Corretgé
<pre>
93
{'account': 'saghul@sip2sip.info',
94
 'sylkrtc': 'register',
95
 'transaction': 'bcb87b0f-0cc7-42a9-897e-81f035910670'}
96
</pre>
97
98
The registration progress will be reported in form of events.
99
100
<pre>
101
{'account': 'saghul@sip2sip.info',
102
 'data': {'state': 'registering'},
103
 'event': 'registration_state',
104
 'sylkrtc': 'account_event'}
105
106
{'account': 'saghul@sip2sip.info',
107
 'data': {'state': 'registered'},
108
 'event': 'registration_state',
109
 'sylkrtc': 'account_event'}
110
</pre>
111
112
Example of failed registration:
113
114
<pre>
115
{'account': 'saghul@sip2sip.info',
116
 'data': {'reason': '904 Operation has no matching challenge ',
117
          'state': 'failed'},
118
 'event': 'registration_state',
119
 'sylkrtc': 'account_event'}
120 10 Saúl Ibarra Corretgé
</pre>
121
122
h4. unregister
123
124
Unregister the account, via SIP.
125
126
<pre>
127
{'account': 'saghul@sip2sip.info',
128
 'sylkrtc': 'unregister',
129
 'transaction': '1c81eea0-b247-4ced-b3b3-3ced1eba810e'}
130 9 Saúl Ibarra Corretgé
</pre>
131 5 Saúl Ibarra Corretgé
132
h3. Calling
133
134 2 Saúl Ibarra Corretgé
TODO
135 4 Saúl Ibarra Corretgé
136
h2. Configuration
137
138
TODO
139 2 Saúl Ibarra Corretgé
140
h2. Client libraries
141
142 1 Saúl Ibarra Corretgé
In order to interact with SylkServer's WebRTC gateway, we provide the "sylkrtc.js":http://projects.ag-projects.com/projects/sylkrtc JavaScript library. It implements the API described in this document in an easy to use manner. Check the README file in the project for the JavaScript API documentation.