#!/usr/bin/python2.6 # coding: utf-8 import os from StringIO import StringIO from whoosh.index import open_dir from whoosh.qparser import QueryParser import whoosh.fields as fields import whoosh.analysis as analysis import whoosh.highlight as highlight import flask import pyPdf import werkzeug app = flask.Flask("booksearch") index = open_dir(u"index", mapped=False) searcher = index.searcher() @app.route("/") def do_index(): return flask.redirect(flask.url_for("do_search",term="")) @app.route("/download/file/") def do_download_file(docnum): document = index.reader().stored_fields(docnum) r = werkzeug.Response(open(document['path'], "r"), mimetype="application/pdf",) r.headers.add('Content-Disposition', 'attachment', filename=os.path.basename(document['path'])) return r @app.route("/download/page/", methods=["GET"]) def do_download_page(docnum): document = index.reader().stored_fields(docnum) inputfile = pyPdf.PdfFileReader(file(document['path'], 'r')) page = inputfile.getPage(document['pagenumber']) outbuf = StringIO() outfile = pyPdf.PdfFileWriter() outfile.addPage(page) outfile.write(outbuf) outbuf.seek(0) r= werkzeug.Response(outbuf, mimetype="application/pdf") client_filename = os.path.basename(document['path'])[:-3] client_filename += u".Page-{0}".format(document['pagenumber']) r.headers.add('Content-Disposition', 'attachment', filename=client_filename) return r @app.route("/search/skip=/",methods=["GET"]) @app.route("/search/",methods=["GET"]) @app.route("/search/", methods=["GET"]) def do_search(skip=0,term=None): if skip == 0 and not term: return flask.render_template('search.html', objects=[], term="", skip=0) query = QueryParser("content").parse(term) results = searcher.search(query, limit=skip+5) terms = [text for fieldname, text in query.all_terms() if fieldname == "content"] objects = [] for result in results[skip:skip+5]: title = result.get("title") path = result.get("path") print path high = highlight.highlight(result.get("content"), terms, analysis.StandardAnalyzer(), highlight.SimpleFragmenter(), highlight.HtmlFormatter()) objects.append({ 'title' : title, 'path' : path, 'excerpt' : high, 'docnum':result.docnum }) return flask.render_template('search.html', objects=objects, term=term, skip=skip) if __name__ == "__main__": app.debug = True app.run(host="0.0.0.0")