2020-08-15 19:34:10 +00:00
|
|
|
import logging
|
|
|
|
|
2020-09-24 17:20:01 +00:00
|
|
|
from deemix.api.deezer import APIError, LyricsStatus
|
|
|
|
from deemix.utils import removeFeatures, andCommaConcat, uniqueArray, generateReplayGainString
|
2020-08-15 19:34:10 +00:00
|
|
|
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
logger = logging.getLogger('deemix')
|
|
|
|
|
2020-09-24 17:20:01 +00:00
|
|
|
VARIOUS_ARTISTS = 5080
|
|
|
|
|
2020-08-15 19:34:10 +00:00
|
|
|
class Track:
|
|
|
|
def __init__(self, dz, settings, trackAPI_gw, trackAPI=None, albumAPI_gw=None, albumAPI=None):
|
|
|
|
self.parseEssentialData(dz, trackAPI_gw)
|
|
|
|
|
|
|
|
self.title = trackAPI_gw['SNG_TITLE'].strip()
|
2020-08-18 13:13:32 +00:00
|
|
|
if trackAPI_gw.get('VERSION') and not trackAPI_gw['VERSION'] in trackAPI_gw['SNG_TITLE']:
|
2020-08-15 21:03:05 +00:00
|
|
|
self.title += " " + trackAPI_gw['VERSION'].strip()
|
2020-08-15 19:34:10 +00:00
|
|
|
|
2020-08-18 13:13:32 +00:00
|
|
|
self.position = trackAPI_gw.get('POSITION')
|
2020-08-15 19:34:10 +00:00
|
|
|
|
|
|
|
self.localTrack = int(self.id) < 0
|
|
|
|
if self.localTrack:
|
|
|
|
self.parseLocalTrackData(trackAPI_gw)
|
|
|
|
else:
|
|
|
|
self.parseData(dz, settings, trackAPI_gw, trackAPI, albumAPI_gw, albumAPI)
|
|
|
|
|
2020-09-24 17:20:01 +00:00
|
|
|
# Make sure there is at least one artist
|
2020-08-15 19:34:10 +00:00
|
|
|
if not 'Main' in self.artist:
|
|
|
|
self.artist['Main'] = [self.mainArtist['name']]
|
|
|
|
|
|
|
|
# Fix incorrect day month when detectable
|
|
|
|
if int(self.date['month']) > 12:
|
|
|
|
monthTemp = self.date['month']
|
|
|
|
self.date['month'] = self.date['day']
|
|
|
|
self.date['day'] = monthTemp
|
|
|
|
if int(self.album['date']['month']) > 12:
|
|
|
|
monthTemp = self.album['date']['month']
|
|
|
|
self.album['date']['month'] = self.album['date']['day']
|
|
|
|
self.album['date']['day'] = monthTemp
|
|
|
|
|
|
|
|
# Add playlist data if track is in a playlist
|
|
|
|
self.playlist = None
|
|
|
|
if "_EXTRA_PLAYLIST" in trackAPI_gw:
|
2020-09-25 18:24:35 +00:00
|
|
|
self.parsePlaylistData(trackAPI_gw["_EXTRA_PLAYLIST"], settings)
|
2020-08-15 19:34:10 +00:00
|
|
|
|
2020-09-27 21:44:37 +00:00
|
|
|
self.singleDownload = trackAPI_gw.get('SINGLE_TRACK', False)
|
|
|
|
|
2020-08-24 11:07:38 +00:00
|
|
|
self.generateMainFeatStrings()
|
2020-08-15 19:34:10 +00:00
|
|
|
|
|
|
|
# Bits useful for later
|
|
|
|
self.searched = False
|
|
|
|
self.selectedFormat = 0
|
|
|
|
self.dateString = None
|
|
|
|
self.album['picUrl'] = None
|
|
|
|
self.album['picPath'] = None
|
|
|
|
self.album['bitrate'] = 0
|
|
|
|
self.album['dateString'] = None
|
2020-08-15 21:03:05 +00:00
|
|
|
self.artistsString = ""
|
2020-08-15 19:34:10 +00:00
|
|
|
|
|
|
|
def parseEssentialData(self, dz, trackAPI_gw):
|
|
|
|
self.id = trackAPI_gw['SNG_ID']
|
|
|
|
self.duration = trackAPI_gw['DURATION']
|
|
|
|
self.MD5 = trackAPI_gw['MD5_ORIGIN']
|
|
|
|
self.mediaVersion = trackAPI_gw['MEDIA_VERSION']
|
|
|
|
self.fallbackId = "0"
|
|
|
|
if 'FALLBACK' in trackAPI_gw:
|
|
|
|
self.fallbackId = trackAPI_gw['FALLBACK']['SNG_ID']
|
2020-08-15 21:03:05 +00:00
|
|
|
self.filesizes = dz.get_track_filesizes(self.id)
|
2020-08-15 19:34:10 +00:00
|
|
|
|
|
|
|
def parseLocalTrackData(self, trackAPI_gw):
|
2020-09-24 17:20:01 +00:00
|
|
|
# Local tracks has only the trackAPI_gw page and
|
|
|
|
# contains only the tags provided by the file
|
2020-08-15 19:34:10 +00:00
|
|
|
self.album = {
|
|
|
|
'id': "0",
|
|
|
|
'title': trackAPI_gw['ALB_TITLE'],
|
2020-09-24 17:20:01 +00:00
|
|
|
'pic': trackAPI_gw.get('ALB_PICTURE', "")
|
2020-08-15 19:34:10 +00:00
|
|
|
}
|
|
|
|
self.mainArtist = {
|
|
|
|
'id': "0",
|
|
|
|
'name': trackAPI_gw['ART_NAME'],
|
|
|
|
'pic': ""
|
|
|
|
}
|
|
|
|
self.artists = [trackAPI_gw['ART_NAME']]
|
|
|
|
self.artist = {
|
|
|
|
'Main': [trackAPI_gw['ART_NAME']]
|
|
|
|
}
|
|
|
|
self.date = {
|
|
|
|
'day': "00",
|
|
|
|
'month': "00",
|
|
|
|
'year': "XXXX"
|
|
|
|
}
|
2020-09-24 17:20:01 +00:00
|
|
|
# Defaulting all the missing data
|
2020-08-15 19:34:10 +00:00
|
|
|
self.ISRC = ""
|
|
|
|
self.album['artist'] = self.artist
|
|
|
|
self.album['artists'] = self.artists
|
|
|
|
self.album['barcode'] = "Unknown"
|
|
|
|
self.album['date'] = self.date
|
|
|
|
self.album['discTotal'] = "0"
|
|
|
|
self.album['explicit'] = False
|
|
|
|
self.album['genre'] = []
|
|
|
|
self.album['label'] = "Unknown"
|
|
|
|
self.album['mainArtist'] = self.mainArtist
|
2020-09-20 08:50:09 +00:00
|
|
|
self.album['recordType'] = "album"
|
2020-08-15 19:34:10 +00:00
|
|
|
self.album['trackTotal'] = "0"
|
|
|
|
self.bpm = 0
|
|
|
|
self.contributors = {}
|
|
|
|
self.copyright = ""
|
|
|
|
self.discNumber = "0"
|
|
|
|
self.explicit = False
|
|
|
|
self.lyrics = {}
|
|
|
|
self.replayGain = ""
|
|
|
|
self.trackNumber = "0"
|
|
|
|
|
|
|
|
def parseData(self, dz, settings, trackAPI_gw, trackAPI, albumAPI_gw, albumAPI):
|
2020-08-18 13:13:32 +00:00
|
|
|
self.discNumber = trackAPI_gw.get('DISK_NUMBER')
|
2020-09-12 11:08:28 +00:00
|
|
|
self.explicit = bool(int(trackAPI_gw.get('EXPLICIT_LYRICS', "0")))
|
2020-08-18 13:13:32 +00:00
|
|
|
self.copyright = trackAPI_gw.get('COPYRIGHT')
|
2020-08-15 19:34:10 +00:00
|
|
|
self.replayGain = ""
|
|
|
|
if 'GAIN' in trackAPI_gw:
|
2020-09-24 17:20:01 +00:00
|
|
|
self.replayGain = generateReplayGainString(trackAPI_gw['GAIN'])
|
|
|
|
self.ISRC = trackAPI_gw.get('ISRC')
|
2020-08-15 19:34:10 +00:00
|
|
|
self.trackNumber = trackAPI_gw['TRACK_NUMBER']
|
|
|
|
self.contributors = trackAPI_gw['SNG_CONTRIBUTORS']
|
|
|
|
|
2020-08-15 21:03:05 +00:00
|
|
|
self.lyrics = {
|
2020-09-24 17:20:01 +00:00
|
|
|
'id': int(trackAPI_gw.get('LYRICS_ID', "0")),
|
2020-08-15 19:34:10 +00:00
|
|
|
'unsync': None,
|
2020-09-10 11:44:38 +00:00
|
|
|
'sync': None,
|
|
|
|
'syncID3': None
|
2020-08-15 19:34:10 +00:00
|
|
|
}
|
2020-09-24 17:20:01 +00:00
|
|
|
if not "LYRICS" in trackAPI_gw and self.lyrics['id'] != 0:
|
2020-08-15 19:34:10 +00:00
|
|
|
logger.info(f"[{trackAPI_gw['ART_NAME']} - {self.title}] Getting lyrics")
|
2020-10-01 14:04:11 +00:00
|
|
|
try:
|
|
|
|
trackAPI_gw["LYRICS"] = dz.get_lyrics_gw(self.id)
|
|
|
|
except APIError:
|
|
|
|
self.lyrics['id'] = 0
|
2020-09-24 17:20:01 +00:00
|
|
|
if self.lyrics['id'] != 0:
|
2020-08-18 13:13:32 +00:00
|
|
|
self.lyrics['unsync'] = trackAPI_gw["LYRICS"].get("LYRICS_TEXT")
|
2020-08-15 19:34:10 +00:00
|
|
|
if "LYRICS_SYNC_JSON" in trackAPI_gw["LYRICS"]:
|
2020-09-24 17:20:01 +00:00
|
|
|
syncLyricsJson = trackAPI_gw["LYRICS"]["LYRICS_SYNC_JSON"]
|
2020-08-15 19:34:10 +00:00
|
|
|
self.lyrics['sync'] = ""
|
2020-09-10 11:44:38 +00:00
|
|
|
self.lyrics['syncID3'] = []
|
2020-09-22 09:32:07 +00:00
|
|
|
timestamp = ""
|
|
|
|
milliseconds = 0
|
2020-09-24 17:20:01 +00:00
|
|
|
for line in range(len(syncLyricsJson)):
|
|
|
|
if syncLyricsJson[line]["line"] != "":
|
|
|
|
timestamp = syncLyricsJson[line]["lrc_timestamp"]
|
|
|
|
milliseconds = int(syncLyricsJson[line]["milliseconds"])
|
2020-08-15 19:34:10 +00:00
|
|
|
else:
|
2020-09-24 17:20:01 +00:00
|
|
|
notEmptyLine = line + 1
|
|
|
|
while syncLyricsJson[notEmptyLine]["line"] == "":
|
|
|
|
notEmptyLine = notEmptyLine + 1
|
|
|
|
timestamp = syncLyricsJson[notEmptyLine]["lrc_timestamp"]
|
|
|
|
milliseconds = int(syncLyricsJson[notEmptyLine]["milliseconds"])
|
|
|
|
self.lyrics['sync'] += timestamp + syncLyricsJson[line]["line"] + "\r\n"
|
|
|
|
self.lyrics['syncID3'].append((syncLyricsJson[line]["line"], milliseconds))
|
2020-08-15 19:34:10 +00:00
|
|
|
|
2020-08-15 21:03:05 +00:00
|
|
|
self.mainArtist = {
|
2020-08-15 19:34:10 +00:00
|
|
|
'id': trackAPI_gw['ART_ID'],
|
|
|
|
'name': trackAPI_gw['ART_NAME'],
|
2020-08-18 13:13:32 +00:00
|
|
|
'pic': trackAPI_gw.get('ART_PICTURE')
|
2020-08-15 19:34:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self.date = None
|
|
|
|
if 'PHYSICAL_RELEASE_DATE' in trackAPI_gw:
|
|
|
|
self.date = {
|
|
|
|
'day': trackAPI_gw["PHYSICAL_RELEASE_DATE"][8:10],
|
|
|
|
'month': trackAPI_gw["PHYSICAL_RELEASE_DATE"][5:7],
|
|
|
|
'year': trackAPI_gw["PHYSICAL_RELEASE_DATE"][0:4]
|
|
|
|
}
|
|
|
|
|
|
|
|
self.album = {
|
|
|
|
'id': trackAPI_gw['ALB_ID'],
|
|
|
|
'title': trackAPI_gw['ALB_TITLE'],
|
2020-08-18 13:13:32 +00:00
|
|
|
'pic': trackAPI_gw.get('ALB_PICTURE'),
|
2020-08-15 19:34:10 +00:00
|
|
|
'barcode': "Unknown",
|
|
|
|
'label': "Unknown",
|
|
|
|
'explicit': False,
|
|
|
|
'date': None,
|
|
|
|
'genre': []
|
|
|
|
}
|
2020-09-24 17:20:01 +00:00
|
|
|
|
|
|
|
# Try the public API first (as it has more data)
|
|
|
|
if not albumAPI:
|
|
|
|
logger.info(f"[{self.mainArtist['name']} - {self.title}] Getting album infos")
|
|
|
|
try:
|
2020-08-15 19:34:10 +00:00
|
|
|
albumAPI = dz.get_album(self.album['id'])
|
2020-09-24 17:20:01 +00:00
|
|
|
except APIError:
|
|
|
|
albumAPI = None
|
|
|
|
|
|
|
|
if albumAPI:
|
2020-08-15 19:34:10 +00:00
|
|
|
self.album['title'] = albumAPI['title']
|
2020-09-24 17:20:01 +00:00
|
|
|
|
|
|
|
# Getting artist image ID
|
|
|
|
# ex: https://e-cdns-images.dzcdn.net/images/artist/f2bc007e9133c946ac3c3907ddc5d2ea/56x56-000000-80-0-0.jpg
|
|
|
|
artistPicture = albumAPI['artist']['picture_small']
|
|
|
|
artistPicture = artistPicture[artistPicture.find('artist/') + 7:-24]
|
2020-08-15 19:34:10 +00:00
|
|
|
self.album['mainArtist'] = {
|
|
|
|
'id': albumAPI['artist']['id'],
|
|
|
|
'name': albumAPI['artist']['name'],
|
2020-09-24 17:20:01 +00:00
|
|
|
'pic': artistPicture
|
2020-08-15 19:34:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self.album['artist'] = {}
|
|
|
|
self.album['artists'] = []
|
|
|
|
for artist in albumAPI['contributors']:
|
2020-09-24 17:20:01 +00:00
|
|
|
isVariousArtists = artist['id'] == VARIOUS_ARTISTS
|
|
|
|
isMainArtist = artist['role'] == "Main"
|
|
|
|
|
|
|
|
if not isVariousArtists or settings['albumVariousArtists'] and isVariousArtists:
|
2020-08-15 19:34:10 +00:00
|
|
|
if artist['name'] not in self.album['artists']:
|
|
|
|
self.album['artists'].append(artist['name'])
|
2020-09-24 17:20:01 +00:00
|
|
|
|
|
|
|
if isMainArtist or artist['name'] not in self.album['artist']['Main'] and not isMainArtist:
|
2020-08-15 19:34:10 +00:00
|
|
|
if not artist['role'] in self.album['artist']:
|
|
|
|
self.album['artist'][artist['role']] = []
|
|
|
|
self.album['artist'][artist['role']].append(artist['name'])
|
2020-09-24 17:20:01 +00:00
|
|
|
|
2020-08-15 19:34:10 +00:00
|
|
|
if settings['removeDuplicateArtists']:
|
|
|
|
self.album['artists'] = uniqueArray(self.album['artists'])
|
|
|
|
for role in self.album['artist'].keys():
|
|
|
|
self.album['artist'][role] = uniqueArray(self.album['artist'][role])
|
|
|
|
|
|
|
|
self.album['trackTotal'] = albumAPI['nb_tracks']
|
|
|
|
self.album['recordType'] = albumAPI['record_type']
|
|
|
|
|
2020-09-12 11:08:28 +00:00
|
|
|
self.album['barcode'] = albumAPI.get('upc', self.album['barcode'])
|
|
|
|
self.album['label'] = albumAPI.get('label', self.album['label'])
|
|
|
|
self.album['explicit'] = bool(albumAPI.get('explicit_lyrics', False))
|
2020-08-15 19:34:10 +00:00
|
|
|
if 'release_date' in albumAPI:
|
|
|
|
self.album['date'] = {
|
|
|
|
'day': albumAPI["release_date"][8:10],
|
|
|
|
'month': albumAPI["release_date"][5:7],
|
|
|
|
'year': albumAPI["release_date"][0:4]
|
|
|
|
}
|
2020-09-12 11:08:28 +00:00
|
|
|
self.album['discTotal'] = albumAPI.get('nb_disk', "1")
|
2020-08-18 13:13:32 +00:00
|
|
|
self.copyright = albumAPI.get('copyright')
|
2020-08-15 19:34:10 +00:00
|
|
|
|
2020-08-15 21:03:05 +00:00
|
|
|
if not self.album['pic']:
|
2020-09-24 17:20:01 +00:00
|
|
|
# Getting album cover ID
|
|
|
|
# ex: https://e-cdns-images.dzcdn.net/images/cover/2e018122cb56986277102d2041a592c8/56x56-000000-80-0-0.jpg
|
2020-08-15 19:34:10 +00:00
|
|
|
self.album['pic'] = albumAPI['cover_small'][albumAPI['cover_small'].find('cover/') + 6:-24]
|
|
|
|
|
2020-09-24 17:20:01 +00:00
|
|
|
if albumAPI.get('genres') and len(albumAPI['genres'].get('data', [])) > 0:
|
2020-08-15 19:34:10 +00:00
|
|
|
for genre in albumAPI['genres']['data']:
|
|
|
|
self.album['genre'].append(genre['name'])
|
2020-09-24 17:20:01 +00:00
|
|
|
else:
|
2020-08-15 19:34:10 +00:00
|
|
|
if not albumAPI_gw:
|
|
|
|
logger.info(f"[{self.mainArtist['name']} - {self.title}] Getting more album infos")
|
2020-09-24 17:20:01 +00:00
|
|
|
try:
|
|
|
|
albumAPI_gw = dz.get_album_gw(self.album['id'])
|
|
|
|
except APIError:
|
|
|
|
albumAPI_gw = None
|
|
|
|
raise AlbumDoesntExsists
|
|
|
|
|
2020-08-15 19:34:10 +00:00
|
|
|
self.album['title'] = albumAPI_gw['ALB_TITLE']
|
|
|
|
self.album['mainArtist'] = {
|
|
|
|
'id': albumAPI_gw['ART_ID'],
|
|
|
|
'name': albumAPI_gw['ART_NAME'],
|
|
|
|
'pic': None
|
|
|
|
}
|
2020-09-24 17:20:01 +00:00
|
|
|
|
|
|
|
# albumAPI_gw doesn't contain the artist cover
|
|
|
|
# Getting artist image ID
|
|
|
|
# ex: https://e-cdns-images.dzcdn.net/images/artist/f2bc007e9133c946ac3c3907ddc5d2ea/56x56-000000-80-0-0.jpg
|
2020-08-15 19:34:10 +00:00
|
|
|
logger.info(f"[{self.mainArtist['name']} - {self.title}] Getting artist picture fallback")
|
|
|
|
artistAPI = dz.get_artist(self.album['mainArtist']['id'])
|
|
|
|
self.album['mainArtist']['pic'] = artistAPI['picture_small'][artistAPI['picture_small'].find('artist/') + 7:-24]
|
2020-09-24 17:20:01 +00:00
|
|
|
|
|
|
|
self.album['artists'] = [albumAPI_gw['ART_NAME']]
|
2020-08-15 19:34:10 +00:00
|
|
|
self.album['trackTotal'] = albumAPI_gw['NUMBER_TRACK']
|
|
|
|
self.album['discTotal'] = albumAPI_gw['NUMBER_DISK']
|
2020-09-20 08:50:09 +00:00
|
|
|
self.album['recordType'] = "album"
|
2020-09-12 11:08:28 +00:00
|
|
|
self.album['label'] = albumAPI_gw.get('LABEL_NAME', self.album['label'])
|
2020-09-24 17:20:01 +00:00
|
|
|
|
|
|
|
if albumAPI_gw.get('EXPLICIT_ALBUM_CONTENT') and albumAPI_gw['EXPLICIT_ALBUM_CONTENT'].get('EXPLICIT_LYRICS_STATUS'):
|
|
|
|
explicitLyricsStatus = albumAPI_gw['EXPLICIT_ALBUM_CONTENT']['EXPLICIT_LYRICS_STATUS']
|
|
|
|
self.album['explicit'] = explicitLyricsStatus in [LyricsStatus.EXPLICIT, LyricsStatus.PARTIALLY_EXPLICIT]
|
|
|
|
|
2020-08-15 19:34:10 +00:00
|
|
|
if not self.album['pic']:
|
|
|
|
self.album['pic'] = albumAPI_gw['ALB_PICTURE']
|
|
|
|
if 'PHYSICAL_RELEASE_DATE' in albumAPI_gw:
|
|
|
|
self.album['date'] = {
|
|
|
|
'day': albumAPI_gw["PHYSICAL_RELEASE_DATE"][8:10],
|
|
|
|
'month': albumAPI_gw["PHYSICAL_RELEASE_DATE"][5:7],
|
|
|
|
'year': albumAPI_gw["PHYSICAL_RELEASE_DATE"][0:4]
|
|
|
|
}
|
2020-09-25 18:24:35 +00:00
|
|
|
self.album['picType'] = 'cover'
|
2020-08-15 19:34:10 +00:00
|
|
|
|
2020-09-24 17:20:01 +00:00
|
|
|
isAlbumArtistVariousArtists = self.album['mainArtist']['id'] == VARIOUS_ARTISTS
|
|
|
|
self.album['mainArtist']['save'] = not isAlbumArtistVariousArtists or settings['albumVariousArtists'] and isAlbumArtistVariousArtists
|
2020-08-15 19:34:10 +00:00
|
|
|
|
|
|
|
if self.album['date'] and not self.date:
|
|
|
|
self.date = self.album['date']
|
|
|
|
|
|
|
|
if not trackAPI:
|
|
|
|
logger.info(f"[{self.mainArtist['name']} - {self.title}] Getting extra track infos")
|
|
|
|
trackAPI = dz.get_track(self.id)
|
|
|
|
self.bpm = trackAPI['bpm']
|
|
|
|
|
|
|
|
if not self.replayGain and 'gain' in trackAPI:
|
2020-09-24 17:20:01 +00:00
|
|
|
self.replayGain = generateReplayGainString(trackAPI['gain'])
|
2020-08-15 19:34:10 +00:00
|
|
|
if not self.explicit:
|
|
|
|
self.explicit = trackAPI['explicit_lyrics']
|
|
|
|
if not self.discNumber:
|
|
|
|
self.discNumber = trackAPI['disk_number']
|
|
|
|
|
|
|
|
self.artist = {}
|
|
|
|
self.artists = []
|
|
|
|
for artist in trackAPI['contributors']:
|
2020-09-24 17:20:01 +00:00
|
|
|
isVariousArtists = artist['id'] == VARIOUS_ARTISTS
|
|
|
|
isMainArtist = artist['role'] == "Main"
|
|
|
|
|
|
|
|
if not isVariousArtists or len(trackAPI['contributors']) == 1 and isVariousArtists:
|
2020-08-15 19:34:10 +00:00
|
|
|
if artist['name'] not in self.artists:
|
|
|
|
self.artists.append(artist['name'])
|
2020-09-24 17:20:01 +00:00
|
|
|
|
|
|
|
if isMainArtist or artist['name'] not in self.artist['Main'] and not isMainArtist:
|
2020-08-15 19:34:10 +00:00
|
|
|
if not artist['role'] in self.artist:
|
|
|
|
self.artist[artist['role']] = []
|
|
|
|
self.artist[artist['role']].append(artist['name'])
|
2020-09-24 17:20:01 +00:00
|
|
|
|
2020-08-15 19:34:10 +00:00
|
|
|
if settings['removeDuplicateArtists']:
|
|
|
|
self.artists = uniqueArray(self.artists)
|
|
|
|
for role in self.artist.keys():
|
|
|
|
self.artist[role] = uniqueArray(self.artist[role])
|
|
|
|
|
|
|
|
if not self.album['discTotal']:
|
|
|
|
if not albumAPI_gw:
|
|
|
|
logger.info(f"[{self.mainArtist['name']} - {self.title}] Getting more album infos")
|
|
|
|
albumAPI_gw = dz.get_album_gw(self.album['id'])
|
|
|
|
self.album['discTotal'] = albumAPI_gw['NUMBER_DISK']
|
2020-09-24 17:20:01 +00:00
|
|
|
|
2020-08-15 19:34:10 +00:00
|
|
|
if not self.copyright:
|
|
|
|
if not albumAPI_gw:
|
|
|
|
logger.info(f"[{self.mainArtist['name']} - {self.title}] Getting more album infos")
|
|
|
|
albumAPI_gw = dz.get_album_gw(self.album['id'])
|
|
|
|
self.copyright = albumAPI_gw['COPYRIGHT']
|
|
|
|
|
2020-09-25 18:24:35 +00:00
|
|
|
def parsePlaylistData(self, playlist, settings):
|
2020-09-24 17:20:01 +00:00
|
|
|
self.playlist = {}
|
2020-09-25 18:24:35 +00:00
|
|
|
if 'dzcdn.net' in playlist['picture_small']:
|
|
|
|
url = playlist['picture_small']
|
|
|
|
picType = url[url.find('images/')+7:]
|
|
|
|
picType = picType[:picType.find('/')]
|
|
|
|
self.playlist['pic'] = url[url.find(picType+'/') + len(picType)+1:-24]
|
|
|
|
self.playlist['picType'] = picType
|
2020-09-24 17:20:01 +00:00
|
|
|
else:
|
2020-09-25 18:24:35 +00:00
|
|
|
self.playlist['pic'] = playlist['picture_xl']
|
|
|
|
self.playlist['picType'] = None
|
|
|
|
self.playlist['title'] = playlist['title']
|
2020-09-24 17:20:01 +00:00
|
|
|
self.playlist['mainArtist'] = {
|
2020-09-25 18:24:35 +00:00
|
|
|
'id': playlist['various_artist']['id'],
|
|
|
|
'name': playlist['various_artist']['name'],
|
|
|
|
'pic': playlist['various_artist']['picture_small'][
|
|
|
|
playlist['various_artist']['picture_small'].find('artist/') + 7:-24]
|
2020-09-24 17:20:01 +00:00
|
|
|
}
|
|
|
|
if settings['albumVariousArtists']:
|
2020-09-25 18:24:35 +00:00
|
|
|
self.playlist['artist'] = {"Main": [playlist['various_artist']['name'], ]}
|
|
|
|
self.playlist['artists'] = [playlist['various_artist']['name'], ]
|
2020-09-24 17:20:01 +00:00
|
|
|
else:
|
|
|
|
self.playlist['artist'] = {"Main": []}
|
|
|
|
self.playlist['artists'] = []
|
2020-09-25 18:24:35 +00:00
|
|
|
self.playlist['trackTotal'] = playlist['nb_tracks']
|
2020-09-24 17:20:01 +00:00
|
|
|
self.playlist['recordType'] = "compile"
|
|
|
|
self.playlist['barcode'] = ""
|
|
|
|
self.playlist['label'] = ""
|
2020-09-25 18:24:35 +00:00
|
|
|
self.playlist['explicit'] = playlist['explicit']
|
2020-09-24 17:20:01 +00:00
|
|
|
self.playlist['date'] = {
|
2020-09-25 18:24:35 +00:00
|
|
|
'day': playlist["creation_date"][8:10],
|
|
|
|
'month': playlist["creation_date"][5:7],
|
|
|
|
'year': playlist["creation_date"][0:4]
|
2020-09-24 17:20:01 +00:00
|
|
|
}
|
|
|
|
self.playlist['discTotal'] = "1"
|
2020-09-27 21:44:37 +00:00
|
|
|
self.playlist['playlistId'] = playlist['id']
|
|
|
|
self.playlist['owner'] = playlist['creator']
|
2020-09-24 17:20:01 +00:00
|
|
|
|
2020-08-15 19:34:10 +00:00
|
|
|
# Removes featuring from the title
|
|
|
|
def getCleanTitle(self):
|
|
|
|
return removeFeatures(self.title)
|
|
|
|
|
|
|
|
# Removes featuring from the album name
|
|
|
|
def getCleanAlbumTitle(self):
|
|
|
|
return removeFeatures(self.album['title'])
|
|
|
|
|
|
|
|
def getFeatTitle(self):
|
|
|
|
if self.featArtistsString and not "(feat." in self.title.lower():
|
|
|
|
return self.title + " ({})".format(self.featArtistsString)
|
|
|
|
return self.title
|
2020-08-24 11:07:38 +00:00
|
|
|
|
|
|
|
def generateMainFeatStrings(self):
|
|
|
|
self.mainArtistsString = andCommaConcat(self.artist['Main'])
|
2020-09-27 21:44:37 +00:00
|
|
|
self.featArtistsString = ""
|
2020-08-24 11:07:38 +00:00
|
|
|
if 'Featured' in self.artist:
|
|
|
|
self.featArtistsString = "feat. "+andCommaConcat(self.artist['Featured'])
|
2020-09-24 17:20:01 +00:00
|
|
|
|
|
|
|
class TrackError(Exception):
|
|
|
|
"""Base class for exceptions in this module."""
|
|
|
|
pass
|
|
|
|
|
|
|
|
class AlbumDoesntExsists(TrackError):
|
|
|
|
pass
|