2011-09-07 09:34:03 +00:00
|
|
|
import json
|
|
|
|
import logging
|
2011-12-19 06:33:13 +00:00
|
|
|
import datetime
|
2011-09-07 09:34:03 +00:00
|
|
|
|
|
|
|
import requests
|
2011-11-06 22:42:09 +00:00
|
|
|
from xml.etree import ElementTree
|
2011-10-19 03:00:07 +00:00
|
|
|
|
|
|
|
from django.db.models import Q
|
2011-11-06 22:42:09 +00:00
|
|
|
from django.conf import settings
|
2011-10-19 03:45:02 +00:00
|
|
|
from django.db import IntegrityError
|
2011-09-09 05:38:28 +00:00
|
|
|
|
|
|
|
from regluit.core import models
|
2011-12-20 04:26:55 +00:00
|
|
|
import regluit.core.isbn
|
2011-09-09 05:38:28 +00:00
|
|
|
|
2011-09-10 11:36:38 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
2011-09-09 05:38:28 +00:00
|
|
|
|
2012-01-18 04:22:07 +00:00
|
|
|
|
2012-01-09 18:55:22 +00:00
|
|
|
def add_by_oclc(isbn, work=None):
|
|
|
|
# this is indirection in case we have a data source other than google
|
|
|
|
return add_by_oclc_from_google(isbn)
|
2011-12-19 06:33:13 +00:00
|
|
|
|
2011-11-06 21:33:04 +00:00
|
|
|
|
2012-01-09 18:55:22 +00:00
|
|
|
def add_by_oclc_from_google(oclc):
|
|
|
|
if oclc:
|
2012-01-10 20:20:02 +00:00
|
|
|
logger.info("adding book by oclc %s" , oclc)
|
2012-01-09 18:55:22 +00:00
|
|
|
else:
|
2011-11-06 21:33:04 +00:00
|
|
|
return None
|
|
|
|
try:
|
2012-01-09 18:55:22 +00:00
|
|
|
return models.Identifier.objects.get(type='oclc', value=oclc).edition
|
|
|
|
except:
|
|
|
|
url = "https://www.googleapis.com/books/v1/volumes"
|
|
|
|
results = _get_json(url, {"q": '"OCLC%s"' % oclc})
|
|
|
|
|
|
|
|
if not results.has_key('items') or len(results['items']) == 0:
|
2012-01-10 20:20:02 +00:00
|
|
|
logger.warn("no google hits for %s" , oclc)
|
2012-01-09 18:55:22 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
try:
|
2012-01-18 04:22:07 +00:00
|
|
|
e = add_by_googlebooks_id(results['items'][0]['id'], results=results['items'][0])
|
2012-01-09 18:55:22 +00:00
|
|
|
models.Identifier(type='oclc', value=oclc, edition=e, work=e.work).save()
|
|
|
|
return e
|
|
|
|
except LookupFailure, e:
|
|
|
|
logger.exception("failed to add edition for %s", oclc)
|
|
|
|
except IntegrityError, e:
|
|
|
|
logger.exception("google books data for %s didn't fit our db", oclc)
|
|
|
|
return None
|
2011-11-06 22:42:09 +00:00
|
|
|
|
2011-10-20 18:43:40 +00:00
|
|
|
def add_by_isbn(isbn, work=None):
|
2012-01-09 18:55:22 +00:00
|
|
|
if not isbn:
|
|
|
|
return None
|
2012-01-18 04:22:07 +00:00
|
|
|
e = add_by_isbn_from_google(isbn, work=work)
|
2012-01-09 18:55:22 +00:00
|
|
|
if e:
|
|
|
|
return e
|
2012-01-10 20:20:02 +00:00
|
|
|
|
|
|
|
logger.info("null came back from add_by_isbn_from_google: %s", isbn)
|
|
|
|
|
|
|
|
if not work or not work.title:
|
2012-01-09 18:55:22 +00:00
|
|
|
return None
|
2012-01-10 20:20:02 +00:00
|
|
|
|
2012-01-18 04:15:24 +00:00
|
|
|
# if there's a work with a title, we want to create stub editions and
|
|
|
|
# works, even if google doesn't know about it # but if it's not valid,
|
|
|
|
# forget it!
|
|
|
|
|
2012-01-09 18:55:22 +00:00
|
|
|
try:
|
2012-01-18 04:22:07 +00:00
|
|
|
isbn = regluit.core.isbn.ISBN(isbn)
|
2012-01-09 18:55:22 +00:00
|
|
|
except:
|
|
|
|
logger.exception("invalid isbn: %s", isbn)
|
|
|
|
return None
|
|
|
|
if not isbn.valid:
|
|
|
|
return None
|
2012-01-18 04:22:07 +00:00
|
|
|
isbn = isbn.to_string()
|
2012-01-10 20:20:02 +00:00
|
|
|
|
|
|
|
# we don't know the language ->'xx'
|
2012-01-18 04:22:07 +00:00
|
|
|
w = models.Work(title=work.title, language='xx')
|
2012-01-10 20:20:02 +00:00
|
|
|
w.save()
|
2012-01-18 04:22:07 +00:00
|
|
|
e = models.Edition(title=work.title,work=w)
|
2012-01-09 18:55:22 +00:00
|
|
|
e.save()
|
2012-01-18 04:22:07 +00:00
|
|
|
e.new = True
|
2012-01-10 20:20:02 +00:00
|
|
|
models.Identifier(type='isbn', value=isbn, work=w, edition=e).save()
|
2012-01-09 18:55:22 +00:00
|
|
|
return e
|
|
|
|
|
|
|
|
|
|
|
|
def add_by_isbn_from_google(isbn, work=None):
|
|
|
|
"""add a book to the UnglueIt database from google based on ISBN. The work parameter
|
2011-10-14 04:12:20 +00:00
|
|
|
is optional, and if not supplied the edition will be associated with
|
|
|
|
a stub work.
|
|
|
|
"""
|
2011-12-22 19:29:46 +00:00
|
|
|
if not isbn:
|
|
|
|
return None
|
2011-12-20 04:26:55 +00:00
|
|
|
if len(isbn)==10:
|
2012-01-18 04:22:07 +00:00
|
|
|
isbn = regluit.core.isbn.convert_10_to_13(isbn)
|
2011-12-20 04:26:55 +00:00
|
|
|
|
2011-11-06 21:33:04 +00:00
|
|
|
logger.info("adding book by isbn %s", isbn)
|
2012-01-09 18:55:22 +00:00
|
|
|
# check if we already have this isbn
|
|
|
|
edition = get_edition_by_id(type='isbn',value=isbn)
|
|
|
|
if edition:
|
2011-12-22 19:29:46 +00:00
|
|
|
edition.new = False
|
2011-10-19 03:00:07 +00:00
|
|
|
return edition
|
|
|
|
|
2011-10-10 16:57:10 +00:00
|
|
|
url = "https://www.googleapis.com/books/v1/volumes"
|
|
|
|
results = _get_json(url, {"q": "isbn:%s" % isbn})
|
2011-09-09 05:38:28 +00:00
|
|
|
|
2011-10-10 21:26:38 +00:00
|
|
|
if not results.has_key('items') or len(results['items']) == 0:
|
2012-01-10 20:20:02 +00:00
|
|
|
logger.warn("no google hits for %s" , isbn)
|
2011-10-10 16:57:10 +00:00
|
|
|
return None
|
2011-09-07 09:34:03 +00:00
|
|
|
|
2011-10-19 03:45:02 +00:00
|
|
|
try:
|
2012-01-28 02:44:02 +00:00
|
|
|
return add_by_googlebooks_id(results['items'][0]['id'], work=work, results=results['items'][0], isbn=isbn)
|
2011-10-19 03:45:02 +00:00
|
|
|
except LookupFailure, e:
|
|
|
|
logger.exception("failed to add edition for %s", isbn)
|
2011-11-06 22:42:09 +00:00
|
|
|
except IntegrityError, e:
|
|
|
|
logger.exception("google books data for %s didn't fit our db", isbn)
|
2011-10-19 03:45:02 +00:00
|
|
|
return None
|
2011-09-07 09:34:03 +00:00
|
|
|
|
2012-01-09 18:55:22 +00:00
|
|
|
def get_work_by_id(type,value):
|
|
|
|
if value:
|
|
|
|
try:
|
|
|
|
return models.Identifier.objects.get(type=type,value=value).work
|
|
|
|
except models.Identifier.DoesNotExist:
|
|
|
|
return None
|
2011-09-07 09:34:03 +00:00
|
|
|
|
2012-01-09 18:55:22 +00:00
|
|
|
def get_edition_by_id(type,value):
|
|
|
|
if value:
|
|
|
|
try:
|
|
|
|
return models.Identifier.objects.get(type=type,value=value).edition
|
|
|
|
except models.Identifier.DoesNotExist:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2012-01-28 02:44:02 +00:00
|
|
|
def add_by_googlebooks_id(googlebooks_id, work=None, results=None, isbn=None):
|
2011-10-14 04:12:20 +00:00
|
|
|
"""add a book to the UnglueIt database based on the GoogleBooks ID. The
|
|
|
|
work parameter is optional, and if not supplied the edition will be
|
2012-01-28 02:44:02 +00:00
|
|
|
associated with a stub work. isbn can be passed because sometimes passed data won't include it
|
2012-01-09 18:55:22 +00:00
|
|
|
|
2011-10-14 04:12:20 +00:00
|
|
|
"""
|
2011-10-14 04:02:19 +00:00
|
|
|
# don't ping google again if we already know about the edition
|
2011-12-13 14:55:26 +00:00
|
|
|
try:
|
2012-01-09 18:55:22 +00:00
|
|
|
return models.Identifier.objects.get(type='goog', value=googlebooks_id).edition
|
|
|
|
except models.Identifier.DoesNotExist:
|
2011-12-13 14:55:26 +00:00
|
|
|
pass
|
2012-01-09 18:55:22 +00:00
|
|
|
|
|
|
|
# if google has been queried by caller, don't call again
|
|
|
|
if results:
|
|
|
|
item =results
|
|
|
|
else:
|
|
|
|
logger.info("loading metadata from google for %s", googlebooks_id)
|
|
|
|
url = "https://www.googleapis.com/books/v1/volumes/%s" % googlebooks_id
|
|
|
|
item = _get_json(url)
|
2011-11-06 21:33:04 +00:00
|
|
|
d = item['volumeInfo']
|
2012-01-31 04:56:20 +00:00
|
|
|
|
|
|
|
title = d['title']
|
|
|
|
if len(title)==0:
|
|
|
|
# need a title to make an edition record; some crap records in GB. use title from parent if available
|
|
|
|
if work:
|
|
|
|
title=work.title
|
|
|
|
else:
|
|
|
|
return None
|
2011-10-14 04:02:19 +00:00
|
|
|
|
2011-12-13 14:55:26 +00:00
|
|
|
# don't add the edition to a work with a different language
|
|
|
|
# https://www.pivotaltracker.com/story/show/17234433
|
2012-01-09 18:55:22 +00:00
|
|
|
language = d['language']
|
2012-01-29 03:16:14 +00:00
|
|
|
if len(language)>2:
|
|
|
|
language= language[0:2]
|
2011-12-13 14:55:26 +00:00
|
|
|
if work and work.language != language:
|
2012-01-10 20:20:02 +00:00
|
|
|
logger.info("not connecting %s since it is %s instead of %s" %
|
2011-12-13 14:55:26 +00:00
|
|
|
(googlebooks_id, language, work.language))
|
2012-01-18 04:22:07 +00:00
|
|
|
work = None
|
2012-01-28 02:44:02 +00:00
|
|
|
# isbn = None
|
|
|
|
if not isbn:
|
|
|
|
for i in d.get('industryIdentifiers', []):
|
|
|
|
if i['type'] == 'ISBN_10' and not isbn:
|
|
|
|
isbn = regluit.core.isbn.convert_10_to_13(i['identifier'])
|
|
|
|
elif i['type'] == 'ISBN_13':
|
|
|
|
isbn = i['identifier']
|
2012-01-09 18:55:22 +00:00
|
|
|
|
|
|
|
# now check to see if there's an existing Work
|
2012-01-27 14:35:00 +00:00
|
|
|
if isbn and not work:
|
2012-01-09 18:55:22 +00:00
|
|
|
work = get_work_by_id(type='isbn',value=isbn)
|
|
|
|
if not work:
|
2012-01-31 04:56:20 +00:00
|
|
|
work = models.Work.objects.create(title=title, language=language)
|
2012-01-18 04:22:07 +00:00
|
|
|
work.new = True
|
2012-01-09 18:55:22 +00:00
|
|
|
work.save()
|
|
|
|
|
2012-01-27 14:35:00 +00:00
|
|
|
|
|
|
|
# going off to google can take some time, so we want to make sure this edition has not
|
|
|
|
# been created in another thread while we were waiting
|
|
|
|
try:
|
|
|
|
return models.Identifier.objects.get(type='goog', value=googlebooks_id).edition
|
|
|
|
except models.Identifier.DoesNotExist:
|
|
|
|
pass
|
|
|
|
|
2012-01-09 18:55:22 +00:00
|
|
|
|
|
|
|
# because this is a new google id, we have to create a new edition
|
|
|
|
e = models.Edition(work=work)
|
2012-01-31 04:56:20 +00:00
|
|
|
e.title = title
|
2011-10-10 16:57:10 +00:00
|
|
|
e.description = d.get('description')
|
|
|
|
e.publisher = d.get('publisher')
|
2011-11-21 19:13:29 +00:00
|
|
|
e.publication_date = d.get('publishedDate', '')
|
2011-12-13 14:55:26 +00:00
|
|
|
e.save()
|
2012-01-18 04:22:07 +00:00
|
|
|
e.new = True
|
2012-01-09 18:55:22 +00:00
|
|
|
|
|
|
|
# create identifier where needed
|
|
|
|
models.Identifier(type='goog',value=googlebooks_id,edition=e,work=work).save()
|
|
|
|
if isbn:
|
|
|
|
models.Identifier.get_or_add(type='isbn',value=isbn,edition=e,work=work)
|
2011-12-13 14:55:26 +00:00
|
|
|
|
2011-10-10 16:57:10 +00:00
|
|
|
for a in d.get('authors', []):
|
|
|
|
a, created = models.Author.objects.get_or_create(name=a)
|
|
|
|
a.editions.add(e)
|
2011-09-09 05:38:28 +00:00
|
|
|
|
2011-11-06 21:33:04 +00:00
|
|
|
access_info = item.get('accessInfo')
|
|
|
|
if access_info:
|
|
|
|
e.public_domain = item.get('public_domain', None)
|
|
|
|
epub = access_info.get('epub')
|
2011-11-06 22:42:09 +00:00
|
|
|
if epub and epub.get('downloadLink'):
|
2011-11-06 22:49:25 +00:00
|
|
|
ebook = models.Ebook(edition=e, format='epub',
|
2011-11-06 22:42:09 +00:00
|
|
|
url=epub.get('downloadLink'),
|
2011-11-06 21:33:04 +00:00
|
|
|
provider='google')
|
|
|
|
ebook.save()
|
2011-11-06 22:49:25 +00:00
|
|
|
|
|
|
|
pdf = access_info.get('pdf')
|
|
|
|
if pdf and pdf.get('downloadLink'):
|
|
|
|
ebook = models.Ebook(edition=e, format='pdf',
|
|
|
|
url=pdf.get('downloadLink', None),
|
|
|
|
provider='google')
|
|
|
|
ebook.save()
|
2012-01-09 18:55:22 +00:00
|
|
|
|
2011-10-10 16:57:10 +00:00
|
|
|
return e
|
2011-09-09 05:38:28 +00:00
|
|
|
|
|
|
|
|
2011-10-14 04:12:20 +00:00
|
|
|
def add_related(isbn):
|
|
|
|
"""add all books related to a particular ISBN to the UnglueIt database.
|
|
|
|
The initial seed ISBN will be added if it's not already there.
|
|
|
|
"""
|
2011-10-14 04:02:19 +00:00
|
|
|
# make sure the seed edition is there
|
2011-10-20 03:31:16 +00:00
|
|
|
logger.info("adding related editions for %s", isbn)
|
2012-01-28 00:16:46 +00:00
|
|
|
|
|
|
|
new_editions = []
|
|
|
|
|
2011-10-14 04:02:19 +00:00
|
|
|
edition = add_by_isbn(isbn)
|
2012-01-28 00:16:46 +00:00
|
|
|
if edition is None:
|
|
|
|
return new_editions
|
2011-10-14 04:02:19 +00:00
|
|
|
|
|
|
|
# this is the work everything will hang off
|
|
|
|
work = edition.work
|
2012-01-10 20:20:02 +00:00
|
|
|
other_editions = {}
|
2011-10-14 04:02:19 +00:00
|
|
|
for other_isbn in thingisbn(isbn):
|
2011-12-20 04:26:55 +00:00
|
|
|
# 979's come back as 13
|
|
|
|
if len(other_isbn)==10:
|
2012-01-18 04:22:07 +00:00
|
|
|
other_isbn = regluit.core.isbn.convert_10_to_13(other_isbn)
|
2012-01-09 18:55:22 +00:00
|
|
|
related_edition = add_by_isbn(other_isbn, work=work)
|
2011-10-20 05:23:30 +00:00
|
|
|
|
2012-01-10 20:20:02 +00:00
|
|
|
if related_edition:
|
2012-01-18 04:22:07 +00:00
|
|
|
related_language = related_edition.work.language
|
2012-01-10 20:20:02 +00:00
|
|
|
if edition.work.language == related_language:
|
|
|
|
new_editions.append(related_edition)
|
|
|
|
if related_edition.work != edition.work:
|
|
|
|
merge_works(edition.work, related_edition.work)
|
|
|
|
else:
|
|
|
|
if other_editions.has_key(related_language):
|
|
|
|
other_editions[related_language].append(related_edition)
|
|
|
|
else:
|
|
|
|
other_editions[related_language]=[related_edition]
|
|
|
|
|
|
|
|
# group the other language editions together
|
|
|
|
for lang_group in other_editions.itervalues():
|
|
|
|
if len(lang_group)>1:
|
|
|
|
lang_edition = lang_group[0]
|
|
|
|
for related_edition in lang_group[1:]:
|
|
|
|
if lang_edition.work != related_edition.work:
|
|
|
|
merge_works(lang_edition.work, related_edition.work)
|
|
|
|
|
2011-10-20 05:23:30 +00:00
|
|
|
return new_editions
|
2012-01-10 20:20:02 +00:00
|
|
|
|
2011-10-14 04:12:20 +00:00
|
|
|
|
2011-10-13 01:59:46 +00:00
|
|
|
def thingisbn(isbn):
|
2011-10-14 04:12:20 +00:00
|
|
|
"""given an ISBN return a list of related edition ISBNs, according to
|
2011-12-20 04:26:55 +00:00
|
|
|
Library Thing. (takes isbn_10 or isbn_13, returns isbn_10, except for 979 isbns, which come back as isbn_13')
|
2011-10-14 04:12:20 +00:00
|
|
|
"""
|
2012-01-10 20:20:02 +00:00
|
|
|
logger.info("looking up %s at ThingISBN" , isbn)
|
2011-10-13 01:59:46 +00:00
|
|
|
url = "http://www.librarything.com/api/thingISBN/%s" % isbn
|
|
|
|
xml = requests.get(url, headers={"User-Agent": settings.USER_AGENT}).content
|
|
|
|
doc = ElementTree.fromstring(xml)
|
|
|
|
return [e.text for e in doc.findall('isbn')]
|
|
|
|
|
2011-10-19 03:45:02 +00:00
|
|
|
|
2011-10-19 03:00:07 +00:00
|
|
|
def merge_works(w1, w2):
|
|
|
|
"""will merge the second work (w2) into the first (w1)
|
|
|
|
"""
|
2012-01-09 18:55:22 +00:00
|
|
|
logger.info("merging work %s into %s", w2, w1)
|
|
|
|
for identifier in w2.identifiers.all():
|
|
|
|
identifier.work = w1
|
|
|
|
identifier.save()
|
2011-10-19 03:00:07 +00:00
|
|
|
for edition in w2.editions.all():
|
|
|
|
edition.work = w1
|
|
|
|
edition.save()
|
|
|
|
for campaign in w2.campaigns.all():
|
|
|
|
campaign.work = w1
|
|
|
|
campaign.save()
|
|
|
|
for wishlist in models.Wishlist.objects.filter(works__in=[w2]):
|
2012-01-18 04:22:07 +00:00
|
|
|
w2source = wishlist.work_source(w2)
|
2011-12-08 23:22:05 +00:00
|
|
|
wishlist.remove_work(w2)
|
|
|
|
wishlist.add_work(w1, w2source)
|
2011-12-13 14:55:26 +00:00
|
|
|
# TODO: should we decommission w2 instead of deleting it, so that we can
|
|
|
|
# redirect from the old work URL to the new one?
|
2011-10-19 03:00:07 +00:00
|
|
|
w2.delete()
|
2011-10-14 04:12:20 +00:00
|
|
|
|
2011-10-19 03:45:02 +00:00
|
|
|
|
2011-12-19 06:33:13 +00:00
|
|
|
def add_openlibrary(work):
|
2012-01-09 18:55:22 +00:00
|
|
|
if work.openlibrary_lookup is not None:
|
|
|
|
# don't hit OL if we've visited in the past month or so
|
|
|
|
if datetime.datetime.now()- work.openlibrary_lookup < datetime.timedelta(days=30):
|
|
|
|
return
|
2011-12-19 06:33:13 +00:00
|
|
|
work.openlibrary_lookup = datetime.datetime.now()
|
|
|
|
work.save()
|
|
|
|
|
|
|
|
# find the first ISBN match in OpenLibrary
|
|
|
|
logger.info("looking up openlibrary data for work %s", work.id)
|
|
|
|
found = False
|
|
|
|
e = None # openlibrary edition json
|
|
|
|
w = None # openlibrary work json
|
|
|
|
|
|
|
|
# get the 1st openlibrary match by isbn that has an associated work
|
|
|
|
url = "http://openlibrary.org/api/books"
|
|
|
|
params = {"format": "json", "jscmd": "details"}
|
|
|
|
for edition in work.editions.all():
|
2011-12-20 04:26:55 +00:00
|
|
|
isbn_key = "ISBN:%s" % edition.isbn_13
|
2011-12-19 06:33:13 +00:00
|
|
|
params['bibkeys'] = isbn_key
|
2012-01-09 18:55:22 +00:00
|
|
|
e = _get_json(url, params, type='ol')
|
2011-12-19 06:33:13 +00:00
|
|
|
if e.has_key(isbn_key) and e[isbn_key]['details'].has_key('works'):
|
|
|
|
work_key = e[isbn_key]['details']['works'].pop(0)['key']
|
|
|
|
logger.info("got openlibrary work %s for isbn %s", work_key, isbn_key)
|
2012-01-09 18:55:22 +00:00
|
|
|
w = _get_json("http://openlibrary.org" + work_key,type='ol')
|
2011-12-19 06:33:13 +00:00
|
|
|
if w.has_key('subjects'):
|
|
|
|
found = True
|
|
|
|
break
|
|
|
|
|
|
|
|
if not found:
|
|
|
|
logger.warn("unable to find work %s at openlibrary", work.id)
|
|
|
|
return
|
|
|
|
|
|
|
|
# add the subjects to the Work
|
|
|
|
for s in w.get('subjects', []):
|
|
|
|
logger.info("adding subject %s to work %s", s, work.id)
|
|
|
|
subject, created = models.Subject.objects.get_or_create(name=s)
|
|
|
|
work.subjects.add(subject)
|
|
|
|
work.save()
|
2012-01-09 18:55:22 +00:00
|
|
|
|
|
|
|
models.Identifier.get_or_add(type='olwk',value=w['key'],work=work)
|
|
|
|
if e[isbn_key]['details'].has_key('identifiers'):
|
|
|
|
ids = e[isbn_key]['details']['identifiers']
|
|
|
|
if ids.has_key('goodreads'):
|
2012-01-10 20:20:02 +00:00
|
|
|
models.Identifier.get_or_add(type='gdrd',value=ids['goodreads'][0],work=work,edition=edition)
|
2012-01-09 18:55:22 +00:00
|
|
|
if ids.has_key('librarything'):
|
2012-01-10 20:20:02 +00:00
|
|
|
models.Identifier.get_or_add(type='ltwk',value=ids['librarything'][0],work=work)
|
2011-12-19 06:33:13 +00:00
|
|
|
# TODO: add authors here once they are moved from Edition to Work
|
|
|
|
|
|
|
|
|
2012-01-09 18:55:22 +00:00
|
|
|
def _get_json(url, params={}, type='gb'):
|
2011-10-10 19:57:12 +00:00
|
|
|
# TODO: should X-Forwarded-For change based on the request from client?
|
|
|
|
headers = {'User-Agent': settings.USER_AGENT,
|
|
|
|
'Accept': 'application/json',
|
|
|
|
'X-Forwarded-For': '69.174.114.214'}
|
2012-01-18 04:22:07 +00:00
|
|
|
if type == 'gb':
|
2012-01-09 18:55:22 +00:00
|
|
|
params['key'] = settings.GOOGLE_BOOKS_API_KEY
|
2011-09-09 05:38:28 +00:00
|
|
|
response = requests.get(url, params=params, headers=headers)
|
2011-09-07 09:34:03 +00:00
|
|
|
if response.status_code == 200:
|
|
|
|
return json.loads(response.content)
|
|
|
|
else:
|
2011-09-10 11:36:38 +00:00
|
|
|
logger.error("unexpected HTTP response: %s" % response)
|
2012-01-18 04:15:24 +00:00
|
|
|
if response.content:
|
|
|
|
logger.error("response content: %s" % response.content)
|
2011-09-07 09:34:03 +00:00
|
|
|
raise LookupFailure("GET failed: url=%s and params=%s" % (url, params))
|
|
|
|
|
2011-09-09 05:38:28 +00:00
|
|
|
|
2011-09-07 09:34:03 +00:00
|
|
|
class LookupFailure(Exception):
|
|
|
|
pass
|