2014-09-23 12:16:13 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-09-23 12:16:13 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
from twisted.internet import defer
|
|
|
|
|
2016-03-08 06:45:50 -05:00
|
|
|
from .base import ClientV1RestServlet, client_path_patterns
|
2014-09-23 12:16:13 -04:00
|
|
|
|
|
|
|
|
|
|
|
import hmac
|
|
|
|
import hashlib
|
2014-09-24 09:29:24 -04:00
|
|
|
import base64
|
2014-09-23 12:16:13 -04:00
|
|
|
|
|
|
|
|
2015-01-23 09:09:51 -05:00
|
|
|
class VoipRestServlet(ClientV1RestServlet):
|
2015-12-01 12:34:32 -05:00
|
|
|
PATTERNS = client_path_patterns("/voip/turnServer$")
|
2014-09-23 12:16:13 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def on_GET(self, request):
|
2016-01-11 10:29:57 -05:00
|
|
|
requester = yield self.auth.get_user_by_req(request)
|
2014-09-23 12:16:13 -04:00
|
|
|
|
2014-09-24 11:01:36 -04:00
|
|
|
turnUris = self.hs.config.turn_uris
|
2014-09-23 13:17:24 -04:00
|
|
|
turnSecret = self.hs.config.turn_shared_secret
|
|
|
|
userLifetime = self.hs.config.turn_user_lifetime
|
2014-09-24 11:04:33 -04:00
|
|
|
if not turnUris or not turnSecret or not userLifetime:
|
2014-10-30 07:10:17 -04:00
|
|
|
defer.returnValue((200, {}))
|
2014-09-23 12:16:13 -04:00
|
|
|
|
2014-10-21 13:57:13 -04:00
|
|
|
expiry = (self.hs.get_clock().time_msec() + userLifetime) / 1000
|
2016-01-11 10:29:57 -05:00
|
|
|
username = "%d:%s" % (expiry, requester.user.to_string())
|
2014-10-30 07:10:17 -04:00
|
|
|
|
2014-09-23 12:16:13 -04:00
|
|
|
mac = hmac.new(turnSecret, msg=username, digestmod=hashlib.sha1)
|
2015-08-24 11:17:38 -04:00
|
|
|
# We need to use standard padded base64 encoding here
|
2014-10-30 07:10:17 -04:00
|
|
|
# encode_base64 because we need to add the standard padding to get the
|
|
|
|
# same result as the TURN server.
|
2014-09-24 09:29:24 -04:00
|
|
|
password = base64.b64encode(mac.digest())
|
2014-09-23 12:16:13 -04:00
|
|
|
|
2014-10-30 07:10:17 -04:00
|
|
|
defer.returnValue((200, {
|
2014-09-23 12:16:13 -04:00
|
|
|
'username': username,
|
|
|
|
'password': password,
|
|
|
|
'ttl': userLifetime / 1000,
|
2014-09-24 11:01:36 -04:00
|
|
|
'uris': turnUris,
|
2014-10-30 07:10:17 -04:00
|
|
|
}))
|
2014-09-23 12:16:13 -04:00
|
|
|
|
|
|
|
def on_OPTIONS(self, request):
|
|
|
|
return (200, {})
|
|
|
|
|
|
|
|
|
|
|
|
def register_servlets(hs, http_server):
|
|
|
|
VoipRestServlet(hs).register(http_server)
|