Skip to content

Commit 874501e

Browse files
authored
Added Basic Auth and modified _parse_track_id (#6)
* modified _parse_track_id I am not parsing all the data returned after an 'a=control' string. Made some changes to fix this. * Added Basic Auth Added Basic autherization per RFC 2068. * Updated how track list is populated
1 parent 1386273 commit 874501e

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

rtsp.py

+13-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# Ported to Python3, removed GoodThread
1212
# -killian441
1313

14-
import ast, datetime, re, socket, threading, time, traceback
14+
import ast, base64, datetime, re, socket, threading, time, traceback
1515
from hashlib import md5
1616
try:
1717
from urllib.parse import urlparse
@@ -155,7 +155,7 @@ def _connect_server(self):
155155
(e, self._parsed_url.hostname, self._server_port))
156156

157157
def _update_content_base(self, msg):
158-
m = re.search(r'[Cc]ontent-[Bb]ase:\s?(?P<base>[a-zA-Z0-9_:\/\.]+)', msg)
158+
m = re.search(r'[Cc]ontent-[Bb]ase:\s?(?P<base>[a-zA-Z0-9_:\/\.-]+)', msg)
159159
if (m and m.group('base')):
160160
new_url = m.group('base')
161161
if new_url[-1] == '/':
@@ -206,8 +206,13 @@ def _add_auth(self, msg):
206206
(i.e. everything after "www-authentication")'''
207207
#TODO: this is too simplistic and will fail if more than one method
208208
# is acceptable, among other issues
209+
# i.e. REALM-value is case-sensitive, so theres a failure.
209210
if msg.lower().startswith('basic'):
210-
pass
211+
response = self._parsed_url.username + ':' + \
212+
self._parsed_url.password
213+
response = base64.b64encode(response.encode())
214+
auth_string = 'Basic {}'.format(response)
215+
self._auth = auth_string
211216
elif msg.lower().startswith('digest '):
212217
mod_msg = '{'+msg[7:].replace('=',':')+'}'
213218
mod_msg = mod_msg.replace('realm','"realm"')
@@ -328,8 +333,11 @@ def _parse_header_params(self, header_param_lines):
328333

329334
def _parse_track_id(self, sdp):
330335
'''Resolves a string of the form trackID = 2 from sdp'''
331-
m = re.findall(r'a=control:(?P<trackid>[\w=\d]+)', sdp, re.S)
332-
self.track_id_lst = m
336+
#m = re.findall(r'a=control:(?P<trackid>[\w=\d]+)', sdp, re.S)
337+
# The following returns full url after a=control:
338+
m = re.findall(r'a=control:(?P<trackid>[:/\.\w\d]+[=\d][\d]*)', sdp, re.S)
339+
m.remove(self._orig_url)
340+
self.track_id_lst = [x.replace(self._orig_url+'/','') for x in m]
333341

334342
def _next_seq(self):
335343
self._cseq += 1

0 commit comments

Comments
 (0)