require 'uri'
module Sonos::Endpoint::AVTransport
TRANSPORT_ENDPOINT = '/MediaRenderer/AVTransport/Control'
TRANSPORT_XMLNS = 'urn:schemas-upnp-org:service:AVTransport:1'
# Get information about the currently playing track.
# @return [Hash] information about the current track.
def now_playing
response = send_transport_message('GetPositionInfo')
body = response.body[:get_position_info_response]
doc = Nokogiri::XML(body[:track_meta_data])
art_path = doc.xpath('//upnp:albumArtURI').inner_text
# TODO: No idea why this is necessary. Maybe its a Nokogiri thing
art_path.sub!('/getaa?s=1=x-sonos-http', '/getaa?s=1&u=x-sonos-http')
{
title: doc.xpath('//dc:title').inner_text,
artist: doc.xpath('//dc:creator').inner_text,
album: doc.xpath('//upnp:album').inner_text,
queue_position: body[:track],
track_duration: body[:track_duration],
current_position: body[:rel_time],
uri: body[:track_uri],
album_art: "http://#{self.ip}:#{Sonos::PORT}#{art_path}"
}
end
# Pause the currently playing track.
def pause
send_transport_message('Pause')
end
# Play the currently selected track or play a stream.
# @param [String] optional uri of the track to play. Leaving this blank, plays the current track.
def play(uri = nil)
# Play a song from the uri
set_av_transport_uri(uri) and return if uri
# Play the currently selected track
send_transport_message('Play')
end
# Stop playing.
def stop
send_transport_message('Stop')
end
# Play the next track.
def next
send_transport_message('Next')
end
# Play the previous track.
def previous
send_transport_message('Previous')
end
# Seeks to a given timestamp in the current track
# @param [Fixnum] seconds
def seek(seconds = 0)
# Must be sent in the format of HH:MM:SS
timestamp = Time.at(seconds).utc.strftime('%H:%M:%S')
send_transport_message('Seek', "