|
11 | 11 | # Ported to Python3, removed GoodThread
|
12 | 12 | # -killian441
|
13 | 13 |
|
14 |
| -import ast, datetime, re, socket, threading, time, traceback |
| 14 | +import ast, base64, datetime, re, socket, threading, time, traceback |
15 | 15 | from hashlib import md5
|
16 | 16 | try:
|
17 | 17 | from urllib.parse import urlparse
|
@@ -155,7 +155,7 @@ def _connect_server(self):
|
155 | 155 | (e, self._parsed_url.hostname, self._server_port))
|
156 | 156 |
|
157 | 157 | 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) |
159 | 159 | if (m and m.group('base')):
|
160 | 160 | new_url = m.group('base')
|
161 | 161 | if new_url[-1] == '/':
|
@@ -206,8 +206,13 @@ def _add_auth(self, msg):
|
206 | 206 | (i.e. everything after "www-authentication")'''
|
207 | 207 | #TODO: this is too simplistic and will fail if more than one method
|
208 | 208 | # is acceptable, among other issues
|
| 209 | + # i.e. REALM-value is case-sensitive, so theres a failure. |
209 | 210 | 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 |
211 | 216 | elif msg.lower().startswith('digest '):
|
212 | 217 | mod_msg = '{'+msg[7:].replace('=',':')+'}'
|
213 | 218 | mod_msg = mod_msg.replace('realm','"realm"')
|
@@ -328,8 +333,11 @@ def _parse_header_params(self, header_param_lines):
|
328 | 333 |
|
329 | 334 | def _parse_track_id(self, sdp):
|
330 | 335 | '''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] |
333 | 341 |
|
334 | 342 | def _next_seq(self):
|
335 | 343 | self._cseq += 1
|
|
0 commit comments