deemix-py/deemix/__main__.py

112 lines
3.5 KiB
Python
Raw Permalink Normal View History

2020-02-17 16:46:18 +01:00
#!/usr/bin/env python3
import click
from pathlib import Path
from deezer import Deezer
from deezer import TrackFormats
from deemix import generateDownloadObject
from deemix.settings import load as loadSettings
2021-08-02 23:45:08 +02:00
from deemix.utils import getBitrateNumberFromText, formatListener
import deemix.utils.localpaths as localpaths
from deemix.downloader import Downloader
from deemix.itemgen import GenerationError
2021-09-21 18:32:20 +02:00
try:
from deemix.plugins.spotify import Spotify
except ImportError:
Spotify = None
2021-07-05 18:18:57 +02:00
class LogListener:
@classmethod
2021-08-02 23:45:08 +02:00
def send(cls, key, value=None):
logString = formatListener(key, value)
if logString: print(logString)
2021-07-05 18:18:57 +02:00
@click.command()
2020-09-03 16:13:57 +02:00
@click.option('--portable', is_flag=True, help='Creates the config folder in the same directory where the script is launched')
@click.option('-b', '--bitrate', default=None, help='Overwrites the default bitrate selected')
@click.option('-p', '--path', type=str, help='Downloads in the given folder')
@click.argument('url', nargs=-1, required=True)
2020-09-03 16:13:57 +02:00
def download(url, bitrate, portable, path):
# Check for local configFolder
localpath = Path('.')
configFolder = localpath / 'config' if portable else localpaths.getConfigFolder()
settings = loadSettings(configFolder)
dz = Deezer()
2021-07-05 18:18:57 +02:00
listener = LogListener()
def requestValidArl():
while True:
arl = input("Paste here your arl:")
if dz.login_via_arl(arl.strip()): break
return arl
if (configFolder / '.arl').is_file():
2021-12-21 12:40:35 +01:00
with open(configFolder / '.arl', 'r', encoding="utf-8") as f:
arl = f.readline().rstrip("\n").strip()
if not dz.login_via_arl(arl): arl = requestValidArl()
else: arl = requestValidArl()
2021-12-21 12:40:35 +01:00
with open(configFolder / '.arl', 'w', encoding="utf-8") as f:
f.write(arl)
2021-09-21 18:32:20 +02:00
plugins = {}
if Spotify:
plugins = {
"spotify": Spotify(configFolder=configFolder)
}
plugins["spotify"].setup()
2021-07-05 18:18:57 +02:00
def downloadLinks(url, bitrate=None):
if not bitrate: bitrate = settings.get("maxBitrate", TrackFormats.MP3_320)
links = []
for link in url:
if ';' in link:
for l in link.split(";"):
links.append(l)
else:
links.append(link)
2021-08-04 21:36:55 +02:00
downloadObjects = []
for link in links:
try:
downloadObject = generateDownloadObject(dz, link, bitrate, plugins, listener)
except GenerationError as e:
print(f"{e.link}: {e.message}")
continue
2021-07-05 18:11:17 +02:00
if isinstance(downloadObject, list):
2021-08-04 21:36:55 +02:00
downloadObjects += downloadObject
2021-07-05 18:11:17 +02:00
else:
2021-08-04 21:36:55 +02:00
downloadObjects.append(downloadObject)
for obj in downloadObjects:
if obj.__type__ == "Convertable":
obj = plugins[obj.plugin].convert(dz, obj, settings, listener)
Downloader(dz, obj, settings, listener).start()
2021-07-05 18:11:17 +02:00
2020-09-03 16:13:57 +02:00
if path is not None:
if path == '': path = '.'
path = Path(path)
settings['downloadLocation'] = str(path)
url = list(url)
if bitrate: bitrate = getBitrateNumberFromText(bitrate)
2020-09-24 17:46:08 +02:00
# If first url is filepath readfile and use them as URLs
2020-09-29 08:57:22 +02:00
try:
isfile = Path(url[0]).is_file()
except Exception:
2020-09-29 08:57:22 +02:00
isfile = False
if isfile:
filename = url[0]
2021-12-21 12:40:35 +01:00
with open(filename, encoding="utf-8") as f:
url = f.readlines()
downloadLinks(url, bitrate)
click.echo("All done!")
2020-02-17 16:46:18 +01:00
if __name__ == '__main__':
download() # pylint: disable=E1120