openmedialibrary/oml/item/handlers.py

104 lines
3.4 KiB
Python
Raw Normal View History

2014-05-19 22:50:41 +00:00
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
2014-09-02 22:32:44 +00:00
2014-05-19 22:50:41 +00:00
2014-08-12 08:16:57 +00:00
from datetime import datetime
import mimetypes
2014-05-19 22:50:41 +00:00
import os
2014-10-31 11:48:20 +00:00
from urllib.request import quote
2014-05-19 22:50:41 +00:00
import zipfile
2014-09-02 22:32:44 +00:00
from .models import Item
2014-08-09 16:33:59 +00:00
import db
2014-08-12 08:16:57 +00:00
import settings
import tornado.web
2014-05-19 22:50:41 +00:00
class OMLHandler(tornado.web.RequestHandler):
2014-08-09 16:33:59 +00:00
def initialize(self):
pass
2014-05-19 22:50:41 +00:00
class EpubHandler(OMLHandler):
def get(self, id, filename):
2014-08-09 16:33:59 +00:00
with db.session():
2014-05-19 22:50:41 +00:00
item = Item.get(id)
path = item.get_path()
if not item or item.info['extension'] != 'epub' or not path:
self.set_status(404)
self.write('')
else:
z = zipfile.ZipFile(path)
if filename == '':
self.write('<br>\n'.join([f.filename for f in z.filelist]))
elif filename not in [f.filename for f in z.filelist]:
self.set_status(404)
self.write('')
else:
content_type = {
'xpgt': 'application/vnd.adobe-page-template+xml'
}.get(filename.split('.')[0], mimetypes.guess_type(filename)[0]) or 'text/plain'
self.set_header('Content-Type', content_type)
self.write(z.read(filename))
2014-10-31 11:48:20 +00:00
def serve_static(handler, path, mimetype, include_body=True, disposition=None):
2014-05-21 23:06:08 +00:00
#fixme use static file handler / serve ranges
2014-05-19 22:50:41 +00:00
handler.set_header('Content-Type', mimetype)
2014-05-21 23:06:08 +00:00
handler.set_header('Content-Length', str(os.stat(path).st_size))
2014-10-31 11:48:20 +00:00
if disposition:
handler.set_header('Content-Disposition', "attachment; filename*=UTF-8''%s" % quote(disposition.encode('utf-8')))
2014-05-25 20:32:00 +00:00
if include_body:
2014-09-02 22:32:44 +00:00
with open(path, 'rb') as fd:
2014-05-25 20:32:00 +00:00
handler.write(fd.read())
2014-05-19 22:50:41 +00:00
return
class FileHandler(OMLHandler):
2014-12-13 20:01:54 +00:00
def initialize(self, attachment=False):
self._attachment = attachment
2014-05-25 20:32:00 +00:00
def head(self, id):
self.get(id, include_body=False)
def get(self, id, include_body=True):
2014-08-09 16:33:59 +00:00
with db.session():
2014-05-19 22:50:41 +00:00
item = Item.get(id)
2014-05-25 20:32:00 +00:00
path = item.get_path() if item else None
if not item or not path:
2014-05-19 22:50:41 +00:00
self.set_status(404)
return
mimetype={
'epub': 'application/epub+zip',
'pdf': 'application/pdf',
2014-05-21 23:06:08 +00:00
'txt': 'text/plain',
2014-05-19 22:50:41 +00:00
}.get(path.split('.')[-1], None)
2014-12-13 20:01:54 +00:00
if self._attachment:
disposition = os.path.basename(path)
else:
disposition = None
return serve_static(self, path, mimetype, include_body, disposition=disposition)
2014-05-19 22:50:41 +00:00
class ReaderHandler(OMLHandler):
def get(self, id):
2014-08-09 16:33:59 +00:00
with db.session():
2014-05-19 22:50:41 +00:00
item = Item.get(id)
if not item:
self.set_status(404)
return
if item.info['extension'] == 'epub':
html = 'html/epub.html'
elif item.info['extension'] == 'pdf':
html = 'html/pdf.html'
elif item.info['extension'] == 'txt':
html = 'html/txt.html'
else:
self.set_status(404)
return
item.accessed = datetime.utcnow()
item.timesaccessed = (item.timesaccessed or 0) + 1
item.update_sort()
2014-05-19 22:50:41 +00:00
item.save()
return serve_static(self, os.path.join(settings.static_path, html), 'text/html')