This repository has been archived on 2023-06-09. You can view files and clone it, but cannot push or open issues or pull requests.
jarvis-server/jarvis/skills/entertainement/spotify/__init__.py

62 lines
2.5 KiB
Python

from jarvis.skills import Skill, SkillRegistering
from jarvis.skills.decorators import intent_file_handler
from jarvis.skills.entertainement.spotify import spotify
class SpotifySkill(Skill, metaclass=SkillRegistering):
def __init__(self, data=dict):
super().__init__("SpotifySkill", data)
@intent_file_handler("play_a_song.intent", "PlaySongWithSpotifyIntent")
def handle_play_a_song(self, data):
print(data)
song_lists_matching = spotify.query_song(data['song'] if 'song' in data else None,
data['artist'] if 'artist' in data else None)
if song_lists_matching is not None and len(song_lists_matching) >= 1:
if 'artist' in data and 'song' not in data:
self.speak_dialog("playing_from_artist", {'artist': song_lists_matching[0]['artists'][0]['name']})
else:
self.speak_dialog("playing_song_from_artist", {'song': song_lists_matching[0][
'name'], 'artist': song_lists_matching[0]['artists'][0]['name']})
spotify.get_spotify().add_to_queue(uri=song_lists_matching[0]['uri'])
spotify.get_spotify().next_track()
else:
print("Nothing found for :" + str(data))
@intent_file_handler("pause_music.intent", "PauseSpotifyIntent")
def pause_music(self, data):
if spotify.is_music_playing():
spotify.get_spotify().pause_playback()
print("[INFO INTENT] - Paused music for Spotify")
else:
self.speak("Rien n'est en cours de lecture sur Spotify...")
# TODO: speak : nothing is playing on spotify
pass
@intent_file_handler("resume_music.intent", "ResumeSpotifyIntent")
def resume_music(self, data):
if not spotify.is_music_playing():
spotify.get_spotify().start_playback()
print("[INFO INTENT] - Resumed music for Spotify")
else:
# TODO: speak : already playing song on spotify
pass
@intent_file_handler("current_song.intent", "CurrentSongSpotifyIntent")
def current_song(self, data):
current_playback = spotify.get_spotify().current_playback()
if current_playback['is_playing']:
song_name = current_playback['item']['name']
artist = current_playback['item']['artists'][0]['name']
print("[INFO INTENT] - Current playback : " + song_name + " from " + artist + " on Spotify")
else:
print("Nothing is playing")
def create_skill(data):
return SpotifySkill(data)