Add support for Spotify artist
links
This commit is contained in:
parent
319fdc62f2
commit
60bace9f28
@ -153,6 +153,34 @@ class SpotifySource(Source):
|
|||||||
LoadType.PLAYLIST, tracks, playlist_info=PlaylistInfo.none()
|
LoadType.PLAYLIST, tracks, playlist_info=PlaylistInfo.none()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
async def load_artist(self, user, metadata):
|
||||||
|
tracks = []
|
||||||
|
for track in metadata["tracks"]:
|
||||||
|
try:
|
||||||
|
artwork_url = track["album"]["images"][0]["url"]
|
||||||
|
except IndexError:
|
||||||
|
artwork_url = None
|
||||||
|
tracks.append(
|
||||||
|
CustomAudioTrack(
|
||||||
|
{
|
||||||
|
"identifier": track["id"],
|
||||||
|
"isSeekable": True,
|
||||||
|
"author": track["artists"][0]["name"],
|
||||||
|
"length": track["duration_ms"],
|
||||||
|
"isStream": False,
|
||||||
|
"title": track["name"],
|
||||||
|
"uri": track["external_urls"]["spotify"],
|
||||||
|
"duration": track["duration_ms"],
|
||||||
|
"artworkUrl": artwork_url,
|
||||||
|
},
|
||||||
|
requester=user,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
return LoadResult(
|
||||||
|
LoadType.PLAYLIST, tracks, playlist_info=PlaylistInfo.none()
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Custom Source for Apple Music links
|
Custom Source for Apple Music links
|
||||||
|
@ -7,6 +7,7 @@ from utils.source_helpers.apple import (
|
|||||||
)
|
)
|
||||||
from utils.source_helpers.spotify import (
|
from utils.source_helpers.spotify import (
|
||||||
album as spotify_album,
|
album as spotify_album,
|
||||||
|
artist as spotify_artist,
|
||||||
playlist as spotify_playlist,
|
playlist as spotify_playlist,
|
||||||
song as spotify_song,
|
song as spotify_song,
|
||||||
)
|
)
|
||||||
@ -29,6 +30,7 @@ async def parse_custom_source(
|
|||||||
},
|
},
|
||||||
"spotify": {
|
"spotify": {
|
||||||
"album": spotify_album.load,
|
"album": spotify_album.load,
|
||||||
|
"artist": spotify_artist.load,
|
||||||
"playlist": spotify_playlist.load,
|
"playlist": spotify_playlist.load,
|
||||||
"song": spotify_song.load,
|
"song": spotify_song.load,
|
||||||
},
|
},
|
||||||
@ -43,7 +45,6 @@ async def parse_custom_source(
|
|||||||
"apple": AppleSource,
|
"apple": AppleSource,
|
||||||
"spotify": SpotifySource,
|
"spotify": SpotifySource,
|
||||||
}
|
}
|
||||||
|
|
||||||
# Catch all songs
|
# Catch all songs
|
||||||
if "?i=" in query or "/track/" in query:
|
if "?i=" in query or "/track/" in query:
|
||||||
song, embed = await load_funcs[provider]["song"](
|
song, embed = await load_funcs[provider]["song"](
|
||||||
@ -76,5 +77,15 @@ async def parse_custom_source(
|
|||||||
results = await sources[provider].load_album(self, user, album)
|
results = await sources[provider].load_album(self, user, album)
|
||||||
else:
|
else:
|
||||||
return None, embed
|
return None, embed
|
||||||
|
# Catch Spotify artists
|
||||||
|
elif "/artist/" in query:
|
||||||
|
artist, embed = await load_funcs[provider]["artist"](
|
||||||
|
headers[provider], query, user
|
||||||
|
)
|
||||||
|
|
||||||
|
if artist:
|
||||||
|
results = await sources[provider].load_artist(self, user, artist)
|
||||||
|
else:
|
||||||
|
return None, embed
|
||||||
|
|
||||||
return results, embed
|
return results, embed
|
||||||
|
77
code/utils/source_helpers/spotify/artist.py
Normal file
77
code/utils/source_helpers/spotify/artist.py
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
import datetime
|
||||||
|
import discord
|
||||||
|
import requests
|
||||||
|
from typing import Tuple, Optional
|
||||||
|
from requests.exceptions import JSONDecodeError
|
||||||
|
|
||||||
|
from utils.config import create_embed, LOG
|
||||||
|
|
||||||
|
|
||||||
|
async def load(
|
||||||
|
headers: dict,
|
||||||
|
query: str,
|
||||||
|
user: discord.User,
|
||||||
|
) -> Tuple[Optional[dict], Optional[discord.Embed]]:
|
||||||
|
"""
|
||||||
|
Get the artists top tracks from the Spotify API
|
||||||
|
"""
|
||||||
|
artist_id = query.split("/artist/")[1]
|
||||||
|
|
||||||
|
try:
|
||||||
|
# Get the artists songs
|
||||||
|
response = requests.get(
|
||||||
|
f"https://api.spotify.com/v1/artists/{artist_id}/top-tracks",
|
||||||
|
headers=headers,
|
||||||
|
)
|
||||||
|
|
||||||
|
if response.status_code == 404:
|
||||||
|
embed = create_embed(
|
||||||
|
title="Artist Not Found",
|
||||||
|
description=(
|
||||||
|
"Either the provided link is malformed, the artist does"
|
||||||
|
" not exist, or the artist does not have any songs."
|
||||||
|
),
|
||||||
|
)
|
||||||
|
return None, embed
|
||||||
|
|
||||||
|
if response.status_code == 401:
|
||||||
|
LOG.error(
|
||||||
|
"Could not authorize with Spotify API. Likely need to"
|
||||||
|
" restart the bot."
|
||||||
|
)
|
||||||
|
return None, None
|
||||||
|
|
||||||
|
response.raise_for_status()
|
||||||
|
# Unpack the artists songs
|
||||||
|
artist = response.json()
|
||||||
|
name = artist["tracks"][0]["artists"][0]["name"]
|
||||||
|
num_tracks = len(artist["tracks"])
|
||||||
|
|
||||||
|
# Get the artist info (for the thumbnail)
|
||||||
|
response = requests.get(
|
||||||
|
f"https://api.spotify.com/v1/artists/{artist_id}",
|
||||||
|
headers=headers,
|
||||||
|
)
|
||||||
|
|
||||||
|
response.raise_for_status()
|
||||||
|
try:
|
||||||
|
artwork_url = response.json()["images"][0]["url"]
|
||||||
|
except IndexError:
|
||||||
|
artwork_url = None
|
||||||
|
|
||||||
|
except IndexError:
|
||||||
|
LOG.error("Failed unpacking Spotify artist info")
|
||||||
|
return None, None
|
||||||
|
except (JSONDecodeError, requests.HTTPError):
|
||||||
|
LOG.error("Failed making request to Spotify API")
|
||||||
|
return None, None
|
||||||
|
|
||||||
|
embed = create_embed(
|
||||||
|
title="Artist Queued",
|
||||||
|
description=(
|
||||||
|
f"Top `{num_tracks}` track by **{name}**\n\n"
|
||||||
|
f"Queued by {user.mention}"
|
||||||
|
),
|
||||||
|
thumbnail=artwork_url,
|
||||||
|
)
|
||||||
|
return artist, embed
|
Loading…
x
Reference in New Issue
Block a user