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
|
# -*- Mode: python; coding: utf-8; tab-width: 8; indent-tabs-mode: t; -*-
#
# Copyright (C) 2009 Jonathan Matthew <jonathan@d14n.org>
#
# 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 urllib
import xml.dom.minidom as dom
import re
import ConfigParser
import os
import time
import rb
from gi.repository import RB
import gettext
gettext.install('rhythmbox', RB.locale_dir())
# allow repeat searches once a week
REPEAT_SEARCH_PERIOD = 86400 * 7
# this API key belongs to jonathan@d14n.org
# and was generated specifically for this use
API_KEY = 'ff56d530598d65c1a4088e57da7be2f9'
API_URL = 'http://ws.audioscrobbler.com/2.0/'
# LASTFM_LOGO = "lastfm_red_small.png"
# LASTFM_TOOLTIP = (LASTFM_LOGO, _("Image provided by Last.fm"))
DISC_NUMBER_REGEXS = (
"\(disc *[0-9]+\)",
"\(cd *[0-9]+\)",
"\[disc *[0-9]+\]",
"\[cd *[0-9]+\]",
" - disc *[0-9]+$",
" - cd *[0-9]+$",
" disc *[0-9]+$",
" cd *[0-9]+$"
)
def user_has_account():
session_file = os.path.join(RB.user_data_dir(), "audioscrobbler", "sessions")
if os.path.exists(session_file) == False:
return False
sessions = ConfigParser.RawConfigParser()
sessions.read(session_file)
try:
return (sessions.get('Last.fm', 'username') != "")
except:
return False
class LastFMSearch (object):
def __init__(self):
pass
def search_url (self, artist, album, album_mbid):
# Remove variants of Disc/CD [1-9] from album title before search
orig_album = album
for exp in DISC_NUMBER_REGEXS:
p = re.compile (exp, re.IGNORECASE)
album = p.sub ('', album)
album.strip()
print "searching for (%s, %s, %s)" % (artist, album, album_mbid)
url = API_URL + "?method=album.getinfo&"
if artist != None:
url = url + "artist=%s&" % (urllib.quote_plus(artist))
if album != None:
url = url + "album=%s&" % (urllib.quote_plus(album))
if album_mbid != None:
url = url + "mbid=%s&" % (urllib.quote_plus(album_mbid))
url = url + "api_key=%s" % API_KEY
print "last.fm query url = %s" % url
return url
def album_info_cb (self, data):
if data is None:
print "last.fm query returned nothing"
self.search_next()
return
parsed = dom.parseString(data)
# find image URLs
image_urls = []
for tag in parsed.getElementsByTagName('image'):
if tag.firstChild is None:
print "got useless image tag"
continue
url = tag.firstChild.data
url.strip()
if url != "":
print "found image url: %s" % url
image_urls.append(url)
if len(image_urls) > 0:
# images tags appear in order of increasing size, and we want the largest. probably.
url = image_urls.pop()
self.store.store_uri(self.current_key, RB.ExtDBSourceType.SEARCH, url)
self.callback(self.callback_args)
else:
self.search_next()
def search_next (self):
if len(self.searches) == 0:
self.callback(self.callback_args)
return
(artist, album, album_mbid) = self.searches.pop(0)
self.current_key = RB.ExtDBKey.create_storage("album", album)
if artist is not None:
self.current_key.add_field("artist", artist)
url = self.search_url(artist, album, album_mbid)
l = rb.Loader()
l.get_url(url, self.album_info_cb)
def search(self, key, last_time, store, callback, args):
if last_time > (time.time() - REPEAT_SEARCH_PERIOD):
print "we already tried this one"
callback (args)
return
if user_has_account() == False:
print "can't search: no last.fm account details"
callback (args)
return
album = key.get_field("album")
artists = key.get_field_values("artist")
album_mbid = key.get_info("musicbrainz-albumid")
artists = filter(lambda x: x not in (None, "", _("Unknown")), artists)
if album in ("", _("Unknown")):
album = None
if album == None or len(artists) == 0:
print "can't search: no useful details"
callback (args)
return
self.searches = []
for a in artists:
self.searches.append([a, album, album_mbid])
self.searches.append(["Various Artists", album, album_mbid])
self.store = store
self.callback = callback
self.callback_args = args
self.search_next()
|