aboutsummaryrefslogtreecommitdiff
path: root/code/utils/source_helpers/spotify/playlist.py
blob: 7ca9c6a55c5006a3f044242529373d042de3db26 (plain)
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
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 playlist info from the Spotify API
    """
    playlist_id = query.split("/playlist/")[1]

    try:
        # Get the playlist info
        response = requests.get(
            f"https://api.spotify.com/v1/playlists/{playlist_id}",
            headers=headers,
        )

        if response.status_code == 404:
            embed = create_embed(
                title="Playlist Not Found",
                description=(
                    "The playlist could not be found as the provided link is"
                    " invalid. Please try again."
                ),
            )
            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 playlist info
        playlist = response.json()
        name = playlist["name"]
        owner = playlist["owner"]["display_name"]
        num_tracks = len(playlist["tracks"]["items"])
        artwork_url = playlist["images"][0]["url"]
    except IndexError:
        LOG.error("Failed unpacking Spotify playlist info")
        return None, None
    except (JSONDecodeError, requests.HTTPError):
        LOG.error("Failed making request to Spotify API")
        return None, None

    embed = create_embed(
        title="Playlist Queued",
        description=(
            f"**{name}** from **{owner}**\n"
            f"` {num_tracks} ` tracks\n\n"
            f"Queued by {user.mention}"
        ),
        thumbnail=artwork_url,
    )

    return playlist, embed