add visit source link

This commit is contained in:
rintyuu 2024-07-11 14:52:25 -07:00
parent e4eb69e7d5
commit 29059e71d3

137
main.py
View file

@ -1,68 +1,69 @@
import os import os
import requests import requests
import spotipy import spotipy
from spotipy.oauth2 import SpotifyOAuth from spotipy.oauth2 import SpotifyOAuth
from dotenv import load_dotenv from dotenv import load_dotenv
# Load environment variables from .env file # Load environment variables from .env file
load_dotenv() load_dotenv()
# Set up Spotipy with authentication # Set up Spotipy with authentication
scope = "user-read-currently-playing user-read-playback-state" scope = "user-read-currently-playing user-read-playback-state"
sp = spotipy.Spotify(auth_manager=SpotifyOAuth( sp = spotipy.Spotify(auth_manager=SpotifyOAuth(
client_id=os.getenv('SPOTIPY_CLIENT_ID'), client_id=os.getenv('SPOTIPY_CLIENT_ID'),
client_secret=os.getenv('SPOTIPY_CLIENT_SECRET'), client_secret=os.getenv('SPOTIPY_CLIENT_SECRET'),
redirect_uri=os.getenv('SPOTIPY_REDIRECT_URI'), redirect_uri=os.getenv('SPOTIPY_REDIRECT_URI'),
scope=scope scope=scope
)) ))
# Get the currently playing track information # Get the currently playing track information
response = sp.current_playback() response = sp.current_playback()
# Discord webhook URL # Discord webhook URL
discord_webhook_url = os.getenv('DISCORD_WEBHOOK_URL') discord_webhook_url = os.getenv('DISCORD_WEBHOOK_URL')
# Check if a track is currently playing # Check if a track is currently playing
if response is not None and response.get('is_playing', False): if response is not None and response.get('is_playing', False):
track = response['item'] track = response['item']
track_name = track['name'] track_name = track['name']
album_name = track['album']['name'] album_name = track['album']['name']
artists = ', '.join([artist['name'] for artist in track['artists']]) artists = ', '.join([artist['name'] for artist in track['artists']])
album_art_url = track['album']['images'][0]['url'] album_art_url = track['album']['images'][0]['url']
track_url = track['external_urls']['spotify'] track_url = track['external_urls']['spotify']
# Initialize playlist_url # Initialize playlist_url
playlist_url = None playlist_url = None
# Check if the track is from a context (playlist) # Check if the track is from a context (playlist)
if response.get('context') and response['context'].get('type') == 'playlist': if response.get('context') and response['context'].get('type') == 'playlist':
playlist_uri = response['context']['uri'] playlist_uri = response['context']['uri']
playlist_id = playlist_uri.split(':')[-1] playlist_id = playlist_uri.split(':')[-1]
playlist = sp.playlist(playlist_id) playlist = sp.playlist(playlist_id)
playlist_name = playlist['name'] playlist_name = playlist['name']
playlist_url = playlist['external_urls']['spotify'] playlist_url = playlist['external_urls']['spotify']
# Format the message # Format the message
description = f"**Artists**\n{artists}\n**Album**\n{album_name}\n\n[Listen on Spotify]({track_url})" description = f"**Artists**\n{artists}\n**Album**\n{album_name}\n\n[Listen on Spotify]({track_url})"
if playlist_name and playlist_url: if playlist_name and playlist_url:
description += f" | [{playlist_name}]({playlist_url})" description += f" | [{playlist_name}]({playlist_url})"
description += f" | [visit the source](https://git.rintyuu.dev/rintyuu/discord-nowplaying)"
message = {
"embeds": [ message = {
{ "embeds": [
"title": track_name, {
"description": description, "title": track_name,
"thumbnail": {"url": album_art_url} "description": description,
} "thumbnail": {"url": album_art_url}
] }
} ]
}
# Send the message to the Discord webhook
response = requests.post(discord_webhook_url, json=message) # Send the message to the Discord webhook
response = requests.post(discord_webhook_url, json=message)
if response.status_code == 204:
print("Message sent to Discord successfully.") if response.status_code == 204:
else: print("Message sent to Discord successfully.")
print(f"Failed to send message to Discord. Status code: {response.status_code}") else:
else: print(f"Failed to send message to Discord. Status code: {response.status_code}")
print("No track is currently playing.") else:
print("No track is currently playing.")