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

65 lines
2.6 KiB
Python
Raw Normal View History

from jarvis.skills import Skill, SkillRegistering
from jarvis.skills.decorators import intent_file_handler
from jarvis.skills.entertainement.spotify import spotify
from jarvis.utils import config_utils
class SpotifySkill(Skill, metaclass=SkillRegistering):
def __init__(self, data=dict):
super().__init__("SpotifySkill", data, required_config=['SPOTIFY_CLIENT_ID', 'SPOTIFY_CLIENT_SECRET'])
@intent_file_handler("play_a_song.intent", "PlaySongWithSpotifyIntent")
def handle_play_a_song(self, data):
print(data)
matching_song = spotify.query_song(data['song'] if 'song' in data else None,
data['artist'] if 'artist' in data else None)
if matching_song is not None and len(matching_song) >= 1:
# pause the music before speaking dialog
if spotify.is_music_playing():
spotify.get_spotify().pause_playback()
if 'artist' in data and 'song' not in data:
self.speak_dialog("play_from_artist", {'artist': matching_song['artists'][0]['name']})
else:
self.speak_dialog("play_song_from_artist", {'song': matching_song[
'name'], 'artist': matching_song['artists'][0]['name']})
spotify.get_spotify().add_to_queue(uri=matching_song['uri'])
spotify.get_spotify().next_track()
2021-07-30 19:58:58 +02:00
else:
2021-08-01 17:02:21 +02:00
self.speak_dialog("nothing_found")
@intent_file_handler("pause_music.intent", "PauseSpotifyIntent")
def pause_music(self, data):
2021-07-31 13:25:37 +02:00
if spotify.is_music_playing():
spotify.get_spotify().pause_playback()
2021-08-01 17:02:21 +02:00
self.speak_dialog("pause_spotify")
2021-07-31 13:25:37 +02:00
else:
2021-08-01 17:02:21 +02:00
self.speak_dialog("nothing_playing")
2021-07-31 13:25:37 +02:00
@intent_file_handler("resume_music.intent", "ResumeSpotifyIntent")
def resume_music(self, data):
if not spotify.is_music_playing():
2021-08-01 17:02:21 +02:00
self.speak_dialog("resume_music")
2021-07-31 13:25:37 +02:00
spotify.get_spotify().start_playback()
else:
2021-08-01 17:02:21 +02:00
self.speak_dialog("already_playing")
@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']
2021-08-01 17:02:21 +02:00
self.speak_dialog("current_playing_song_from_artist", {'song': song_name, 'artist': artist})
else:
2021-08-01 17:02:21 +02:00
self.speak_dialog('nothing_playing')
def create_skill(data):
return SpotifySkill(data)