Compare commits
7 commits
main
...
experiment
Author | SHA1 | Date | |
---|---|---|---|
c3eee5dda1 | |||
ee75103c86 | |||
8f6de3a8de | |||
0cea53f537 | |||
05e64eeafa | |||
5c7ee9d8fe | |||
f3a56a97b3 |
3 changed files with 201 additions and 53 deletions
4
.env
4
.env
|
@ -1,4 +0,0 @@
|
||||||
SPOTIPY_CLIENT_ID=''
|
|
||||||
SPOTIPY_CLIENT_SECRET=''
|
|
||||||
SPOTIPY_REDIRECT_URI=''
|
|
||||||
DISCORD_WEBHOOK_URL=""
|
|
115
main-experimental.py
Normal file
115
main-experimental.py
Normal file
|
@ -0,0 +1,115 @@
|
||||||
|
import os
|
||||||
|
import requests
|
||||||
|
import spotipy
|
||||||
|
from spotipy.oauth2 import SpotifyOAuth
|
||||||
|
import time
|
||||||
|
from dotenv import load_dotenv
|
||||||
|
|
||||||
|
# Number of seconds to check if same song is playing
|
||||||
|
interval = "15"
|
||||||
|
|
||||||
|
# Load environment variables from .env file
|
||||||
|
load_dotenv()
|
||||||
|
|
||||||
|
# Set up Spotipy with authentication
|
||||||
|
scope = "user-read-currently-playing user-read-playback-state"
|
||||||
|
sp = spotipy.Spotify(auth_manager=SpotifyOAuth(
|
||||||
|
client_id=os.getenv('SPOTIPY_CLIENT_ID'),
|
||||||
|
client_secret=os.getenv('SPOTIPY_CLIENT_SECRET'),
|
||||||
|
redirect_uri=os.getenv('SPOTIPY_REDIRECT_URI'),
|
||||||
|
scope=scope
|
||||||
|
))
|
||||||
|
|
||||||
|
# Discord webhook URL
|
||||||
|
discord_webhook_url = os.getenv('DISCORD_WEBHOOK_URL')
|
||||||
|
|
||||||
|
# Initialize variables to track the last played track
|
||||||
|
last_track_id = None
|
||||||
|
|
||||||
|
interval_start = 1
|
||||||
|
interval_verif = False
|
||||||
|
|
||||||
|
while True:
|
||||||
|
current_epoch = time.time()
|
||||||
|
|
||||||
|
# Get the currently playing track information
|
||||||
|
response = sp.current_playback()
|
||||||
|
|
||||||
|
# Check if a track is currently playing
|
||||||
|
if response is not None and response.get('is_playing', False):
|
||||||
|
track = response['item']
|
||||||
|
track_id = track['id']
|
||||||
|
|
||||||
|
# Check if the track is different from the last played track
|
||||||
|
|
||||||
|
if track_id == last_track_id:
|
||||||
|
print("previous song is still playing")
|
||||||
|
|
||||||
|
if track_id != last_track_id:
|
||||||
|
track_name = track['name']
|
||||||
|
album_name = track['album']['name']
|
||||||
|
artists = ', '.join([artist['name'] for artist in track['artists']])
|
||||||
|
album_art_url = track['album']['images'][0]['url']
|
||||||
|
track_url = track['external_urls']['spotify']
|
||||||
|
|
||||||
|
# Initialize context variables
|
||||||
|
context_name = None
|
||||||
|
context_url = None
|
||||||
|
|
||||||
|
# Check if the track is from a context (playlist/album)
|
||||||
|
if response.get('context'):
|
||||||
|
context_type = response['context'].get('type')
|
||||||
|
context_uri = response['context']['uri']
|
||||||
|
context_id = context_uri.split(':')[-1]
|
||||||
|
|
||||||
|
if context_type == 'playlist':
|
||||||
|
context = sp.playlist(context_id)
|
||||||
|
context_name = context['name']
|
||||||
|
context_url = context['external_urls']['spotify']
|
||||||
|
elif context_type == 'album':
|
||||||
|
context = sp.album(context_id)
|
||||||
|
context_name = context['name']
|
||||||
|
context_url = context['external_urls']['spotify']
|
||||||
|
|
||||||
|
# Format the message
|
||||||
|
description = f"**Artists**\n{artists}\n\n**Album**\n{album_name}\n\n<t:{current_epoch:.0f}:R>\n[Listen on Spotify]({track_url})"
|
||||||
|
if context_name and context_url:
|
||||||
|
description += f" | [{context_name}]({context_url})"
|
||||||
|
description += f" | [visit the source](https://git.rintyuu.dev/rintyuu/discord-nowplaying)"
|
||||||
|
|
||||||
|
message = {
|
||||||
|
"embeds": [
|
||||||
|
{
|
||||||
|
"title": track_name,
|
||||||
|
"description": description,
|
||||||
|
"thumbnail": {"url": album_art_url}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
# print(f"Current Epoch Time: {current_epoch:.0f}")
|
||||||
|
|
||||||
|
# Send the message to the Discord webhook
|
||||||
|
response = requests.post(discord_webhook_url, json=message)
|
||||||
|
|
||||||
|
if response.status_code == 204:
|
||||||
|
print(f"Currently playing: {track_name} by {artists}")
|
||||||
|
else:
|
||||||
|
print(f"Failed to send message to Discord. Status code: {response.status_code}")
|
||||||
|
|
||||||
|
# Update the last track ID
|
||||||
|
last_track_id = track_id
|
||||||
|
|
||||||
|
else:
|
||||||
|
print("No track is currently playing.")
|
||||||
|
|
||||||
|
#if interval_start == 1 and not interval_verif:
|
||||||
|
# print("ignore this seconds has passed message please")
|
||||||
|
# print("im still working out the bugs in this program")
|
||||||
|
# interval_start = 0
|
||||||
|
# interval_verif = True
|
||||||
|
|
||||||
|
# Wait for a certain time before checking again (e.g., 15 seconds)
|
||||||
|
#print("it has been", interval,"seconds")
|
||||||
|
time.sleep(int(interval))
|
||||||
|
|
135
main.py
135
main.py
|
@ -2,8 +2,12 @@ import os
|
||||||
import requests
|
import requests
|
||||||
import spotipy
|
import spotipy
|
||||||
from spotipy.oauth2 import SpotifyOAuth
|
from spotipy.oauth2 import SpotifyOAuth
|
||||||
|
import time
|
||||||
from dotenv import load_dotenv
|
from dotenv import load_dotenv
|
||||||
|
|
||||||
|
# Number of seconds to check if same song is playing
|
||||||
|
interval = "15"
|
||||||
|
|
||||||
# Load environment variables from .env file
|
# Load environment variables from .env file
|
||||||
load_dotenv()
|
load_dotenv()
|
||||||
|
|
||||||
|
@ -16,62 +20,95 @@ sp = spotipy.Spotify(auth_manager=SpotifyOAuth(
|
||||||
scope=scope
|
scope=scope
|
||||||
))
|
))
|
||||||
|
|
||||||
# Get the currently playing track information
|
|
||||||
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
|
# Initialize variables to track the last played track
|
||||||
if response is not None and response.get('is_playing', False):
|
last_track_id = None
|
||||||
track = response['item']
|
|
||||||
track_name = track['name']
|
|
||||||
album_name = track['album']['name']
|
|
||||||
artists = ', '.join([artist['name'] for artist in track['artists']])
|
|
||||||
album_art_url = track['album']['images'][0]['url']
|
|
||||||
track_url = track['external_urls']['spotify']
|
|
||||||
|
|
||||||
# Initialize playlist_url
|
interval_start = 1
|
||||||
context_name = None
|
interval_verif = False
|
||||||
context_url = None
|
|
||||||
|
|
||||||
# Check if the track is from a context (playlist)
|
while True:
|
||||||
if response.get('context'):
|
current_epoch = time.time()
|
||||||
context_type = response['context'].get('type')
|
|
||||||
context_uri = response['context']['uri']
|
|
||||||
context_id = context_uri.split(':')[-1]
|
|
||||||
|
|
||||||
if context_type == 'playlist':
|
|
||||||
context = sp.playlist(context_id)
|
|
||||||
context_name = context['name']
|
|
||||||
context_url = context['external_urls']['spotify']
|
|
||||||
elif context_type == 'album':
|
|
||||||
context = sp.album(context_id)
|
|
||||||
context_name = context['name']
|
|
||||||
context_url = context['external_urls']['spotify']
|
|
||||||
|
|
||||||
# Format the message
|
# Get the currently playing track information
|
||||||
description = f"**Artists**\n{artists}\n**Album**\n{album_name}\n\n[Listen on Spotify]({track_url})"
|
response = sp.current_playback()
|
||||||
if context_name and context_url:
|
|
||||||
description += f" | [{context_name}]({context_url})"
|
# Check if a track is currently playing
|
||||||
description += f" | [visit the source](https://git.rintyuu.dev/rintyuu/discord-nowplaying)"
|
if response is not None and response.get('is_playing', False):
|
||||||
|
track = response['item']
|
||||||
message = {
|
track_id = track['id']
|
||||||
"embeds": [
|
|
||||||
{
|
# Check if the track is different from the last played track
|
||||||
"title": track_name,
|
|
||||||
"description": description,
|
if track_id == last_track_id:
|
||||||
"thumbnail": {"url": album_art_url}
|
print("previous song is still playing")
|
||||||
|
|
||||||
|
if track_id != last_track_id:
|
||||||
|
track_name = track['name']
|
||||||
|
album_name = track['album']['name']
|
||||||
|
artists = ', '.join([artist['name'] for artist in track['artists']])
|
||||||
|
album_art_url = track['album']['images'][0]['url']
|
||||||
|
track_url = track['external_urls']['spotify']
|
||||||
|
|
||||||
|
# Initialize context variables
|
||||||
|
context_name = None
|
||||||
|
context_url = None
|
||||||
|
|
||||||
|
# Check if the track is from a context (playlist/album)
|
||||||
|
if response.get('context'):
|
||||||
|
context_type = response['context'].get('type')
|
||||||
|
context_uri = response['context']['uri']
|
||||||
|
context_id = context_uri.split(':')[-1]
|
||||||
|
|
||||||
|
if context_type == 'playlist':
|
||||||
|
context = sp.playlist(context_id)
|
||||||
|
context_name = context['name']
|
||||||
|
context_url = context['external_urls']['spotify']
|
||||||
|
elif context_type == 'album':
|
||||||
|
context = sp.album(context_id)
|
||||||
|
context_name = context['name']
|
||||||
|
context_url = context['external_urls']['spotify']
|
||||||
|
|
||||||
|
# Format the message
|
||||||
|
description = f"**Artists**\n{artists}\n\n**Album**\n{album_name}\n\n<t:{current_epoch:.0f}:R>\n[Listen on Spotify]({track_url})"
|
||||||
|
if context_name and context_url:
|
||||||
|
description += f" | [{context_name}]({context_url})"
|
||||||
|
description += f" | [visit the source](https://git.rintyuu.dev/rintyuu/discord-nowplaying)"
|
||||||
|
|
||||||
|
message = {
|
||||||
|
"embeds": [
|
||||||
|
{
|
||||||
|
"title": track_name,
|
||||||
|
"description": description,
|
||||||
|
"thumbnail": {"url": album_art_url}
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
# Send the message to the Discord webhook
|
# print(f"Current Epoch Time: {current_epoch:.0f}")
|
||||||
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(f"Currently playing: {track_name} by {artists}")
|
||||||
|
else:
|
||||||
|
print(f"Failed to send message to Discord. Status code: {response.status_code}")
|
||||||
|
|
||||||
|
# Update the last track ID
|
||||||
|
last_track_id = track_id
|
||||||
|
|
||||||
if response.status_code == 204:
|
|
||||||
print("Message sent to Discord successfully.")
|
|
||||||
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.")
|
#if interval_start == 1 and not interval_verif:
|
||||||
|
# print("ignore this seconds has passed message please")
|
||||||
|
# print("im still working out the bugs in this program")
|
||||||
|
# interval_start = 0
|
||||||
|
# interval_verif = True
|
||||||
|
|
||||||
|
# Wait for a certain time before checking again (e.g., 15 seconds)
|
||||||
|
#print("it has been", interval,"seconds")
|
||||||
|
time.sleep(int(interval))
|
||||||
|
|
Loading…
Add table
Reference in a new issue