This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
default.py
293 lines (253 loc) · 8.3 KB
/
default.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
import xbmcgui
import xbmc
import xbmcaddon
import os, sys
_settings = xbmcaddon.Addon()
_name = _settings.getAddonInfo('name')
_version = _settings.getAddonInfo('version')
_path = xbmc.translatePath( _settings.getAddonInfo('path') ).decode('utf-8')
_lib = xbmc.translatePath( os.path.join( _path, 'resources', 'lib' ) )
## not used
_id = _settings.getAddonInfo('id')
_profile = xbmc.translatePath( _settings.getAddonInfo('profile').decode('utf-8') )
_data = xbmc.translatePath( os.path.join( "special://profile/addon_data/%s/" % _id.decode('utf-8') ) )
_language = _settings.getLocalizedString
##
sys.path.append (_lib)
_NAME = _name.upper()
from utils import *
log( "Initializing v%s" % _version )
log( "sys.platform = %s" % sys.platform )
dlg = xbmcgui.DialogProgress()
dlg.create( _NAME, "Loading Script..." )
dlg.update( 0 )
from pithos.pandora.pandora import Pandora, PandoraError
import pithos.pandora.data
from pandagui import PandaGUI
from pandaplayer import PandaPlayer
if _settings.getSetting( "firstrun" ) != "false":
log( "First run... showing settings dialog" )
_settings.openSettings()
_settings.setSetting( "firstrun", "false" )
## ToDO: DRY these IDs
##
BTN_THUMB_DN = 330
BTN_THUMB_UP = 331
BTN_THUMBED_DN = 337
BTN_THUMBED_UP = 338
##
# class wrapper around Pandora()
# * adds proxy support back into the class
import urllib2
class My_Pandora( Pandora ):
def __init__( self ):
Pandora.__init__( self )
self.set_proxy(None)
def set_proxy(self, proxy):
if proxy:
proxy_handler = urllib2.ProxyHandler({'http': proxy})
self.opener = urllib2.build_opener(proxy_handler)
## _or_ set_url_opener()
#self.set_url_opener( urllib2.build_opener(proxy_handler) )
else:
self.opener = urllib2.build_opener()
## _or_ set_url_opener()
#self.set_url_opener( urllib2.build_opener() )
class PandaException( Exception ):
pass
class Panda:
def __init__( self ):
self.gui = None
self.pandora = None
self.playlist = []
self.curStation = ""
self.curSong = None
self.playing = False
self.skip = False
self.die = False
self.settings = _settings
self.player = None
self.skinName = "Default"
fmt = int(self.settings.getSetting( "format" ))
fmt = ( "lowQuality", "mediumQuality", "highQuality" )[fmt]
try:
self.pandora = My_Pandora()
self.pandora.set_audio_quality(fmt)
except PandoraError, e:
xbmcgui.Dialog().ok( _NAME, "Error: %s" %e )
self.die = True
return
#Proxy settings
if self.settings.getSetting( "proxy_enable" ) == "true":
log( "Proxy Enabled" )
proxy_info = {
"host" : self.settings.getSetting( "proxy_server" ),
"port" : self.settings.getSetting( "proxy_port" ),
"user" : self.settings.getSetting( "proxy_user" ),
"pass" : self.settings.getSetting( "proxy_pass" )
}
self.pandora.set_proxy( "http://%(user)s:%(pass)s@%(host)s:%(port)s" % proxy_info )
while not self.auth():
resp = xbmcgui.Dialog().yesno( _NAME, \
"Failed to authenticate listener.", \
"Check username/password and try again.", \
"Show Settings?" )
if resp:
self.settings.openSettings()
else:
self.quit()
return
## ToDO: refactor this ... probably not needed (except possibly on first run, likely not); push it into the GUI
# Get skin from settings.
# Check if a value is set in the settings. If not then use Default.
if self.settings.getSetting ( "skin" ) != "":
self.skinName = self.settings.getSetting( "skin" )
self.player = PandaPlayer( panda = self )
self.gui = PandaGUI( "script-pandora.xml", _path, self.skinName )
self.gui.setPanda( self )
def auth( self ):
user = self.settings.getSetting( "username" )
pwd = self.settings.getSetting( "password" )
if user == "" or pwd == "":
return False
client_id = pithos.pandora.data.default_client_id
pandoraone = self.settings.getSetting( "pandoraone" )
if pandoraone == "true":
client_id = pithos.pandora.data.default_one_client_id
dlg = xbmcgui.DialogProgress()
dlg.create( _NAME, "Logging In..." )
dlg.update( 0 )
try:
self.pandora.connect(pithos.pandora.data.client_keys[client_id], user, pwd)
except PandoraError, e:
return 0;
dlg.close()
return 1
def playStation( self, stationId ):
self.curStation = stationId
station = self.pandora.get_station_by_id(self.curStation);
dlg = xbmcgui.DialogProgress()
dlg.create( _NAME, "Opening Pandora station: " + station.name )
dlg.update( 0 )
self.settings.setSetting( 'last_station_id', stationId )
self.curSong = None
self.playlist = []
self.getMoreSongs()
self.playing = True
self.playNextSong()
dlg.close()
def getStations( self ):
self.pandora.get_stations()
return self.pandora.stations
def getMoreSongs( self ):
log( "getting more songs" )
if self.curStation == "":
raise PandaException()
items = []
station = self.pandora.get_station_by_id(self.curStation);
songs = station.get_playlist()
for song in songs:
log( "Adding song '%s'" % song.title )
thumbnailArtwork = self.settings.getSetting( "thumbnailArtwork" )
thumbnail = song.artRadio
item = xbmcgui.ListItem( song.title )
item.setIconImage( thumbnail )
item.setThumbnailImage( thumbnail )
item.setProperty( "Cover", thumbnail )
if song.rating_str != None:
item.setProperty( "Rating", song.rating_str )
else:
item.setProperty( "Rating", "" )
info = {
"title" : song.title, \
"artist" : song.artist, \
"album" : song.album, \
}
## HACK: set fictional duration to enable scrobbling
if self.settings.getSetting( "scrobble_hack" ) == "true":
duration = 60 * ( int(self.settings.getSetting( "scrobble_hack_time" )) + 1 )
info["duration"] = duration
log( "item info = %s" % info, xbmc.LOGDEBUG )
item.setInfo( "music", info )
items.append( ( song.audioUrl, item, song ) )
self.playlist.extend( items )
def playNextSong( self ):
if not self.playing:
raise PandaException()
try:
next = self.playlist.pop( 0 )
self.player.playSong( next )
art = next[1].getProperty( "Cover" )
self.gui.setProperty( "AlbumArt", art )
self.curSong = next
# FIXIT - This should move elsewhere:
rating = next[1].getProperty( "Rating" )
if rating == "": # No rating
self.gui.getControl(BTN_THUMB_DN).setVisible(True)
self.gui.getControl(BTN_THUMBED_DN).setVisible(False)
self.gui.getControl(BTN_THUMB_UP).setVisible(True)
self.gui.getControl(BTN_THUMBED_UP).setVisible(False)
elif rating == 'ban': # Hate
self.gui.getControl(BTN_THUMB_DN).setVisible(False)
self.gui.getControl(BTN_THUMBED_DN).setVisible(True)
self.gui.getControl(BTN_THUMB_UP).setVisible(True)
self.gui.getControl(BTN_THUMBED_UP).setVisible(False)
elif rating == 'love': # Love
self.gui.getControl(BTN_THUMB_DN).setVisible(True)
self.gui.getControl(BTN_THUMBED_DN).setVisible(False)
self.gui.getControl(BTN_THUMB_UP).setVisible(False)
self.gui.getControl(BTN_THUMBED_UP).setVisible(True)
else:
log( "!!!! Unrecognised rating", xbmc.LOGWARNING )
except IndexError:
self.curSong = None
self.getMoreSongs()
if len( self.playlist ) == 0:
#Out of songs, grab some more while playing
self.getMoreSongs()
def skipSong( self ):
self.skip = True
self.player.stop()
def addFeedback( self, likeFlag ):
if not self.playing:
raise PandaException()
self.curSong[2].rate(likeFlag);
def addTiredSong( self ):
if not self.playing:
raise PandaException()
musicId = self.curSong[2].set_tired();
def main( self ):
if self.die:
return
self.gui.doModal()
self.cleanup()
xbmc.sleep( 500 ) #Wait to make sure everything finishes
def stop( self ):
self.playing = False
if self.player and self.player.timer\
and self.player.timer.isAlive():
self.player.timer.stop()
def cleanup( self ):
self.skip = False
if self.playing:
self.playing = False
self.player.stop()
del self.gui
del self.player
def quit( self ):
if self.player and self.player.timer\
and self.player.timer.isAlive():
self.player.timer.stop()
if self.gui != None:
self.gui.close()
self.die = True
if __name__ == '__main__':
if _settings.getSetting( "username" ) == "" or \
_settings.getSetting( "password" ) == "":
xbmcgui.Dialog().ok( __name__, \
"Username and/or password not specified" )
_settings.setSetting( "firstrun", "true" )
else:
panda = Panda()
dlg.close()
panda.main()