forked from jmarcet/movistar-u7d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmu7d.py
executable file
·479 lines (392 loc) · 15.9 KB
/
mu7d.py
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
#!/usr/bin/env python3
import aiohttp
import asyncio
import logging
import os
import psutil
import re
import socket
import sys
import tomli
import urllib.parse
from aiohttp.client_exceptions import ClientOSError, ServerDisconnectedError
from contextlib import closing
from datetime import datetime
from filelock import FileLock, Timeout
from glob import glob
from shutil import which
from time import sleep
from xml.sax.saxutils import unescape # nosec B406
if hasattr(asyncio, "exceptions"):
from asyncio.exceptions import CancelledError
else:
from asyncio import CancelledError
_version = "5.2"
log = logging.getLogger("INI")
EXT = ".exe" if getattr(sys, "frozen", False) else ".py"
WIN32 = sys.platform == "win32"
EPG_URL = "http://127.0.0.1:8889"
IPTV_DNS = "172.26.23.3"
MIME_M3U = "audio/x-mpegurl"
MIME_TS = "video/MP2T;audio/mp3"
MIME_WEBM = "video/webm"
TERMINATE = os.path.join(os.getenv("TMP"), ".mu7d.terminate") if WIN32 else None
UA = "libcurl-agent/1.0 [IAL] WidgetManager Safari/538.1 CAP:803fd12a 1"
UA_U7D = f"movistar-u7d v{_version} [{sys.platform}] [{EXT}]"
URL_BASE = "http://html5-static.svc.imagenio.telefonica.net/appclientv/nux/incoming/epg"
URL_COVER = f"{URL_BASE}/covers/programmeImages/portrait/290x429"
URL_LOGO = f"{URL_BASE}/channelLogo"
URL_MVTV = "http://www-60.svc.imagenio.telefonica.net:2001/appserver/mvtv.do"
VID_EXTS = (".avi", ".mkv", ".mp4", ".mpeg", ".mpg", ".ts")
YEAR_SECONDS = 365 * 24 * 60 * 60
title_select_regex = re.compile(r".+ T\d+ .+")
title_1_regex = re.compile(r"(.+(?!T\d)) +T(\d+)(?: *Ep?.? *(\d+))?[ -]*(.*)")
title_2_regex = re.compile(r"(.+(?!T\d))(?: +T(\d+))? *Ep?.? *(\d+)[ -]*(.*)")
def find_free_port(iface=""):
with closing(socket.socket(socket.AF_INET, socket.SOCK_DGRAM)) as s:
s.bind((iface, 0))
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
return s.getsockname()[1]
def get_iptv_ip():
with closing(socket.socket(socket.AF_INET, socket.SOCK_DGRAM)) as s:
s.settimeout(1)
try:
s.connect((IPTV_DNS, 53))
return s.getsockname()[0]
except Timeout:
raise ValueError("Imposible conectar con DNS de Movistar IPTV")
def get_lan_ip():
with closing(socket.socket(socket.AF_INET, socket.SOCK_DGRAM)) as s:
s.connect(("8.8.8.8", 53))
return s.getsockname()[0]
def get_safe_filename(filename):
filename = filename.replace(":", ",").replace("...", "…").replace("(", "[").replace(")", "]")
keepcharacters = (" ", ",", ".", "_", "-", "¡", "!", "[", "]")
return "".join(c for c in filename if c.isalnum() or c in keepcharacters).rstrip()
def get_title_meta(title, serie_id=None):
try:
_t = unescape(title).replace("\n", " ").replace("\r", " ")
except TypeError:
_t = title.replace("\n", " ").replace("\r", " ")
full_title = _t.replace(" / ", ": ").replace("/", "")
if title_select_regex.match(full_title):
x = title_1_regex.search(full_title)
else:
x = title_2_regex.search(full_title)
is_serie = False
season = episode = 0
serie = episode_title = ""
if x and x.groups():
_x = x.groups()
serie = (
_x[0].strip()
if _x[0]
else full_title.split(" - ")[0].strip()
if " - " in full_title
else full_title
)
season = int(_x[1]) if _x[1] else season
episode = int(_x[2]) if _x[2] else episode
episode_title = _x[3].strip() if _x[3] else episode_title
if episode_title and "-" in episode_title:
episode_title = episode_title.replace("- ", "-").replace(" -", "-").replace("-", " - ")
is_serie = serie and episode
if ": " in serie and episode and not episode_title:
episode_title = serie.split(":")[1].strip()
serie = serie.split(":")[0].strip()
if serie and season and episode:
full_title = "%s S%02dE%02d" % (serie, season, episode)
if episode_title:
full_title += f" - {episode_title}"
elif serie_id:
is_serie = True
if " - " in full_title:
serie, episode_title = full_title.split(" - ", 1)
else:
serie = full_title
return {
"full_title": full_title,
"serie": serie,
"season": season,
"episode": episode,
"episode_title": episode_title,
"is_serie": is_serie,
}
def glob_safe(string):
return glob(f"{string.replace('[', '?').replace(']', '?')}")
async def launch(cmd):
proc = await asyncio.create_subprocess_exec(*cmd, cwd=os.path.dirname(__file__) if EXT == ".py" else None)
try:
return await proc.wait()
except CancelledError:
log.debug(f"Cancelled: {cmd}")
try:
proc.terminate()
except ProcessLookupError:
pass
finally:
return await proc.wait()
def mu7d_config():
confname = "mu7d.conf"
fileconf = ""
if not WIN32:
if os.path.exists(os.path.join(os.getenv("HOME"), confname)):
fileconf = os.path.join(os.getenv("HOME"), confname)
elif os.path.exists(os.path.join("/etc", confname)):
fileconf = os.path.join("/etc", confname)
elif os.path.exists(os.path.join(os.getenv("USERPROFILE"), confname)):
fileconf = os.path.join(os.getenv("USERPROFILE"), confname)
try:
with open(fileconf, encoding="utf8") as f:
conf = tomli.loads(f.read().lstrip("\ufeff"))
except FileNotFoundError:
conf = {}
if "HOME" not in conf:
conf["HOME"] = os.getenv("HOME", os.getenv("USERPROFILE"))
if "COMSKIP" not in conf or not which("comskip"):
conf["COMSKIP"] = None
else:
conf["COMSKIP"] = min(conf["COMSKIP"], os.cpu_count())
if "DEBUG" not in conf:
conf["DEBUG"] = False
if "EXTRA_CHANNELS" not in conf:
conf["EXTRA_CHANNELS"] = []
else:
conf["EXTRA_CHANNELS"] = conf["EXTRA_CHANNELS"].split(" ")
if "IPTV_IFACE" not in conf or WIN32:
conf["IPTV_IFACE"] = conf["IPTV_BW_SOFT"] = conf["IPTV_BW_HARD"] = None
else:
if "IPTV_BW_HARD" not in conf or WIN32:
conf["IPTV_BW_HARD"] = 0
else:
conf["IPTV_BW_HARD"] = min(100000, conf["IPTV_BW_HARD"])
if "IPTV_BW_SOFT" not in conf or not conf["IPTV_BW_HARD"] or WIN32:
conf["IPTV_BW_HARD"] = conf["IPTV_BW_SOFT"] = 0
else:
conf["IPTV_BW_SOFT"] = min(conf["IPTV_BW_HARD"] - 10000, conf["IPTV_BW_SOFT"])
if "LAN_IP" not in conf:
conf["LAN_IP"] = get_lan_ip()
if "MP4_OUTPUT" not in conf:
conf["MP4_OUTPUT"] = False
if "NO_SUBS" not in conf:
conf["NO_SUBS"] = False
if "NO_VERBOSE_LOGS" not in conf:
conf["NO_VERBOSE_LOGS"] = False
if "RECORDINGS" not in conf or not which("ffmpeg") or not which("mkvmerge"):
conf["RECORDINGS"] = conf["RECORDINGS_M3U"] = None
else:
conf["RECORDINGS"] = conf["RECORDINGS"].rstrip("/").rstrip("\\")
conf["RECORDINGS_M3U"] = os.path.join(conf["RECORDINGS"], "Recordings.m3u")
if "RECORDINGS_PER_CHANNEL" not in conf:
conf["RECORDINGS_PER_CHANNEL"] = True
if not WIN32 and conf["IPTV_BW_SOFT"]:
conf["RECORDINGS_THREADS"] = 9999
elif "RECORDINGS_THREADS" not in conf:
conf["RECORDINGS_THREADS"] = 4
if "TVG_THREADS" not in conf:
conf["TVG_THREADS"] = os.cpu_count()
conf["TVG_THREADS"] = min(8, conf["TVG_THREADS"])
if "U7D_PORT" not in conf:
conf["U7D_PORT"] = 8888
if "U7D_THREADS" not in conf:
conf["U7D_THREADS"] = 1
conf["CHANNELS"] = os.path.join(conf["HOME"], "MovistarTV.m3u")
conf["CHANNELS_CLOUD"] = os.path.join(conf["HOME"], "MovistarTVCloud.m3u")
conf["GUIDE"] = os.path.join(conf["HOME"], "guide.xml")
conf["GUIDE_CLOUD"] = os.path.join(conf["HOME"], "cloud.xml")
conf["U7D_URL"] = f"http://{conf['LAN_IP']}:{conf['U7D_PORT']}"
return conf
async def ongoing_vods(channel_id="", program_id="", filename="", _all=False, _fast=False):
parent = os.getenv("U7D_PARENT") if not WIN32 else None
family = psutil.Process(int(parent)).children(recursive=True) if parent else psutil.process_iter()
if _fast: # For U7D we just want to know if there are recordings in place
return "ffmpeg" in str(family)
regex = "(comskip|ffmpeg|mkvmerge|movistar_vod).*" if filename and not program_id else "movistar_vod.*"
regex += "(" if program_id and filename else ""
regex += f" {channel_id} {program_id}" if program_id else ""
regex += "|" if program_id and filename else ""
regex += " .+%s" % filename.replace("\\", "\\\\") if filename else ""
regex += ")" if program_id and filename else ""
vods = list(filter(None, [proc_grep(proc, regex) for proc in family]))
if not _all:
if filename and not program_id:
return vods
else:
return [proc for proc in vods if "ffmpeg" in str(proc.children())]
else:
return "|".join([" ".join(proc.cmdline()).strip() for proc in vods])
def proc_grep(proc, regex):
try:
return proc if re.search(regex, " ".join(proc.cmdline())) else None
except (psutil.AccessDenied, psutil.NoSuchProcess, psutil.PermissionError):
pass
def reaper(signum, sigframe):
for child in psutil.Process().children():
try:
if child.status() == "zombie":
child.wait()
except psutil.NoSuchProcess:
pass
def remove(item):
try:
if os.path.isfile(item):
os.remove(item)
elif os.path.isdir(item) and not os.listdir(item):
os.rmdir(item)
except (FileNotFoundError, OSError, PermissionError):
pass
async def u7d_main():
if not WIN32:
signal.signal(signal.SIGCHLD, reaper)
[signal.signal(sig, cleanup_handler) for sig in (signal.SIGHUP, signal.SIGINT, signal.SIGTERM)]
prefix = [sys.executable] if EXT == ".py" else []
u7d_cmd = prefix + [f"movistar_u7d{EXT}"]
epg_cmd = prefix + [f"movistar_epg{EXT}"]
u7d_t = asyncio.create_task(launch(u7d_cmd))
epg_t = asyncio.create_task(launch(epg_cmd))
while True:
try:
done, pending = await asyncio.wait(asyncio.all_tasks(), return_when=asyncio.FIRST_COMPLETED)
except CancelledError:
if not WIN32:
break
if WIN32:
if not u7d_t.done():
async with aiohttp.ClientSession() as session:
try:
await session.get(f"http://{_conf['LAN_IP']}:{_conf['U7D_PORT']}/terminate")
except (ClientOSError, ServerDisconnectedError):
u7d_t.cancel()
await u7d_t
cleanup()
sys.exit(1)
u7d_t = asyncio.create_task(launch(u7d_cmd)) if u7d_t in done else u7d_t
epg_t = asyncio.create_task(launch(epg_cmd)) if epg_t in done else epg_t
if __name__ == "__main__":
try:
if not WIN32:
psutil.Process().nice(-10)
psutil.Process().ionice(psutil.IOPRIO_CLASS_BE, 0)
else:
psutil.Process().nice(psutil.ABOVE_NORMAL_PRIORITY_CLASS)
except psutil.AccessDenied:
pass
if not WIN32:
import signal
from setproctitle import setproctitle
setproctitle("mu7d")
def cleanup_handler(signum, frame):
[task.cancel() for task in asyncio.all_tasks()]
signal.signal(signal.SIGTERM, signal.SIG_IGN)
os.killpg(0, signal.SIGTERM)
while True:
try:
os.waitpid(-1, 0)
except Exception:
break
else:
def cleanup():
with open(TERMINATE, "wb") as f:
f.write(b"")
log.debug("cleanup WIN32")
vods = []
for proc in psutil.process_iter():
try:
name = " ".join(proc.cmdline())
if "movistar_vod" in name:
vods.append(proc)
children = proc.children()
if children:
children[0].terminate()
elif "movistar_" in name:
proc.terminate()
except (psutil.AccessDenied, psutil.NoSuchProcess):
pass
if vods:
log.debug(f"Waiting for: {vods}")
[vod.wait() for vod in vods]
os.remove(TERMINATE)
def _check_iptv():
iptv_iface_ip = _get_iptv_iface_ip()
while True:
uptime = int(datetime.now().timestamp() - psutil.boot_time())
try:
iptv_ip = get_iptv_ip()
if not _conf["IPTV_IFACE"] or WIN32 or iptv_iface_ip and iptv_iface_ip == iptv_ip:
log.info(f"IPTV address: {iptv_ip}")
break
else:
log.info("IPTV address: waiting for interface to be routed...")
except ValueError as ex:
if uptime < 180:
log.info(ex)
else:
raise
sleep(5)
def _check_ports():
epg_uri = urllib.parse.urlparse(EPG_URL)
with closing(socket.socket(socket.AF_INET, socket.SOCK_STREAM)) as s:
if s.connect_ex((epg_uri.hostname, epg_uri.port)) == 0:
raise ValueError(f"El puerto {epg_uri.netloc} está ocupado")
with closing(socket.socket(socket.AF_INET, socket.SOCK_STREAM)) as s:
if s.connect_ex((_conf["LAN_IP"], _conf["U7D_PORT"])) == 0:
raise ValueError(f"El puerto {_conf['LAN_IP']}:{_conf['U7D_PORT']} está ocupado")
def _get_iptv_iface_ip():
iptv_iface = _conf["IPTV_IFACE"]
if iptv_iface:
import netifaces
while True:
uptime = int(datetime.now().timestamp() - psutil.boot_time())
try:
iptv = netifaces.ifaddresses(iptv_iface)[2][0]["addr"]
log.info(f"IPTV interface: {iptv_iface}")
return iptv
except (KeyError, ValueError):
if uptime < 180:
log.info("IPTV interface: waiting for it...")
sleep(5)
else:
raise ValueError(f"Unable to get address from interface {iptv_iface}...")
_conf = mu7d_config()
logging.basicConfig(
datefmt="%Y-%m-%d %H:%M:%S",
format="[%(asctime)s] [%(name)s] [%(levelname)s] %(message)s",
level=logging.DEBUG if _conf["DEBUG"] else logging.INFO,
)
logging.getLogger("asyncio").setLevel(logging.FATAL)
logging.getLogger("filelock").setLevel(logging.FATAL)
banner = f"Movistar U7D v{_version}"
log.info("=" * len(banner))
log.info(banner)
log.info("=" * len(banner))
if WIN32:
if os.path.exists(TERMINATE):
os.remove(TERMINATE)
elif "UID" in _conf or "GID" in _conf:
log.info("Dropping privileges...")
if "GID" in _conf:
try:
os.setgid(_conf["GID"])
except PermissionError:
log.warning(f"Could not drop privileges to UID {_conf['UID']}")
if "UID" in _conf:
try:
os.setuid(_conf["UID"])
except PermissionError:
log.warning(f"Could not drop privileges to GID {_conf['GID']}")
os.environ["PATH"] = "%s;%s" % (os.path.dirname(__file__), os.getenv("PATH"))
os.environ["U7D_PARENT"] = str(os.getpid())
lockfile = os.path.join(os.getenv("TMP", os.getenv("TMPDIR", "/tmp")), ".mu7d.lock") # nosec B108
try:
with FileLock(lockfile, timeout=0):
_check_iptv()
_check_ports()
asyncio.run(u7d_main())
except (CancelledError, KeyboardInterrupt):
sys.exit(1)
except ValueError as ex:
log.critical(ex)
sys.exit(1)
except Timeout:
log.critical("Cannot be run more than once!")
sys.exit(1)