2013-06-03 16:31:39 +00:00
|
|
|
from tastypie.models import ApiKey
|
|
|
|
|
2011-09-21 05:22:48 +00:00
|
|
|
from django.contrib import auth
|
2011-09-29 18:40:45 +00:00
|
|
|
from django.contrib.auth.models import User
|
2014-07-16 23:47:32 +00:00
|
|
|
from django.contrib.sites.models import Site
|
2011-09-14 15:38:29 +00:00
|
|
|
from django.db.models import Q
|
2013-06-03 16:31:39 +00:00
|
|
|
from django.shortcuts import render_to_response, get_object_or_404
|
|
|
|
from django.template import RequestContext
|
2014-07-16 23:47:32 +00:00
|
|
|
from django.views.generic.base import View, TemplateView
|
|
|
|
from django.http import (
|
|
|
|
HttpResponse,
|
|
|
|
HttpResponseNotFound
|
|
|
|
)
|
2011-09-14 15:38:29 +00:00
|
|
|
|
2011-12-20 04:26:55 +00:00
|
|
|
import regluit.core.isbn
|
2014-07-16 23:47:32 +00:00
|
|
|
from regluit.api import opds
|
2011-12-20 04:26:55 +00:00
|
|
|
|
2013-06-03 16:31:39 +00:00
|
|
|
from regluit.core import models
|
2011-09-14 15:38:29 +00:00
|
|
|
|
|
|
|
def isbn(request,isbn):
|
2011-12-20 04:26:55 +00:00
|
|
|
if len(isbn)==10:
|
|
|
|
isbn=regluit.core.isbn.convert_10_to_13(isbn)
|
2012-01-10 20:20:02 +00:00
|
|
|
try:
|
|
|
|
edition = models.Identifier.objects.get( Q(type = 'isbn', value = isbn)).edition
|
|
|
|
editions = [edition]
|
|
|
|
except models.Identifier.DoesNotExist:
|
|
|
|
editions = []
|
2011-09-14 15:38:29 +00:00
|
|
|
return render_to_response('isbn.html',
|
|
|
|
{'isbn':isbn, 'editions':editions},
|
|
|
|
context_instance=RequestContext(request)
|
|
|
|
)
|
|
|
|
|
2011-09-14 17:31:16 +00:00
|
|
|
def editions(request):
|
|
|
|
editions = models.Edition.objects.all()
|
|
|
|
return render_to_response('editions.html',
|
|
|
|
{'editions':editions},
|
|
|
|
context_instance=RequestContext(request)
|
|
|
|
)
|
2011-09-21 05:22:48 +00:00
|
|
|
|
|
|
|
def widget(request,isbn):
|
|
|
|
"""
|
2014-04-23 23:41:43 +00:00
|
|
|
supply info for book panel
|
2011-09-21 05:22:48 +00:00
|
|
|
"""
|
|
|
|
|
2014-04-23 23:41:43 +00:00
|
|
|
|
2011-12-20 04:26:55 +00:00
|
|
|
if len(isbn)==10:
|
2012-01-10 20:20:02 +00:00
|
|
|
isbn = regluit.core.isbn.convert_10_to_13(isbn)
|
|
|
|
try:
|
|
|
|
identifier = models.Identifier.objects.get( Q( type = 'isbn', value = isbn ))
|
|
|
|
work = identifier.work
|
|
|
|
edition = identifier.edition
|
2012-02-16 16:06:26 +00:00
|
|
|
except models.Identifier.DoesNotExist:
|
2014-04-23 23:41:43 +00:00
|
|
|
return render_to_response('widget.html',
|
|
|
|
{'isbn':isbn,'edition':None, 'work':None, 'campaign':None,},
|
|
|
|
context_instance=RequestContext(request)
|
|
|
|
)
|
2011-09-21 05:22:48 +00:00
|
|
|
return render_to_response('widget.html',
|
2014-04-23 23:41:43 +00:00
|
|
|
{'isbn':isbn,'edition':edition, 'work':work, 'campaign':work.last_campaign(), },
|
2011-09-21 05:22:48 +00:00
|
|
|
context_instance=RequestContext(request)
|
|
|
|
)
|
2011-10-20 00:08:17 +00:00
|
|
|
|
|
|
|
class ApiHelpView(TemplateView):
|
|
|
|
template_name = "api_help.html"
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(ApiHelpView, self).get_context_data(**kwargs)
|
|
|
|
|
|
|
|
# base_url passed in to allow us to write absolute URLs for this site
|
|
|
|
base_url = self.request.build_absolute_uri("/")[:-1]
|
|
|
|
context["base_url"] = base_url
|
|
|
|
|
|
|
|
# if user is logged in, pass in the user's API key
|
|
|
|
u = auth.get_user(self.request)
|
|
|
|
if u.is_authenticated():
|
|
|
|
api_key = ApiKey.objects.filter(user=u)[0].key
|
|
|
|
context['api_key'] = api_key
|
|
|
|
|
|
|
|
# pass in a sample Campaign whose widget can be displayed
|
|
|
|
campaigns = models.Campaign.objects.all()
|
|
|
|
if len(campaigns):
|
|
|
|
c = campaigns[0]
|
2012-01-10 20:20:02 +00:00
|
|
|
isbn = c.work.first_isbn_13
|
2011-10-20 00:08:17 +00:00
|
|
|
context["campaign"] = campaigns[0]
|
|
|
|
context["campaign_isbn"] = isbn
|
|
|
|
|
|
|
|
return context
|
2014-07-16 23:47:32 +00:00
|
|
|
|
|
|
|
class OPDSNavigationView(TemplateView):
|
|
|
|
|
|
|
|
# http://stackoverflow.com/a/6867976: secret to how to change content-type
|
|
|
|
|
|
|
|
def render_to_response(self, context, **response_kwargs):
|
|
|
|
response_kwargs['content_type'] = "application/atom+xml;profile=opds-catalog;kind=navigation"
|
|
|
|
return super(TemplateView, self).render_to_response(context, **response_kwargs)
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super(OPDSNavigationView, self).get_context_data(**kwargs)
|
2014-07-17 04:00:16 +00:00
|
|
|
context["feeds"] = opds.feeds()
|
2014-07-16 23:47:32 +00:00
|
|
|
return context
|
|
|
|
|
|
|
|
class OPDSAcquisitionView(View):
|
|
|
|
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
facet = kwargs.get('facet')
|
2014-11-04 00:36:26 +00:00
|
|
|
page = request.GET.get('page', None)
|
|
|
|
try:
|
|
|
|
page = int(page)
|
|
|
|
except:
|
|
|
|
page = None
|
2014-07-16 23:47:32 +00:00
|
|
|
if facet in opds.facets:
|
2014-07-17 04:00:16 +00:00
|
|
|
facet_class = getattr(opds, facet)()
|
2014-11-04 00:36:26 +00:00
|
|
|
return HttpResponse(facet_class.feed(page),
|
2014-07-16 23:47:32 +00:00
|
|
|
content_type="application/atom+xml;profile=opds-catalog;kind=acquisition")
|
|
|
|
else:
|
|
|
|
return HttpResponseNotFound("invalid facet")
|