mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 04:05:39 +01:00
218 lines
7.1 KiB
Python
218 lines
7.1 KiB
Python
import logging
|
|
import os
|
|
import pathlib
|
|
import re
|
|
import sys
|
|
import time
|
|
from datetime import timedelta
|
|
|
|
from svtplay_dl.utils.terminal import get_terminal_size
|
|
from svtplay_dl.utils.text import decode_html_entities
|
|
from svtplay_dl.utils.text import ensure_unicode
|
|
from svtplay_dl.utils.text import filenamify
|
|
|
|
progress_stream = sys.stderr
|
|
|
|
|
|
class ETA:
|
|
"""
|
|
An ETA class, used to calculate how long it takes to process
|
|
an arbitrary set of items. By initiating the object with the
|
|
number of items and continuously updating with current
|
|
progress, the class can calculate an estimation of how long
|
|
time remains.
|
|
"""
|
|
|
|
def __init__(self, end, start=0):
|
|
"""
|
|
Parameters:
|
|
end: the end (or size, of start is 0)
|
|
start: the starting position, defaults to 0
|
|
"""
|
|
self.start = start
|
|
self.end = end
|
|
self.pos = start
|
|
|
|
self.now = time.time()
|
|
self.start_time = self.now
|
|
|
|
def update(self, pos):
|
|
"""
|
|
Set new absolute progress position.
|
|
|
|
Parameters:
|
|
pos: new absolute progress
|
|
"""
|
|
self.pos = pos
|
|
self.now = time.time()
|
|
|
|
def increment(self, skip=1):
|
|
"""
|
|
Like update, but set new pos relative to old pos.
|
|
|
|
Parameters:
|
|
skip: progress since last update (defaults to 1)
|
|
"""
|
|
self.update(self.pos + skip)
|
|
|
|
@property
|
|
def left(self):
|
|
"""
|
|
returns: How many item remains?
|
|
"""
|
|
return self.end - self.pos
|
|
|
|
def __str__(self):
|
|
"""
|
|
returns: a time string of the format HH:MM:SS.
|
|
"""
|
|
duration = self.now - self.start_time
|
|
|
|
# Calculate how long it takes to process one item
|
|
try:
|
|
elm_time = duration / (self.end - self.left)
|
|
except ZeroDivisionError:
|
|
return "(unknown)"
|
|
|
|
return str(timedelta(seconds=int(elm_time * self.left)))
|
|
|
|
|
|
def progress(byte, total, extra=""):
|
|
"""Print some info about how much we have downloaded"""
|
|
if total == 0:
|
|
progresstr = f"Downloaded {byte >> 10}kB bytes"
|
|
progress_stream.write(progresstr + "\r")
|
|
return
|
|
progressbar(total, byte, extra)
|
|
|
|
|
|
def progressbar(total, pos, msg=""):
|
|
"""
|
|
Given a total and a progress position, output a progress bar
|
|
to stderr. It is important to not output anything else while
|
|
using this, as it relies soley on the behavior of carriage
|
|
return (\\r).
|
|
|
|
Can also take an optioal message to add after the
|
|
progressbar. It must not contain newlines.
|
|
|
|
The progress bar will look something like this:
|
|
|
|
[099/500][=========...............................] ETA: 13:36:59
|
|
|
|
Of course, the ETA part should be supplied be the calling
|
|
function.
|
|
"""
|
|
width = get_terminal_size()[0] - 40
|
|
rel_pos = int(float(pos) / total * width)
|
|
bar = "".join(["=" * rel_pos, "." * (width - rel_pos)])
|
|
|
|
# Determine how many digits in total (base 10)
|
|
digits_total = len(str(total))
|
|
fmt_width = "%0" + str(digits_total) + "d"
|
|
fmt = "\r[" + fmt_width + "/" + fmt_width + "][%s] %s"
|
|
|
|
progress_stream.write(fmt % (pos, total, bar, msg))
|
|
|
|
|
|
def filename(stream):
|
|
if stream.output["title"] is None:
|
|
data = ensure_unicode(stream.get_urldata())
|
|
if data is None:
|
|
return False
|
|
match = re.search(r"(?i)<title[^>]*>\s*(.*?)\s*</title>", data, re.S)
|
|
if match:
|
|
stream.config.set("output_auto", True)
|
|
title_tag = decode_html_entities(match.group(1))
|
|
stream.output["title"] = filenamify(title_tag)
|
|
return True
|
|
|
|
|
|
def formatname(output, config):
|
|
name = pathlib.Path(_formatname(output, config))
|
|
subfolder = None
|
|
dirname = None
|
|
|
|
if not output.get("basedir", False):
|
|
# If tvshow have not been derived by service do it by if season and episode is set
|
|
if output.get("tvshow", None) is None:
|
|
tvshow = output.get("season", None) is not None and output.get("episode", None) is not None
|
|
else:
|
|
tvshow = output.get("tvshow", False)
|
|
if config.get("subfolder") and "title" in output and tvshow:
|
|
# Add subfolder with name title
|
|
subfolder = pathlib.Path(output["title"])
|
|
elif config.get("subfolder") and not tvshow:
|
|
# Add subfolder with name movies
|
|
subfolder = pathlib.Path("movies")
|
|
if config.get("output") and pathlib.Path(config.get("output")).expanduser().is_dir():
|
|
dirname = pathlib.Path(config.get("output"))
|
|
elif config.get("path") and pathlib.Path(config.get("path")).expanduser().is_dir():
|
|
dirname = pathlib.Path(config.get("path"))
|
|
elif config.get("output"):
|
|
if output["ext"]:
|
|
name = pathlib.Path(f"{config.get('output')}.{output['ext']}")
|
|
else:
|
|
name = pathlib.Path(config.get("output"))
|
|
if subfolder and dirname:
|
|
return dirname / subfolder / name.expanduser()
|
|
elif subfolder:
|
|
return subfolder / name.expanduser()
|
|
elif dirname:
|
|
return dirname / name.expanduser()
|
|
else:
|
|
return name.expanduser()
|
|
|
|
|
|
def _formatname(output, config):
|
|
name = config.get("filename")
|
|
for key in output:
|
|
if key == "title" and output[key]:
|
|
name = name.replace("{title}", filenamify(output[key]))
|
|
if key == "season" and output[key]:
|
|
number = f"{int(output[key]):02d}"
|
|
name = name.replace("{season}", number)
|
|
if key == "episode" and output[key]:
|
|
number = f"{int(output[key]):02d}"
|
|
name = name.replace("{episode}", number)
|
|
if key == "episodename" and output[key]:
|
|
name = name.replace("{episodename}", filenamify(output[key]))
|
|
if key == "id" and output[key]:
|
|
name = name.replace("{id}", output[key])
|
|
if key == "service" and output[key]:
|
|
name = name.replace("{service}", output[key])
|
|
if key == "ext" and output[key]:
|
|
name = name.replace("{ext}", output[key])
|
|
|
|
# Remove all {text} we cant replace with something
|
|
for item in re.findall(r"([\.\-]?(([^\.\-]+\w+)?\{[\w\-]+\}))", name):
|
|
if "season" in output and output["season"] and re.search(r"(e\{[\w\-]+\})", name):
|
|
name = name.replace(re.search(r"(e\{[\w\-]+\})", name).group(1), "")
|
|
else:
|
|
name = name.replace(item[0], "")
|
|
|
|
return name
|
|
|
|
|
|
def find_dupes(output, config, video=True):
|
|
otherfiles = [".srt", ".smi", ".tt", ".sami", ".wrst", ".tbn", ".nfo"]
|
|
name = formatname(output, config)
|
|
|
|
logging.info("Outfile: %s", name.name)
|
|
if name.is_file() and not config.get("force"):
|
|
return True, name
|
|
# dir = os.path.dirname(os.path.realpath(name))
|
|
if not name.parent.is_dir():
|
|
# Create directory, needed for creating tvshow subfolder
|
|
os.makedirs(name.parent)
|
|
|
|
if video:
|
|
files = [f for f in name.parent.glob("*.*") if f.is_file()]
|
|
for i in files:
|
|
lsname, lsext = os.path.splitext(i.name)
|
|
if lsext in otherfiles:
|
|
continue
|
|
if lsname == str(name.stem) and not config.get("force"):
|
|
return True, name
|
|
return False, None
|