#!/usr/bin/env python from __future__ import absolute_import try: from urllib.parse import quote_plus from urllib.parse import unquote_plus except ImportError: from urllib import quote_plus from urllib import unquote_plus from datetime import datetime from mailbox import MaildirMessage import mimetypes import email import re import html import os import bleach import web from notmuch2 import Database from jinja2 import Environment, FileSystemLoader # FIXME to PackageLoader from jinja2 import Markup try: import bjoern # from https://github.com/jonashaag/bjoern/ use_bjoern = True except: use_bjoern = False # Configuration options safe_tags = bleach.sanitizer.ALLOWED_TAGS + \ [u'div', u'span', u'p', u'br', u'table', u'tr', u'td', u'th'] linkify_plaintext = True # delays page load by about 0.02s of 0.20s budget show_thread_nav = True # delays page load by about 0.04s of 0.20s budget prefix = os.environ.get('NMWEB_PREFIX', "http://localhost:8080") webprefix = os.environ.get('NMWEB_STATIC', prefix + "/static") cachedir = os.environ.get('NMWEB_CACHE', "static/cache") # special for webpy server; changeable if using your own cachepath = os.environ.get('NMWEB_CACHE_PATH', cachedir) # location of static cache in the local filesystem if 'NMWEB_DEBUG' in os.environ: web.config.debug = True else: web.config.debug = False # End of config options env = Environment(autoescape=True, loader=FileSystemLoader('templates')) urls = ( '/', 'index', '/search/(.*)', 'search', '/show/(.*)', 'show', ) def urlencode_filter(s): if type(s) == 'Markup': s = s.unescape() s = s.encode('utf8') s = quote_plus(s) return Markup(s) env.filters['url'] = urlencode_filter class index: def GET(self): web.header('Content-type', 'text/html') base = env.get_template('base.html') template = env.get_template('index.html') db = Database() tags = db.tags return template.render(tags=tags, title="Notmuch webmail", prefix=prefix, sprefix=webprefix) class search: def GET(self, terms): redir = False if web.input(terms=None).terms: redir = True terms = web.input().terms terms = unquote_plus (terms) if web.input(afters=None).afters: afters = web.input(afters=None).afters[:-3] else: afters = '0' if web.input(befores=None).befores: befores = web.input(befores=None).befores else: befores = '4294967296' # 2^32 try: if int(afters) > 0 or int(befores) < 4294967296: redir = True terms += ' date:@%s..@%s' % (int(afters), int(befores)) except ValueError: pass if redir: raise web.seeother('/search/%s' % quote_plus(terms.encode('utf8'))) web.header('Content-type', 'text/html') db = Database() ts = db.threads(query=terms, sort=Database.SORT.NEWEST_FIRST) template = env.get_template('search.html') return template.generate(terms=terms, ts=ts, title=terms, prefix=prefix, sprefix=webprefix) def format_time_range(start, end): if end-start < (60*60*24): time = datetime.fromtimestamp(start).strftime('%Y %b %d %H:%M') else: start = datetime.fromtimestamp(start).strftime("%Y %b %d") end = datetime.fromtimestamp(end).strftime("%Y %b %d") time = "%s through %s" % (start, end) return time env.globals['format_time_range'] = format_time_range def mailto_addrs(msg,header_name): try: hdr = msg.header(header_name) except LookupError: return '' frm = email.utils.getaddresses([hdr]) return ', '.join(['%s' % ((l, p) if p else (l, l)) for (p, l) in frm]) env.globals['mailto_addrs'] = mailto_addrs def link_msg(msg): lnk = quote_plus(msg.messageid.encode('utf8')) try: subj = html.escape(msg.header('Subject')) except LookupError: subj = "" out = '%s' % (prefix, lnk, subj) return out env.globals['link_msg'] = link_msg def show_msgs(msgs): r = '