mirror of
https://github.com/rembo10/headphones.git
synced 2026-07-22 08:53:59 +01:00
c17ede266c
If no ASIN then last.fm not being checked and artwork not embedded correctly
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
# This file is part of Headphones.
|
|
#
|
|
# Headphones 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.
|
|
#
|
|
# Headphones 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 Headphones. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import urllib2
|
|
from headphones import db
|
|
|
|
def getAlbumArt(albumid):
|
|
|
|
myDB = db.DBConnection()
|
|
asin = myDB.action('SELECT AlbumASIN from albums WHERE AlbumID=?', [albumid]).fetchone()[0]
|
|
|
|
if not asin:
|
|
return None
|
|
|
|
url = 'http://ec1.images-amazon.com/images/P/%s.01.LZZZZZZZ.jpg' % asin
|
|
|
|
return url
|
|
|
|
def getCachedArt(albumid):
|
|
|
|
from headphones import cache
|
|
|
|
c = cache.Cache()
|
|
|
|
artwork_path = c.get_artwork_from_cache(AlbumID=albumid)
|
|
|
|
if not artwork_path:
|
|
return None
|
|
|
|
if artwork_path.startswith('http://'):
|
|
try:
|
|
artwork = urllib2.urlopen(artwork_path, timeout=20).read()
|
|
return artwork
|
|
except:
|
|
logger.warn("Unable to open url: " + artwork_path)
|
|
return None
|
|
else:
|
|
artwork = open(artwork_path, "r").read()
|
|
return artwork
|