/usr/lib/rhythmbox/plugins/magnatune/MagnatuneSource.py is in rhythmbox-plugin-magnatune 2.96-0ubuntu4.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 | # -*- Mode: python; coding: utf-8; tab-width: 8; indent-tabs-mode: t; -*-
#
# Copyright (C) 2006 Adam Zimmerman <adam_zimmerman@sfu.ca>
# Copyright (C) 2006 James Livingston <doclivingston@gmail.com>
#
# 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 2, or (at your option)
# any later version.
#
# The Rhythmbox authors hereby grant permission for non-GPL compatible
# GStreamer plugins to be used and distributed together with GStreamer
# and Rhythmbox. This permission is above and beyond the permissions granted
# by the GPL license by which Rhythmbox is covered. If you modify this code
# you may extend this exception to your version of the code, but you are not
# obligated to do so. If you do not wish to do so, delete this exception
# statement from your 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, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
import os
import sys
import xml
import urllib
import urlparse
import threading
import zipfile
import rb
from gi.repository import RB
from gi.repository import GObject, Gtk, Gdk, Gio
from TrackListHandler import TrackListHandler
from DownloadAlbumHandler import DownloadAlbumHandler, MagnatuneDownloadError
import MagnatuneAccount
import gettext
gettext.install('rhythmbox', RB.locale_dir())
magnatune_partner_id = "ubuntu"
# URIs
magnatune_song_info_uri = "http://magnatune.com/info/song_info_xml.zip"
magnatune_changed_uri = "http://magnatune.com/info/changed.txt"
magnatune_buy_album_uri = "https://magnatune.com/buy/choose?"
magnatune_api_download_uri = "http://%s:%s@download.magnatune.com/buy/membership_free_dl_xml?"
magnatune_in_progress_dir = Gio.file_new_for_path(RB.user_data_dir()).resolve_relative_path('magnatune')
magnatune_cache_dir = Gio.file_new_for_path(RB.user_cache_dir()).resolve_relative_path('magnatune')
magnatune_song_info = os.path.join(magnatune_cache_dir.get_path(), 'song_info.xml')
magnatune_song_info_temp = os.path.join(magnatune_cache_dir.get_path(), 'song_info.zip.tmp')
magnatune_changes = os.path.join(magnatune_cache_dir.get_path(), 'changed.txt')
class MagnatuneSource(RB.BrowserSource):
def __init__(self):
RB.BrowserSource.__init__(self)
self.hate = self
self.__settings = Gio.Settings("org.gnome.rhythmbox.plugins.magnatune")
# source state
self.__activated = False
self.__db = None
self.__notify_id = 0 # GObject.idle_add id for status notifications
self.__info_screen = None # the loading screen
# track data
self.__sku_dict = {}
self.__home_dict = {}
self.__art_dict = {}
# catalogue stuff
self.__updating = True # whether we're loading the catalog right now
self.__has_loaded = False # whether the catalog has been loaded yet
self.__update_id = 0 # GObject.idle_add id for catalog updates
self.__catalogue_loader = None
self.__catalogue_check = None
self.__load_progress = (0, 0) # (complete, total)
# album download stuff
self.__downloads = {} # keeps track of download progress for each file
self.__copies = {} # keeps copy objects for each file
self.__art_store = RB.ExtDB(name="album-art")
#
# RBSource methods
#
def do_impl_show_entry_popup(self):
self.show_source_popup("/MagnatuneSourceViewPopup")
def do_get_status(self, status, progress_text, progress):
if self.__updating:
complete, total = self.__load_progress
if total > 0:
progress = min(float(complete) / total, 1.0)
else:
progress = -1.0
return (_("Loading Magnatune catalog"), None, progress)
elif len(self.__downloads) > 0:
complete, total = map(sum, zip(*self.__downloads.itervalues()))
if total > 0:
progress = min(float(complete) / total, 1.0)
else:
progress = -1.0
return (_("Downloading Magnatune Album(s)"), None, progress)
else:
qm = self.props.query_model
return (qm.compute_status_normal("%d song", "%d songs"), None, 2.0)
def do_selected(self):
if not self.__activated:
shell = self.props.shell
self.__db = shell.props.db
self.__entry_type = self.props.entry_type
if not magnatune_in_progress_dir.query_exists(None):
magnatune_in_progress_path = magnatune_in_progress_dir.get_path()
os.mkdir(magnatune_in_progress_path, 0700)
if not magnatune_cache_dir.query_exists(None):
magnatune_cache_path = magnatune_cache_dir.get_path()
os.mkdir(magnatune_cache_path, 0700)
self.__activated = True
self.__show_loading_screen(True)
# start our catalogue updates
self.__update_id = GObject.timeout_add_seconds(6 * 60 * 60, self.__update_catalogue)
self.__update_catalogue()
def do_impl_can_delete(self):
return False
def do_pack_content(self, content):
self.__paned_box = Gtk.VBox(homogeneous=False, spacing=5)
self.pack_start(self.__paned_box, True, True, 0)
self.__paned_box.pack_start(content, True, True, 0)
def do_delete_thyself(self):
if self.__update_id != 0:
GObject.source_remove(self.__update_id)
self.__update_id = 0
if self.__notify_id != 0:
GObject.source_remove(self.__notify_id)
self.__notify_id = 0
if self.__catalogue_loader is not None:
self.__catalogue_loader.cancel()
self.__catalogue_loader = None
if self.__catalogue_check is not None:
self.__catalogue_check.cancel()
self.__catalogue_check = None
RB.BrowserSource.do_delete_thyself(self)
#
# methods for use by plugin and UI
#
def display_artist_info(self):
screen = self.props.shell.props.window.get_screen()
tracks = self.get_entry_view().get_selected_entries()
urls = set([])
for tr in tracks:
sku = self.__sku_dict[tr.get_string(RB.RhythmDBPropType.LOCATION)]
url = self.__home_dict[sku]
if url not in urls:
Gtk.show_uri(screen, url, Gdk.CURRENT_TIME)
urls.add(url)
def download_redirect(self):
screen = self.props.shell.props.window.get_screen()
tracks = self.get_entry_view().get_selected_entries()
urls = set([])
for tr in tracks:
sku = self.__sku_dict[tr.get_string(RB.RhythmDBPropType.LOCATION)]
url = magnatune_buy_album_uri + urllib.urlencode({ 'sku': sku, 'ref': magnatune_partner_id })
if url not in urls:
Gtk.show_uri(screen, url, Gdk.CURRENT_TIME)
urls.add(url)
def download_album(self):
if self.__settings['account-type'] != 'download':
# The user doesn't have a download account, so redirect them to the download signup page
self.download_redirect()
return
try:
# Just use the first library location
library = Gio.Settings("org.gnome.rhythmbox.rhythmdb")
library_location = library['locations'][0]
except IndexError, e:
RB.error_dialog(title = _("Couldn't download album"),
message = _("You must have a library location set to download an album."))
return
tracks = self.get_entry_view().get_selected_entries()
skus = []
for track in tracks:
sku = self.__sku_dict[track.get_string(RB.RhythmDBPropType.LOCATION)]
if sku in skus:
continue
skus.append(sku)
self.__auth_download(sku)
#
# internal catalogue downloading and loading
#
def __update_catalogue(self):
def update_cb(remote_changes):
self.__catalogue_check = None
try:
f = open(magnatune_changes, 'r')
local_changes = f.read().strip()
except:
local_changes = ""
remote_changes = remote_changes.strip()
print "local checksum %s, remote checksum %s" % (local_changes, remote_changes)
if local_changes != remote_changes:
try:
f = open(magnatune_changes, 'w')
f.write(remote_changes + "\n")
f.close()
except Exception, e:
print "unable to write local change id: %s" % str(e)
download_catalogue()
elif self.__has_loaded is False:
load_catalogue()
def download_catalogue():
def find_song_info(catalogue):
for info in catalogue.infolist():
if info.filename.endswith("song_info.xml"):
return info.filename;
return None
def download_progress(copy, complete, total, self):
self.__load_progress = (complete, total)
self.__notify_status_changed()
def download_finished(copy, success, self):
if not success:
print "catalog download failed"
print copy.get_error()
return
print "catalog download successful"
# done downloading, unzip to real location
catalog_zip = zipfile.ZipFile(magnatune_song_info_temp)
catalog = open(magnatune_song_info, 'w')
filename = find_song_info(catalog_zip)
if filename is None:
RB.error_dialog(title=_("Unable to load catalog"),
message=_("Rhythmbox could not understand the Magnatune catalog, please file a bug."))
return
catalog.write(catalog_zip.read(filename))
catalog.close()
catalog_zip.close()
df = Gio.file_new_for_path(magnatune_song_info_temp)
df.delete(None)
self.__updating = False
self.__catalogue_loader = None
self.__notify_status_changed()
load_catalogue()
self.__updating = True
try:
df = Gio.file_new_for_path(magnatune_song_info_temp)
df.delete(None)
except:
pass
self.__catalog_loader = RB.AsyncCopy()
self.__catalog_loader.set_progress(download_progress, self)
self.__catalog_loader.start(magnatune_song_info_uri, magnatune_song_info_temp, download_finished, self)
def load_catalogue():
def catalogue_chunk_cb(loader, data, total, parser):
if data is None:
error = loader.get_error()
if error:
# report error somehow?
print "error loading catalogue: %s" % error
try:
parser.close()
except xml.sax.SAXParseException, e:
# there isn't much we can do here
print "error parsing catalogue: %s" % e
self.__show_loading_screen(False)
self.__updating = False
self.__catalogue_loader = None
# restart in-progress downloads
# (doesn't really belong here)
for f in magnatune_in_progress_dir.enumerate_children('standard::name', Gio.FileQueryInfoFlags.NONE, None):
name = f.get_name()
if not name.startswith("in_progress_"):
continue
(result, uri, etag) = magnatune_in_progress_dir.resolve_relative_path(name).load_contents(None)
print "restarting download from %s" % uri
self.__download_album(uri, name[12:])
else:
# hack around some weird chars that show up in the catalogue for some reason
data = str(data.str)
data = data.replace("\x19", "'")
data = data.replace("\x13", "-")
# argh.
data = data.replace("Rock & Roll", "Rock & Roll")
try:
parser.feed(data)
except xml.sax.SAXParseException, e:
print "error parsing catalogue: %s" % e
load_size['size'] += len(data)
self.__load_progress = (load_size['size'], total)
self.__notify_status_changed()
self.__has_loaded = True
self.__updating = True
self.__load_progress = (0, 0) # (complete, total)
self.__notify_status_changed()
load_size = {'size': 0}
parser = xml.sax.make_parser()
parser.setContentHandler(TrackListHandler(self.__db, self.__entry_type, self.__sku_dict, self.__home_dict, self.__art_dict))
self.__catalogue_loader = RB.ChunkLoader()
self.__catalogue_loader.set_callback(catalogue_chunk_cb, parser)
self.__catalogue_loader.start(magnatune_song_info, 64*1024)
self.__catalogue_check = rb.Loader()
self.__catalogue_check.get_url(magnatune_changed_uri, update_cb)
def __show_loading_screen(self, show):
if self.__info_screen is None:
# load the builder stuff
builder = Gtk.Builder()
builder.add_from_file(rb.find_plugin_file(self.props.plugin, "magnatune-loading.ui"))
self.__info_screen = builder.get_object("magnatune_loading_scrolledwindow")
self.pack_start(self.__info_screen, True, True, 0)
self.get_entry_view().set_no_show_all(True)
self.__info_screen.set_no_show_all(True)
self.__info_screen.set_property("visible", show)
self.__paned_box.set_property("visible", not show)
def __notify_status_changed(self):
def change_idle_cb():
self.notify_status_changed()
self.__notify_id = 0
return False
if self.__notify_id == 0:
self.__notify_id = GObject.idle_add(change_idle_cb)
#
# internal purchasing code
#
def __auth_download(self, sku): # http://magnatune.com/info/api
def auth_data_cb(data, (username, password)):
dl_album_handler = DownloadAlbumHandler(self.__settings['format'])
auth_parser = xml.sax.make_parser()
auth_parser.setContentHandler(dl_album_handler)
if data is None:
# hmm.
return
try:
data = data.replace("<br>", "") # get rid of any stray <br> tags that will mess up the parser
data = data.replace(" & ", " & ") # clean up some missing escaping
# print data
auth_parser.feed(data)
auth_parser.close()
# process the URI: add authentication info, quote the filename component for some reason
parsed = urlparse.urlparse(dl_album_handler.url)
netloc = "%s:%s@%s" % (username, password, parsed.hostname)
spath = os.path.split(urllib.url2pathname(parsed.path))
basename = spath[1]
path = urllib.pathname2url(os.path.join(spath[0], urllib.quote(basename)))
authed = (parsed[0], netloc, path) + parsed[3:]
audio_dl_uri = urlparse.urlunparse(authed)
print "download uri for %s is %s" % (sku, audio_dl_uri)
self.__download_album(audio_dl_uri, sku)
except MagnatuneDownloadError, e:
RB.error_dialog(title = _("Download Error"),
message = _("An error occurred while trying to authorize the download.\nThe Magnatune server returned:\n%s") % str(e))
except Exception, e:
sys.excepthook(*sys.exc_info())
RB.error_dialog(title = _("Error"),
message = _("An error occurred while trying to download the album.\nThe error text is:\n%s") % str(e))
print "downloading album: " + sku
account = MagnatuneAccount.instance()
(account_type, username, password) = account.get()
url_dict = {
'id': magnatune_partner_id,
'sku': sku
}
url = magnatune_api_download_uri % (username, password)
url = url + urllib.urlencode(url_dict)
l = rb.Loader()
l.get_url(url, auth_data_cb, (username, password))
def __download_album(self, audio_dl_uri, sku):
def download_progress(copy, complete, total, self):
self.__downloads[audio_dl_uri] = (complete, total)
self.__notify_status_changed()
def download_finished(copy, success, self):
del self.__downloads[audio_dl_uri]
del self.__copies[audio_dl_uri]
print "download of %s finished: %s" % (audio_dl_uri, success)
if success:
threading.Thread(target=unzip_album).start()
else:
remove_download_files()
if len(self.__downloads) == 0: # All downloads are complete
shell = self.props.shell
manager = shell.props.ui_manager
manager.get_action("/MagnatuneSourceViewPopup/MagnatuneCancelDownload").set_sensitive(False)
if success:
shell.notify_custom(4000, _("Finished Downloading"), _("All Magnatune downloads have been completed."), None, False)
self.__notify_status_changed()
def unzip_album():
# just use the first library location
library = Gio.Settings("org.gnome.rhythmbox.rhythmdb")
library_location = Gio.file_new_for_uri(library['locations'][0])
print "unzipping %s" % dest.get_path()
album = zipfile.ZipFile(dest.get_path())
for track in album.namelist():
track_uri = library_location.resolve_relative_path(track).get_uri()
print "zip file entry: %s => %s" % (track, track_uri)
track_uri = RB.sanitize_uri_for_filesystem(track_uri)
RB.uri_create_parent_dirs(track_uri)
track_out = Gio.file_new_for_uri(track_uri).create(Gio.FileCreateFlags.NONE, None)
if track_out is not None:
track_out.write(album.read(track), None)
track_out.close(None)
print "adding %s to library" % track_uri
self.__db.add_uri(track_uri)
album.close()
remove_download_files()
def remove_download_files():
print "removing download files"
in_progress.delete(None)
dest.delete(None)
in_progress = magnatune_in_progress_dir.resolve_relative_path("in_progress_" + sku)
dest = magnatune_in_progress_dir.resolve_relative_path(sku)
in_progress.replace_contents(str(audio_dl_uri),
None,
False,
Gio.FileCreateFlags.PRIVATE|Gio.FileCreateFlags.REPLACE_DESTINATION,
None)
shell = self.props.shell
manager = shell.props.ui_manager
manager.get_action("/MagnatuneSourceViewPopup/MagnatuneCancelDownload").set_sensitive(True)
try:
# For some reason, Gio.FileCopyFlags.OVERWRITE doesn't work for copy_async
dest.delete(None)
except:
pass
dl = RB.AsyncCopy()
dl.set_progress(download_progress, self)
dl.start(audio_dl_uri, dest.get_uri(), download_finished, self)
self.__downloads[audio_dl_uri] = (0, 0) # (current, total)
self.__copies[audio_dl_uri] = dl
def cancel_downloads(self):
for download in self.__copies.values():
download.cancel()
shell = self.props.shell
manager = shell.props.ui_manager
manager.get_action("/MagnatuneSourceViewPopup/MagnatuneCancelDownload").set_sensitive(False)
def playing_entry_changed(self, entry):
if not self.__db or not entry:
return
if entry.get_entry_type() != self.__db.entry_type_get_by_name("MagnatuneEntryType"):
return
sku = self.__sku_dict[entry.get_string(RB.RhythmDBPropType.LOCATION)]
key = RB.ExtDBKey.create_storage("album", entry.get_string(RB.RhythmDBPropType.ALBUM))
key.add_field("artist", entry.get_string(RB.RhythmDBPropType.ARTIST))
self.__art_store.store_uri(key, self.__art_dict[sku])
GObject.type_register(MagnatuneSource)
|