forked from vvaidy/Qo-DL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQo-DL.py
executable file
·805 lines (779 loc) · 28.9 KB
/
Qo-DL.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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
#!/usr/bin/env python3
# r5d
# It needs a lot of TLC, not fully refactored.
# standard:
import os
import re
import ssl
import sys
import json
import time
import gzip
import codecs
import shutil
import hashlib
import pathlib
import argparse
import traceback
import datetime
import platform
import configparser
import urllib.request
from pathlib import Path
from itertools import islice
from urllib.error import HTTPError
# third party:
import requests
import pySmartDL
from mutagen import File
import mutagen.id3 as id3
from mutagen.flac import FLAC, Picture
from mutagen.id3 import ID3NoHeaderError
class BundleError(Exception):
pass
class BundleNotFoundError(BundleError):
def __init__(self, login_page_req):
with open("login.html.gz", "wb") as login_file:
login_file.write(
gzip.compress(login_page_req.content)
)
class BundleParseError(BundleError):
def __init__(self, bundle_req):
self.url = bundle_req.url
# save local copy of bundle file for debugging purposes
with open("bundle.js.gz", "wb") as bundle_file:
bundle_file.write(
gzip.compress(bundle_req.content)
)
class AppIdNotFoundError(BundleParseError):
pass
class SecretNotFoundError(BundleParseError):
pass
def getConfig(option, req, section='Main'):
config = configparser.ConfigParser()
config.read('config.ini')
try:
if req:
if not config[section][option].strip('"'):
msList.append(option)
return config[section][option].strip('"')
except KeyError:
msList2.append(option)
def getMetadata(metadict, friendlyname, *keys):
currentVal = metadict
for key in keys:
try:
currentVal = currentVal[key]
except KeyError:
print(f"The API did not return a(n) {friendlyname}. Tag will be left empty.")
return None
return currentVal
def sanitizeFilename(filename):
if getOsType():
return re.sub(r'[\\/:*?"><|]', '-', filename)
else:
return re.sub('/', '-', filename)
def getAppIdAndSecret():
login_page_req = requests.get("https://play.qobuz.com/login")
login_page = login_page_req.text
bundle_url_match = re.search(r'<script src="(/resources/\d+\.\d+\.\d+-[a-z]\d{3}/bundle\.js)"></script>',
login_page)
if not bundle_url_match:
raise BundleNotFoundError(login_page_req)
else:
bundle_url = bundle_url_match.group(1)
bundle_req = requests.get("https://play.qobuz.com" + bundle_url)
bundle = bundle_req.text
id_secret_match = re.search(r'{app_id:"(?P<app_id>\d{9})",app_secret:"(?P<secret>\w{32})",base_port:"80",base_url:"https://www\.qobuz\.com",base_method:"/api\.json/0\.2/"},n\.base_url="https://play\.qobuz\.com"', bundle)
if id_secret_match is None or "app_id" not in id_secret_match.groupdict():
raise AppIdNotFoundError(bundle_req)
elif "secret" not in id_secret_match.groupdict():
raise SecretNotFoundError(bundle_req)
else:
return (id_secret_match.group("app_id"), id_secret_match.group("secret"))
def add_mp3_tags(filename, metadata):
metadata = metadata.copy()
try:
audio = id3.ID3(filename)
except ID3NoHeaderError:
audio = id3.ID3()
# ID3 is weird about the track number and total so we have to set that manually
audio["TRCK"] = id3.TRCK(encoding=3, text=f"{metadata.pop('TRACKNUMBER')}/{metadata.pop('TRACKTOTAL')}")
legend = {
"ALBUM": id3.TALB,
"ALBUMARTIST": id3.TPE2,
"ARTIST": id3.TPE1,
"COMMENT": id3.COMM,
"COMPOSER": id3.TCOM,
"COPYRIGHT": id3.TCOP,
"GENRE": id3.TCON,
"ORGANIZATION": id3.TPUB,
"TITLE": id3.TIT2,
"ISRC": id3.TSRC,
"DATE": id3.TYER
}
for tag, value in metadata.items():
if value:
id3tag = legend[tag]
audio[id3tag.__name__] = id3tag(encoding=3, text=value)
audio.save(filename, 'v2_version=3')
def getAlbumId(link):
return re.match(r"https?://(?:w{0,3}|play|open)\.qobuz\.com/(?:(?:album|track|artist|playlist)/|[a-z]{2}-[a-z]{2}/album/-?\w+(?:-\w+)*-?/)(\w+)", link).group(1)
def add_mp3_cover(filename, albumart):
audio = id3.ID3(filename)
audio.add(id3.APIC(3, 'image/jpeg', 3, '', albumart))
audio.save(filename, 'v2_version=3')
def add_flac_tags(filename, metadata):
audio = FLAC(filename)
for tag, value in metadata.items():
if value:
audio[tag] = value
audio.save()
def add_flac_cover(filename, albumart):
audio = File(filename)
image = Picture()
image.type = 3
image.mime = "image/jpeg"
with open(albumart, 'rb') as f:
image.data = f.read()
audio.add_picture(image)
audio.save()
def fetchArtistMeta(appId, album_id):
response = session.get("http://www.qobuz.com/api.json/0.2/artist/get?",
params={
"app_id": appId,
"artist_id": album_id,
"extra": "albums"
},
)
if response.status_code == 200:
return response.json()
else:
print(f"Failed to fetch artist metadata. Response from API: {response.text}")
osCommands('pause')
def fetchPlistMeta(appId, id):
response = session.get("https://www.qobuz.com/api.json/0.2/playlist/get?",
params={
"app_id": appId,
"extra": "tracks",
"playlist_id": id,
"limit": "500",
}
)
if response.status_code == 200:
return response.json()
else:
print(f"Failed to fetch playlist metadata. Response from API: {response.text}")
osCommands('pause')
def rip(album_id, isTrack, isDiscog, isPlist, session, comment, formatId, alcovs, downloadDir, keep_cover, folderTemplate, filenameTemplate, albumNumber, albumTotal, appSecret):
if formatId == "5":
fext = ".mp3"
else:
fext = ".flac"
if isTrack:
response = session.get("https://www.qobuz.com/api.json/0.2/track/get?",
params={
"track_id": album_id,
},
)
albumMetadata = response.json()["album"]
album_url = "https://play.qobuz.com/album/" + albumMetadata["id"]
tracks = [response.json()]
else:
response = session.get("https://www.qobuz.com/api.json/0.2/album/get?",
params={
"album_id": album_id,
},
)
album_url = "https://play.qobuz.com/album/" + album_id
albumMetadata = response.json()
if albumMetadata.get("code") == 404 or not albumMetadata["streamable"]:
print("Album does not appear to be streamable, and so we cannot download it. Try searching the album name on the web player \
and if it's available, use the link there. Otherwise, you may be able to use a proxy or VPN to another region.")
time.sleep(5)
return
try:
tracks = [track for track in albumMetadata["tracks"]["items"]]
except KeyError:
print("Could not fetch track information. This usually means that the album (or track if you put in one) is unavailable for your region. Please use a proxy or a VPN in another region \
or search the album name on the web player and use the link there.")
time.sleep(5)
return
if alcovs == "3":
album_cover_url = albumMetadata["image"]["large"][:-7] + "max.jpg"
elif alcovs == "-1":
pass
else:
album_cover_url = albumMetadata["image"][
("thumbnail", "small", "large")[alcovs]
]
download_headers = {
"range": "bytes=0-",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0",
"referer": album_url
}
base_download_dir = Path(downloadDir)
parsedAlbumMetadata = {
"ALBUM": getMetadata(albumMetadata, "Album", "title"),
"ALBUMARTIST": getMetadata(albumMetadata, "Album Artist", "artist", "name"),
"COMMENT": comment,
"GENRE": getMetadata(albumMetadata, "Genre", "genre", "name"),
"ORGANIZATION": getMetadata(albumMetadata, "Record Label", "label", "name"),
}
if isPlist:
if getConfig("plistAlbumTags", True, "Tags").lower() == "y":
parsedAlbumMetadata['TRACKTOTAL'] = str(getMetadata(albumMetadata, "Album", "tracks_count")).zfill(2)
else:
parsedAlbumMetadata['TRACKTOTAL'] = str(albumTotal).zfill(2)
else:
parsedAlbumMetadata['TRACKTOTAL'] = str(len(tracks)).zfill(2)
if "(" in parsedAlbumMetadata['ALBUM'] and ")" in parsedAlbumMetadata['ALBUM']:
changeYearBrackets = getConfig('changeYearBrackets', False, 'Main')
if changeYearBrackets and changeYearBrackets.lower() == "y":
folderTemplate = re.sub(r"([^)]*{YEAR}[^(]*)",
lambda matchobj: matchobj.group(0).replace("(","[").replace(")", "]"),
folderTemplate)
if not comment:
parsedAlbumMetadata.pop('COMMENT')
elif comment.lower() == "url":
parsedAlbumMetadata["COMMENT"] = albumMetadata['url']
date_fields = ["release_date_original", "release_date_stream", "release_date_download"]
date_field = 0
while not parsedAlbumMetadata.get("YEAR"):
try:
parsedAlbumMetadata["YEAR"] = albumMetadata[date_fields[date_field]].split("-")[0]
except KeyError:
pass
date_field += 1
if date_field == 3:
print("The API didn't return a year. Tag will be left empty, \
and you may want to report this on the GitHub with the album URL.")
parsedAlbumMetadata["YEAR"] = ""
break
if not isPlist:
album_download_dir = base_download_dir / sanitizeFilename(folderTemplate.format(**parsedAlbumMetadata))
else:
album_download_dir = base_download_dir
if alcovs != "-1":
coverobj = pySmartDL.SmartDL(album_cover_url, str(album_download_dir / "cover.jpg"), progress_bar=False, threads=1)
coverobj.start()
if isDiscog:
print(f'Album {albumNumber} of {albumTotal}: {getMetadata(albumMetadata, "Album Artist", "artist", "name")} - {getMetadata(albumMetadata, "Album", "title")}:')
elif not isTrack:
print(f'{getMetadata(albumMetadata, "Album Artist", "artist", "name")} - {getMetadata(albumMetadata, "Album", "title")}:')
for track in tracks:
if isTrack:
ver = tracks[0].get("version", str())
if not isDiscog and not isPlist:
if ver:
print(f'{getMetadata(albumMetadata, "Album Artist", "artist", "name")} - {getMetadata(albumMetadata, "Album", "title")} ({ver}):')
else:
print(f'{getMetadata(albumMetadata, "Album Artist", "artist", "name")} - {getMetadata(albumMetadata, "Album", "title")}:')
else:
ver = track.get("version", str())
if not isPlist:
track_number = str(tracks.index(track) + 1).zfill(2)
else:
if getConfig("plistAlbumTags", True, "Tags").lower() == "y":
track_number = str(track['track_number']).zfill(2)
else:
track_number = str(albumNumber).zfill(2)
if not track["streamable"]:
print(f"Track {track_number} is restricted by right holders. Can't download.")
continue
metadata = {
"ARTIST": getMetadata(track, "Artist", "performer", "name"),
"COMPOSER": getMetadata(track, "Composer", "composer", "name"),
"COPYRIGHT": getMetadata(track, "Copyright", "copyright"),
"TITLE": getMetadata(track, "Title", "title"),
"TRACKNUMBER": str(track_number),
"ISRC": getMetadata(track, "ISRC", "isrc")
}
metadata.update(parsedAlbumMetadata)
metadata["DATE"] = metadata.pop("YEAR")
if getConfig("versionInTitle", True, "Tags").lower() == "y" \
and ver \
and ver not in metadata["TITLE"]:
metadata['TITLE'] = f"{metadata['TITLE']} ({ver})"
metadata_keys = [key for key in metadata.keys()]
for field in metadata_keys:
try:
if getConfig(field, False, "Tags").lower() == "n":
del metadata[field]
except AttributeError:
pass
if getConfig('extendedMetadata', True, 'Tags').lower() == "y" and formatId != "5" and "performers" in track:
performers = dict()
# removing control characters; qobuz likes to put carriage returns in their extended metadata
qobuzPerformers = re.sub(r'[\x00-\x1f\x7f-\x9f]', '', track["performers"])
for performerItem in qobuzPerformers.split(" - "):
if len(performerItem.split(", ")[:2]) >= 2:
person, role = performerItem.split(", ")[:2]
else:
continue
role = role.upper()
if role != "UNKNOWN":
if performers.get(role, False):
performers[role].append(person)
else:
performers[role] = [person]
for role, people in performers.items():
if len(people) <= 1:
metadata[role] = people[0]
elif len(people) > 1:
metadata[role + "s"] = ", ".join(people)
current_time = time.time()
magic_strings = [
"e28e9f3d71d274a605693111477d4fe2", # h.initialSeed("ZTI4ZTlmM2Q3MWQyNzRhNjA1NjkzMT", window.utimezone.berlin)
"29dc1e01d6c8ad9eee63b249bc6412d9", # h.initialSeed("MjlkYzFlMDFkNmM4YWQ5ZWVlNjNiMj", window.utimezone.dublin)
"37ff1b4edefab5dfd5a03df9bafcd47d", # h.initialSeed("ZTI4ZTlmM2Q3MWQyNzRhNjA1NjkzMT", window.utimezone.london)
appSecret
]
magic_string = magic_strings[0] # TODO: iterate over each string and check if it works or not
reqsigt = f"trackgetFileUrlformat_id{formatId}intentstreamtrack_id{track['id']}{current_time}{magic_string}"
reqsighst = hashlib.md5(reqsigt.encode('utf-8')).hexdigest()
responset = session.get("https://www.qobuz.com/api.json/0.2/track/getFileUrl?",
params={
"request_ts": current_time,
"request_sig": reqsighst,
"track_id": track["id"],
"format_id": formatId,
"intent": "stream"
}
)
tr = responset.json()
if isPlist:
track_number = str(albumNumber).zfill(2)
isRes = False
try:
finalurltr = tr['url']
except KeyError:
isRes = True
else:
if "restrictions" in tr:
if "TrackRestrictedByRightHolders" in tr['restrictions']:
isRes = True
if 'sample' in tr and tr['sample']:
isRes = True
if isRes:
print(f"Track {track_number} is restricted by right holders. Can't download.")
continue
temporary_filename = album_download_dir / f"{track_number}{fext}"
songobj = pySmartDL.SmartDL(finalurltr, str(temporary_filename), request_args={"headers": download_headers})
if formatId == "5":
albumFormat = "320kbps MP3"
else:
try:
albumFormat = f"{tr['bit_depth']} bits / {tr['sampling_rate']} kHz - {track['maximum_channel_count']} channels"
except KeyError:
albumFormat = "Unknown"
if not isPlist:
trTot = str(len(tracks)).zfill(2)
else:
trTot = albumTotal
if ver:
print(f"Downloading track {track_number} of {trTot}: {track['title']} ({ver}) - {albumFormat}")
else:
print(f"Downloading track {track_number} of {trTot}: {track['title']} - {albumFormat}")
songobj.start()
if alcovs != "-1":
albumArt = (album_download_dir / "cover.jpg").open(mode='rb').read()
else:
albumArt = ""
if fext == ".mp3":
add_mp3_tags(temporary_filename, metadata)
if alcovs != "-1":
add_mp3_cover(temporary_filename, albumArt)
else:
add_flac_tags(temporary_filename, metadata)
if alcovs != "-1":
add_flac_cover(temporary_filename, album_download_dir / 'cover.jpg')
filename = album_download_dir / sanitizeFilename(filenameTemplate.format(**metadata) + fext)
if filename.exists():
os.remove(filename)
try:
os.rename(temporary_filename, filename)
except OSError:
print("Failed to rename track. Maybe it exceeds the max path length for your OS.")
if alcovs != "-1":
if keep_cover.lower() == "n":
if (album_download_dir / "cover.jpg").exists():
os.remove(album_download_dir / "cover.jpg")
else:
if not (album_download_dir / "folder.jpg").exists():
os.rename(album_download_dir / "cover.jpg", album_download_dir / "folder.jpg")
else:
os.remove(album_download_dir / "cover.jpg")
if not isPlist:
if "goodies" in albumMetadata:
if albumMetadata["goodies"][0]["file_format_id"] == 21:
print("Booklet available, downloading...")
bookletobj = pySmartDL.SmartDL(albumMetadata["goodies"][0]["original_url"], str(album_download_dir / "booklet.pdf"), request_args={"headers": download_headers})
bookletobj.start()
def getOsType():
osPlatform = platform.system()
if osPlatform == 'Windows':
return True
else:
return False
# Untested. Only for compiled builds.
def update(currentVer):
try:
latestVer = requests.get("https://thoas.feralhosting.com/sorrow/Qobuz-DL/latest_version.txt").text.lower()
except:
print("Failed to check for update.\n")
if latestVer != currentVer.lower():
print("There is a new version of Qo-DL available. Please download the new binary and config file from https://github.com/Sorrow446/Qo-DL/releases .")
else:
return
def osCommands(a):
if a == "pause":
if getOsType():
os.system('pause >nul')
else:
os.system('read -rsp $\"\"')
elif a == "clear":
if getOsType():
os.system('cls')
else:
os.system('clear')
else:
if getOsType():
os.system('title Qo-DL R5d (by Sorrow446 ^& DashLt)')
else:
sys.stdout.write("\x1b]2;Qo-DL R5d (by Sorrow446 ^& DashLt)\x07")
def preRip(appId, album_id, isTrack, isDiscog, isPlist, session, comment, formatId, alcovs, downloadDir, keepCover, folderTemplate, filenameTemplate, appSecret):
if isDiscog:
artistMetaJ = fetchArtistMeta(appId, album_id)
print(f"{artistMetaJ['name']} discography - {artistMetaJ['albums_count']} albums")
ids = [x['id'] for x in artistMetaJ['albums']['items']]
i = 0
for album_id in ids:
i += 1
rip(album_id, isTrack, isDiscog, isPlist, session, comment, formatId, alcovs, downloadDir, keepCover, folderTemplate, filenameTemplate, i, artistMetaJ['albums_count'], appSecret)
elif isPlist:
plistMetaJ = fetchPlistMeta(appId, album_id)
if not plistMetaJ['is_public']:
print("Playlist is not public. If you are the owner of it, please make it public.")
osCommands('pause')
if plistMetaJ['tracks_count'] > 500:
print("Support for playlists with more than 500 tracks coming soon.")
osCommands('pause')
downloadDir += '/' + sanitizeFilename(f"{plistMetaJ['owner']['name']} - {plistMetaJ['name']}")
print(f"{plistMetaJ['owner']['name']} - {plistMetaJ['name']}")
ids = [x['id'] for x in plistMetaJ['tracks']['items']]
i = 0
for album_id in ids:
i += 1
rip(album_id, True, isDiscog, isPlist, session, comment, formatId, alcovs, downloadDir, "n", folderTemplate, filenameTemplate, i, plistMetaJ['tracks_count'], appSecret)
else:
rip(album_id, isTrack, isDiscog, isPlist, session, comment, formatId, alcovs, downloadDir, keepCover, folderTemplate, filenameTemplate, "", "", appSecret)
def init():
if not os.path.exists('config.ini'):
print("Config file appears to be missing, but this may be a false positive. Please check and re-download the file if necessary.\n\n")
osCommands('title')
global msList
global msList2
global msList3
cwd = os.getcwd()
currentVer = "r5d"
ssl._create_default_https_context = ssl._create_unverified_context
msList, msList2, msList3 = [], [], ["appId", "appSecret", "email", "formatId", "password", "coverSize", "downloadDir", "keepCover", "useProxy", "proxy", "skipPwHashCheck", "checkForUpdates", "folderTemplate", "filenameTemplate"]
try:
if sys.argv[1]:
cline = True
parser = argparse.ArgumentParser(
description='A tool written in Python to download MP3s & FLACs from Qobuz.')
parser.add_argument(
'-url',
default='',
help='Qobuz Player or Qobuz store URL. Single track or album.')
parser.add_argument(
'-q',
default='',
help='Download quality. 5 = 320 kbps MP3, 6 = 16-bit FLAC, 7 = 24-bit / =< 96kHz FLAC, 27 = best avail - 24-bit / >96 kHz =< 192 kHz FLAC. If the chosen qual is unavailable, the next best option will be used as a fallback.')
parser.add_argument(
'-p',
default='',
help='Where to download tracks to. Make sure you wrap this up in double quotes.')
parser.add_argument(
'-list',
default='',
help='Download from a list of URLs. -list <txt filename>.')
parser.add_argument(
'-c',
default='',
help='Cover size to fetch. -1 = no cover fetched, 0 = 50x50, 1 = 230x230, 2 = 600x600. 3 = max')
parser.add_argument(
'-s',
default='',
help='File naming scheme. 1 = "01. ", 2 = "01 -"')
parser.add_argument(
'-k',
default='',
help='Leave folder.jpg in album dir. Y or N.')
parser.add_argument(
'-proxy',
default='',
help="<IP address>:<port>. Must be https. This can't be used to bypass Qobuz's region restrictions for track downloading. It only prevents 404s.")
parser.add_argument(
'-comment',
default='',
help='Custom comment. You can also input "URL" to write the album URL to the field. Make sure you wrap this up in double quotes.')
parser.add_argument(
'-skipcheck',
default='',
help='Skip check to see if password is a valid MD5 hash.')
args = parser.parse_args()
if args.url:
album_url = args.url
if args.q:
formatId = args.q
else:
formatId = getConfig('formatId', True, 'Main')
if not args.c == "":
cover_size = args.c
else:
cover_size = getConfig('coverSize', True, 'Main')
if cover_size == "0":
alcovs = "thumbnail"
elif cover_size == "1":
alcovs = "small"
elif cover_size == "2":
alcovs = "large"
else:
alcovs = cover_size
if args.p:
downloadDir = args.p
else:
downloadDir = getConfig('downloadDir', False, 'Main')
if args.list:
txtFilename = args.list
if args.k:
keepCover = args.k
else:
keepCover = getConfig('keepCover', True, 'Main')
if args.proxy:
proxy = args.proxy
useProxy = "y"
if args.comment:
comment = args.comment
else:
comment = getConfig('comment', False, 'Tags')
if args.skipcheck:
skipPwHashCheck = args.skipcheck
except IndexError:
cline = False
formatId = getConfig('formatId', True, 'Main')
cover_size = getConfig('coverSize', True, 'Main')
downloadDir = getConfig('downloadDir', False, 'Main')
keepCover = getConfig('keepCover', True, 'Main')
comment = getConfig('comment', False, 'Tags')
if cover_size == "0":
alcovs = "thumbnail"
elif cover_size == "1":
alcovs = "small"
elif cover_size == "2":
alcovs = "large"
else:
alcovs = cover_size
email = getConfig('email', True, 'Main')
password = getConfig('password', True, 'Main')
appId = getConfig('appId', False, 'Main')
appSecret = getConfig('appSecret', False, 'Main')
useProxy = getConfig('useProxy', True, 'Main')
skipPwHashCheck = getConfig('skipPwHashCheck', True, 'Main')
proxy = getConfig('proxy', False, 'Main')
checkForUpdates = getConfig('checkForUpdates', True, 'Main')
filenameTemplate = getConfig('filenameTemplate', True, 'Main')
folderTemplate = getConfig('folderTemplate', True, 'Main')
if checkForUpdates.lower() == "y":
update(currentVer)
if msList2:
msList2j = ', '.join(msList2)
print(f"The following required fields in your config file are missing: {msList2j}.")
config = configparser.ConfigParser(comment_prefixes='/', allow_no_value=True)
config.optionxform=str
config.read('config.ini')
for item in msList2:
if item.lower() in msList3:
config.set('Main', item, f'""')
else:
config.set('Tags', item, f'""')
with open("config.ini", "w") as fi:
config.write(fi)
print("Wrote missing field(s) to config file. Please fill them in.\n"
"Exiting...")
time.sleep(3)
sys.exit()
if msList:
msList = ', '.join(msList)
print(f"The following required fields in your config file are empty: {msList}.\n"
"Please fill them in\n. Press any key to exit.")
osCommands('pause')
sys.exit()
if skipPwHashCheck.lower() == "n":
if not re.findall(r"\b([a-f\d]{32}|[A-F\d]{32})\b", password):
print("Your password is not a valid MD5 hash.")
npassword = hashlib.md5(password.encode("utf-8")).hexdigest()
config = configparser.ConfigParser(comment_prefixes='/', allow_no_value=True)
config.optionxform=str
config.read('config.ini')
config.set('Main', 'password', f'"{npassword}"')
with open("config.ini", "w") as fi:
config.write(fi)
password = getConfig('password', True, 'Main')
print("Wrote hashed password to config file.")
if useProxy == "y":
if not proxy:
print("You have useProxy enabled, but didn't provide a proxy. Exiting...")
time.sleep(3)
sys.exit(1)
global session
session = requests.Session()
session.headers.update({"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0"})
if useProxy == "y":
session.proxies.update({
"https":str(proxy)
})
responset0 = session.get("https://www.qobuz.com/api.json/0.2/user/login?",
params={
"email": email,
"password": password,
"app_id": appId,
}
)
rc = responset0.status_code
try:
ssc0 = responset0.json()
except json.decoder.JSONDecodeError:
if rc == 503 or rc == 500:
print("Qobuz appears to currently be down. Try again later. Exiting...")
time.sleep(3)
sys.exit()
if ssc0.get("message") == "Invalid or missing app_id parameter":
print("appId in config missing on not working; getting new one...")
try:
appId, appSecret = getAppIdAndSecret()
except BundleError as error:
if isinstance(error, BundleNotFoundError):
print("Unable to find URL for bundle.js in login page")
print("If you raise an issue about this, please include the file login.html.gz, residing in " + os.getcwd(), end="\n\n")
elif isinstance(error, AppIdNotFoundError):
print("Unable to get AppId (and possibly appSecret) from bundle.js")
print("If you raise an issue about this, please include the file bundle.js.gz, residing in " + os.getcwd(), end="\n\n")
elif isinstance(error, SecretNotFoundError):
print("Unable to get appSecret from bundle.js")
print("If you raise an issue about this, please include the file bundle.js.gz, residing in " + os.getcwd(), end="\n\n")
sys.exit()
config = configparser.ConfigParser(comment_prefixes='/', allow_no_value=True)
config.optionxform=str
config.read('config.ini')
config.set('Main', 'appId', f'"{appId}"')
config.set('Main', 'appSecret', f'"{appSecret}"')
with open("config.ini", "w") as fi:
config.write(fi)
print("Obtained new appId and appSecret.")
responset0 = session.get("https://www.qobuz.com/api.json/0.2/user/login?",
params={
"email": email,
"password": password,
"app_id": appId,
}
)
ssc0 = responset0.json()
rc = responset0.status_code
if ssc0.get("message") == "Invalid or missing app_id parameter":
print("Obtained appId invalid, exiting...")
sys.exit()
session.headers.update({"X-App-Id": appId})
if rc == 401:
print("Bad credentials. Exiting...")
time.sleep(2)
sys.exit()
elif rc == 200:
try:
ssc1 = ssc0['user']['credential']['parameters']['label']
except TypeError:
print("Free accounts are not eligible to get tracks.\nExiting...")
time.sleep(2)
sys.exit()
userAuthToken = ssc0["user_auth_token"]
session.headers.update(({"X-User-Auth-Token": userAuthToken}))
if not cline:
print(f"Signed in successfully - {ssc1} account. \n")
while True:
if cline:
try:
if txtFilename:
if not os.path.isfile('config.ini'):
os.chdir(cwd)
try:
with open(txtFilename) as fin:
lines = [line for line in fin]
for line in lines:
album_url = line.strip()
try:
album_id = getAlbumId(album_url)
except AttributeError:
print(f"Invalid URL {album_url}, skipping...")
isTrack = "/track/" in album_url # could be better, but does it really matter?
isDiscog = "/artist/" in album_url
isPlist = "/playlist/" in album_url
preRip(appId, album_id, isTrack, isDiscog, isPlist, session, comment, formatId, alcovs, downloadDir, keepCover, folderTemplate, filenameTemplate, appSecret)
if not lines.index(line) == len(lines) - 1: # don't want to say we're moving on at the end
print("Moving onto next item in list...\n")
print("Finished list. Exiting...")
time.sleep(1)
sys.exit()
except FileNotFoundError:
print(f"Specified text file {txtFilename} doesn't exist. Exiting...")
time.sleep(2)
sys.exit(1)
except NameError:
pass
try:
if args.url:
album_url = args.url
try:
album_id = getAlbumId(album_url)
except:
print("Invalid URL. Exiting...")
time.sleep(1)
osCommands('clear')
sys.exit(1)
isTrack = "/track/" in album_url
isDiscog = "/artist" in album_url
isPlist = "/playlist/" in album_url
preRip(appId, album_id, isTrack, isDiscog, isPlist, session, comment, formatId, alcovs, downloadDir, keepCover, folderTemplate, filenameTemplate, appSecret)
print("Finished. Exiting...")
time.sleep(1)
sys.exit()
except NameError:
try:
album_url = input("Input Qobuz Player or Qobuz store URL:\n")
except KeyboardInterrupt:
sys.exit()
try:
album_id = getAlbumId(album_url)
except AttributeError:
print("Invalid URL. Returning to URL input screen...")
time.sleep(1)
osCommands('clear')
continue
isTrack = "/track/" in album_url
isDiscog = "/artist/" in album_url
isPlist = "/playlist/" in album_url
preRip(appId, album_id, isTrack, isDiscog, isPlist, session, comment, formatId, alcovs, downloadDir, keepCover, folderTemplate, filenameTemplate, appSecret)
print("Returning to URL input screen...")
time.sleep(1)
osCommands('clear')
if __name__ == '__main__':
try:
init()
except (KeyboardInterrupt, SystemExit):
sys.exit()
except:
traceback.print_exc()
input("\nAn exception has occurred. Press enter to exit.")
sys.exit()