Child: [f733f0] (diff)

Download this file

qobuz-app.py    302 lines (252 with data), 9.5 kB

  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
294
295
296
297
298
299
300
301
#!/usr/bin/env python
#
# A lot of code copied from the Kodi Tidal addon which is:
# Copyright (C) 2014 Thomas Amland
#
# Additional code and modifications:
# Copyright (C) 2016 J.F.Dockes
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from __future__ import print_function
import sys
import os
import json
import re
import conftree
import cmdtalkplugin
from upmplgutils import *
# Using kodi plugin routing plugin: lets use reuse a lot of code from
# the addon.
from routing import Plugin
# Need bogus base_url value to avoid plugin trying to call xbmc to
# retrieve addon id
plugin = Plugin('')
from session import Session
# Func name to method mapper
dispatcher = cmdtalkplugin.Dispatch()
# Pipe message handler
msgproc = cmdtalkplugin.Processor(dispatcher)
session = Session()
is_logged_in = False
def maybelogin():
global formatid
global httphp
global pathprefix
global is_logged_in
if is_logged_in:
return True
if "UPMPD_HTTPHOSTPORT" not in os.environ:
raise Exception("No UPMPD_HTTPHOSTPORT in environment")
httphp = os.environ["UPMPD_HTTPHOSTPORT"]
if "UPMPD_PATHPREFIX" not in os.environ:
raise Exception("No UPMPD_PATHPREFIX in environment")
pathprefix = os.environ["UPMPD_PATHPREFIX"]
if "UPMPD_CONFIG" not in os.environ:
raise Exception("No UPMPD_CONFIG in environment")
upconfig = conftree.ConfSimple(os.environ["UPMPD_CONFIG"])
username = upconfig.get('qobuzuser')
password = upconfig.get('qobuzpass')
formatid = upconfig.get('qobuzformatid')
if formatid:
formatid = int(formatid)
else:
formatid = 5
if not username or not password:
raise Exception("qobuzuser and/or qobuzpass not set in configuration")
is_logged_in = session.login(username, password)
@dispatcher.record('trackuri')
def trackuri(a):
global formatid
msgproc.log("trackuri: [%s]" % a)
trackid = trackid_from_urlpath(pathprefix, a)
maybelogin()
media_url = session.get_media_url(trackid, formatid)
#msgproc.log("%s" % media_url)
if formatid == 5:
mime = "audio/mpeg"
kbs = "320"
else:
mime = "application/flac"
kbs = "1410"
return {'media_url' : media_url, 'mimetype' : mime, 'kbs' : kbs}
def add_directory(title, endpoint):
if callable(endpoint):
endpoint = plugin.url_for(endpoint)
xbmcplugin.entries.append(direntry('0$qobuz$' + endpoint,
xbmcplugin.objid, title))
def urls_from_id(view_func, items):
#msgproc.log("urls_from_id: items: %s" % str([item.id for item in items]))
return [plugin.url_for(view_func, item.id)
for item in items if str(item.id).find('http') != 0]
def view(data_items, urls, end=True):
for item, url in zip(data_items, urls):
title = item.name
try:
image = item.image if item.image else None
except:
image = None
try:
artnm = item.artist.name if item.artist.name else None
except:
artnm = None
xbmcplugin.entries.append(
direntry('0$qobuz$' + url, xbmcplugin.objid, title, arturi=image,
artist=artnm))
def track_list(tracks):
xbmcplugin.entries += trackentries(httphp, pathprefix,
xbmcplugin.objid, tracks)
@dispatcher.record('browse')
def browse(a):
global xbmcplugin
xbmcplugin = XbmcPlugin('0$qobuz$')
msgproc.log("browse: [%s]" % a)
if 'objid' not in a:
raise Exception("No objid in args")
objid = a['objid']
bflg = a['flag'] if 'flag' in a else 'children'
if re.match('0\$qobuz\$', objid) is None:
raise Exception("bad objid [%s]" % objid)
maybelogin()
xbmcplugin.objid = objid
idpath = objid.replace('0$qobuz$', '', 1)
if bflg == 'meta':
m = re.match('.*\$(.+)$', idpath)
if m:
trackid = m.group(1)
track = session.get_track(trackid)
track_list([track])
else:
plugin.run([idpath])
#msgproc.log("%s" % xbmcplugin.entries)
encoded = json.dumps(xbmcplugin.entries)
return {"entries" : encoded}
@plugin.route('/')
def root():
add_directory("Discover", whats_new)
add_directory('Favourites', my_music)
add_directory('Genres', root_genres)
@plugin.route('/root_genres')
def root_genres():
items = session.get_genres()
view(items, urls_from_id(genre_view, items))
@plugin.route('/genre/<genre_id>')
def genre_view(genre_id):
items = session.get_genres(genre_id)
if len(items) != 0:
# List subgenres
view(items, urls_from_id(genre_view, items))
else:
items = session.get_featured_albums(genre_id)
view(items, urls_from_id(album_view, items))
@plugin.route('/whats_new')
def whats_new():
add_directory('Playlists', plugin.url_for(featured,
content_type='playlists'))
add_directory('Albums', plugin.url_for(featured, content_type='albums'))
add_directory('Artists', plugin.url_for(featured, content_type='artists'))
xbmcplugin.endOfDirectory(plugin.handle)
@plugin.route('/featured/<content_type>')
def featured(content_type=None):
items = session.get_featured_items(content_type)
if content_type == 'artists':
view(items, urls_from_id(artist_view, items))
elif content_type == 'albums':
view(items, urls_from_id(album_view, items))
elif content_type == 'playlists':
view(items, urls_from_id(playlist_view, items))
else:
print("qobuz-app bad featured type %s" % content_type, file=sys.stderr)
@plugin.route('/my_music')
def my_music():
add_directory('Albums', favourite_albums)
add_directory('Tracks', favourite_tracks)
add_directory('Artists', favourite_artists)
add_directory('Playlists', favourite_playlists)
xbmcplugin.endOfDirectory(plugin.handle)
pass
@plugin.route('/album/<album_id>')
def album_view(album_id):
track_list(session.get_album_tracks(album_id))
@plugin.route('/playlist/<playlist_id>')
def playlist_view(playlist_id):
track_list(session.get_playlist_tracks(playlist_id))
def ListItem(tt):
return tt
@plugin.route('/artist/<artist_id>')
def artist_view(artist_id):
xbmcplugin.addDirectoryItem(
plugin.handle, plugin.url_for(similar_artists, artist_id),
ListItem('Similar Artists'), True
)
albums = session.get_artist_albums(artist_id)
view(albums, urls_from_id(album_view, albums))
@plugin.route('/artist/<artist_id>/similar')
def similar_artists(artist_id):
artists = session.get_artist_similar(artist_id)
view(artists, urls_from_id(artist_view, artists))
@plugin.route('/favourite_tracks')
def favourite_tracks():
track_list(session.user.favorites.tracks())
@plugin.route('/favourite_artists')
def favourite_artists():
try:
items = session.user.favorites.artists()
except Exception as err:
msgproc.log("session.user.favorite.artists failed: %s" % err)
return
if items:
msgproc.log("First artist name %s"% items[0].name)
view(items, urls_from_id(artist_view, items))
@plugin.route('/favourite_albums')
def favourite_albums():
items = session.user.favorites.albums()
view(items, urls_from_id(album_view, items))
@plugin.route('/favourite_playlists')
def favourite_playlists():
items = session.user.favorites.playlists()
view(items, urls_from_id(playlist_view, items))
@dispatcher.record('search')
def search(a):
global xbmcplugin
xbmcplugin = XbmcPlugin('0$qobuz$')
msgproc.log("search: [%s]" % a)
objid = a['objid']
field = a['field']
value = a['value']
if re.match('0\$qobuz\$', objid) is None:
raise Exception("bad objid [%s]" % objid)
xbmcplugin.objid = objid
maybelogin()
if field not in ['artist', 'album', 'playlist', 'track']:
msgproc.log('Unknown field \'%s\'' % field)
field = 'track'
# type may be 'tracks', 'albums', 'artists' or 'playlists'
qfield = field + "s"
searchresults = session.search(value, qfield)
if field is None or field == 'artist':
view(searchresults.artists,
urls_from_id(artist_view, searchresults.artists), end=False)
if field is None or field == 'album':
view(searchresults.albums,
urls_from_id(album_view, searchresults.albums), end=False)
if field is None or field == 'playlist':
view(searchresults.playlists,
urls_from_id(playlist_view, searchresults.playlists), end=False)
if field is None or field == 'track':
track_list(searchresults.tracks)
#msgproc.log("%s" % xbmcplugin.entries)
encoded = json.dumps(xbmcplugin.entries)
return {"entries" : encoded}
msgproc.log("Qobuz running")
msgproc.mainloop()