hgwebdir_mod.py
538 lines
| 19.2 KiB
| text/x-python
|
PythonLexer
Eric Hopper
|
r2391 | # hgweb/hgwebdir_mod.py - Web interface for a directory of repositories. | ||
Eric Hopper
|
r2356 | # | ||
# Copyright 21 May 2005 - (c) 2005 Jake Edge <jake@edge2.net> | ||||
Vadim Gelfer
|
r2859 | # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | ||
Eric Hopper
|
r2356 | # | ||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Eric Hopper
|
r2356 | |||
Yuya Nishihara
|
r27046 | from __future__ import absolute_import | ||
import os | ||||
import re | ||||
import time | ||||
from ..i18n import _ | ||||
from .common import ( | ||||
ErrorResponse, | ||||
HTTP_NOT_FOUND, | ||||
HTTP_OK, | ||||
HTTP_SERVER_ERROR, | ||||
Gregory Szorc
|
r30766 | cspvalues, | ||
Yuya Nishihara
|
r27046 | get_contact, | ||
get_mtime, | ||||
ismember, | ||||
paritygen, | ||||
staticfile, | ||||
) | ||||
from .request import wsgirequest | ||||
from .. import ( | ||||
Boris Feld
|
r34241 | configitems, | ||
Yuya Nishihara
|
r27046 | encoding, | ||
error, | ||||
hg, | ||||
Gregory Szorc
|
r29787 | profiling, | ||
Yuya Nishihara
|
r34354 | pycompat, | ||
Yuya Nishihara
|
r27046 | scmutil, | ||
templater, | ||||
ui as uimod, | ||||
util, | ||||
) | ||||
from . import ( | ||||
hgweb_mod, | ||||
webutil, | ||||
wsgicgi, | ||||
) | ||||
Eric Hopper
|
r2356 | |||
Dirkjan Ochtman
|
r8215 | def cleannames(items): | ||
return [(util.pconvert(name).strip('/'), path) for name, path in items] | ||||
Eric Hopper
|
r2356 | |||
Jeremy Whitlock
|
r8529 | def findrepos(paths): | ||
Dirkjan Ochtman
|
r9723 | repos = [] | ||
Jeremy Whitlock
|
r8529 | for prefix, root in cleannames(paths): | ||
roothead, roottail = os.path.split(root) | ||||
Mads Kiilerich
|
r17104 | # "foo = /bar/*" or "foo = /bar/**" lets every repo /bar/N in or below | ||
# /bar/ be served as as foo/N . | ||||
# '*' will not search inside dirs with .hg (except .hg/patches), | ||||
# '**' will search inside dirs with .hg (and thus also find subrepos). | ||||
Jeremy Whitlock
|
r8529 | try: | ||
recurse = {'*': False, '**': True}[roottail] | ||||
except KeyError: | ||||
Dirkjan Ochtman
|
r9723 | repos.append((prefix, root)) | ||
Jeremy Whitlock
|
r8529 | continue | ||
Mads Kiilerich
|
r11677 | roothead = os.path.normpath(os.path.abspath(roothead)) | ||
Adrian Buehlmann
|
r13975 | paths = scmutil.walkrepos(roothead, followsym=True, recurse=recurse) | ||
Mads Kiilerich
|
r13402 | repos.extend(urlrepos(prefix, roothead, paths)) | ||
Dirkjan Ochtman
|
r9723 | return repos | ||
Jeremy Whitlock
|
r8529 | |||
Mads Kiilerich
|
r13402 | def urlrepos(prefix, roothead, paths): | ||
"""yield url paths and filesystem paths from a list of repo paths | ||||
Patrick Mezard
|
r13538 | >>> conv = lambda seq: [(v, util.pconvert(p)) for v,p in seq] | ||
Yuya Nishihara
|
r34133 | >>> conv(urlrepos(b'hg', b'/opt', [b'/opt/r', b'/opt/r/r', b'/opt'])) | ||
Mads Kiilerich
|
r13403 | [('hg/r', '/opt/r'), ('hg/r/r', '/opt/r/r'), ('hg', '/opt')] | ||
Yuya Nishihara
|
r34133 | >>> conv(urlrepos(b'', b'/opt', [b'/opt/r', b'/opt/r/r', b'/opt'])) | ||
Mads Kiilerich
|
r13402 | [('r', '/opt/r'), ('r/r', '/opt/r/r'), ('', '/opt')] | ||
""" | ||||
for path in paths: | ||||
path = os.path.normpath(path) | ||||
Mads Kiilerich
|
r13403 | yield (prefix + '/' + | ||
util.pconvert(path[len(roothead):]).lstrip('/')).strip('/'), path | ||||
Mads Kiilerich
|
r13402 | |||
Matt Mackall
|
r15003 | def geturlcgivars(baseurl, port): | ||
""" | ||||
Extract CGI variables from baseurl | ||||
Yuya Nishihara
|
r34133 | >>> geturlcgivars(b"http://host.org/base", b"80") | ||
Matt Mackall
|
r15003 | ('host.org', '80', '/base') | ||
Yuya Nishihara
|
r34133 | >>> geturlcgivars(b"http://host.org:8000/base", b"80") | ||
Matt Mackall
|
r15003 | ('host.org', '8000', '/base') | ||
Yuya Nishihara
|
r34133 | >>> geturlcgivars(b'/base', 8000) | ||
Matt Mackall
|
r15003 | ('', '8000', '/base') | ||
Yuya Nishihara
|
r34133 | >>> geturlcgivars(b"base", b'8000') | ||
Matt Mackall
|
r15003 | ('', '8000', '/base') | ||
Yuya Nishihara
|
r34133 | >>> geturlcgivars(b"http://host", b'8000') | ||
Matt Mackall
|
r15003 | ('host', '8000', '/') | ||
Yuya Nishihara
|
r34133 | >>> geturlcgivars(b"http://host/", b'8000') | ||
Matt Mackall
|
r15003 | ('host', '8000', '/') | ||
""" | ||||
u = util.url(baseurl) | ||||
name = u.host or '' | ||||
if u.port: | ||||
port = u.port | ||||
path = u.path or "" | ||||
if not path.startswith('/'): | ||||
path = '/' + path | ||||
Yuya Nishihara
|
r34354 | return name, pycompat.bytestr(port), path | ||
Matt Mackall
|
r15003 | |||
Eric Hopper
|
r2356 | class hgwebdir(object): | ||
Gregory Szorc
|
r26132 | """HTTP server for multiple repositories. | ||
Given a configuration, different repositories will be served depending | ||||
on the request path. | ||||
Instances are typically used as WSGI applications. | ||||
""" | ||||
Matt Mackall
|
r8191 | def __init__(self, conf, baseui=None): | ||
Bryan O'Sullivan
|
r8371 | self.conf = conf | ||
self.baseui = baseui | ||||
Gregory Szorc
|
r26072 | self.ui = None | ||
Bryan O'Sullivan
|
r8371 | self.lastrefresh = 0 | ||
Thomas Arendsen Hein
|
r9903 | self.motd = None | ||
Bryan O'Sullivan
|
r8371 | self.refresh() | ||
Eric Hopper
|
r2356 | |||
Bryan O'Sullivan
|
r8371 | def refresh(self): | ||
Gregory Szorc
|
r26072 | if self.ui: | ||
Boris Feld
|
r34241 | refreshinterval = self.ui.configint('web', 'refreshinterval') | ||
else: | ||||
item = configitems.coreitems['web']['refreshinterval'] | ||||
refreshinterval = item.default | ||||
Gregory Szorc
|
r26072 | |||
# refreshinterval <= 0 means to always refresh. | ||||
if (refreshinterval > 0 and | ||||
self.lastrefresh + refreshinterval > time.time()): | ||||
Bryan O'Sullivan
|
r8371 | return | ||
if self.baseui: | ||||
Matt Mackall
|
r11239 | u = self.baseui.copy() | ||
Eric Hopper
|
r2356 | else: | ||
Yuya Nishihara
|
r30559 | u = uimod.ui.load() | ||
Mads Kiilerich
|
r20790 | u.setconfig('ui', 'report_untrusted', 'off', 'hgwebdir') | ||
u.setconfig('ui', 'nontty', 'true', 'hgwebdir') | ||||
Pierre-Yves David
|
r25488 | # displaying bundling progress bar while serving feels wrong and may | ||
# break some wsgi implementations. | ||||
u.setconfig('progress', 'disable', 'true', 'hgweb') | ||||
Matt Mackall
|
r8136 | |||
Jeremy Whitlock
|
r8529 | if not isinstance(self.conf, (dict, list, tuple)): | ||
map = {'paths': 'hgweb-paths'} | ||||
Matt Mackall
|
r13214 | if not os.path.exists(self.conf): | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('config file %s not found!') % self.conf) | ||
Matt Mackall
|
r11239 | u.readconfig(self.conf, remap=map, trust=True) | ||
timeless
|
r13667 | paths = [] | ||
for name, ignored in u.configitems('hgweb-paths'): | ||||
for path in u.configlist('hgweb-paths', name): | ||||
paths.append((name, path)) | ||||
Jeremy Whitlock
|
r8529 | elif isinstance(self.conf, (list, tuple)): | ||
paths = self.conf | ||||
elif isinstance(self.conf, dict): | ||||
paths = self.conf.items() | ||||
Alexander Solovyov
|
r8345 | |||
Matt Mackall
|
r11239 | repos = findrepos(paths) | ||
for prefix, root in u.configitems('collections'): | ||||
prefix = util.pconvert(prefix) | ||||
Adrian Buehlmann
|
r13975 | for path in scmutil.walkrepos(root, followsym=True): | ||
Matt Mackall
|
r11239 | repo = os.path.normpath(path) | ||
name = util.pconvert(repo) | ||||
if name.startswith(prefix): | ||||
name = name[len(prefix):] | ||||
repos.append((name.lstrip('/'), repo)) | ||||
self.repos = repos | ||||
self.ui = u | ||||
Boris Feld
|
r34236 | encoding.encoding = self.ui.config('web', 'encoding') | ||
Boris Feld
|
r34243 | self.style = self.ui.config('web', 'style') | ||
Boris Feld
|
r34245 | self.templatepath = self.ui.config('web', 'templates', untrusted=False) | ||
Boris Feld
|
r34242 | self.stripecount = self.ui.config('web', 'stripes') | ||
Dirkjan Ochtman
|
r8621 | if self.stripecount: | ||
self.stripecount = int(self.stripecount) | ||||
self._baseurl = self.ui.config('web', 'baseurl') | ||||
Boris Feld
|
r34240 | prefix = self.ui.config('web', 'prefix') | ||
Angel Ezquerra
|
r18515 | if prefix.startswith('/'): | ||
prefix = prefix[1:] | ||||
if prefix.endswith('/'): | ||||
prefix = prefix[:-1] | ||||
self.prefix = prefix | ||||
Bryan O'Sullivan
|
r8371 | self.lastrefresh = time.time() | ||
Eric Hopper
|
r2356 | |||
Eric Hopper
|
r2535 | def run(self): | ||
Pulkit Goyal
|
r30636 | if not encoding.environ.get('GATEWAY_INTERFACE', | ||
'').startswith("CGI/1."): | ||||
Martin Geisler
|
r8663 | raise RuntimeError("This function is only intended to be " | ||
"called while running as a CGI script.") | ||||
Dirkjan Ochtman
|
r5566 | wsgicgi.launch(self) | ||
def __call__(self, env, respond): | ||||
req = wsgirequest(env, respond) | ||||
Dirkjan Ochtman
|
r6797 | return self.run_wsgi(req) | ||
Eric Hopper
|
r2535 | |||
Mark Edgington
|
r7336 | def read_allowed(self, ui, req): | ||
"""Check allow_read and deny_read config options of a repo's ui object | ||||
to determine user permissions. By default, with neither option set (or | ||||
both empty), allow all users to read the repo. There are two ways a | ||||
user can be denied read access: (1) deny_read is not empty, and the | ||||
user is unauthenticated or deny_read contains user (or *), and (2) | ||||
allow_read is not empty and the user is not in allow_read. Return True | ||||
if user is allowed to read the repo, else return False.""" | ||||
user = req.env.get('REMOTE_USER') | ||||
Dirkjan Ochtman
|
r7575 | deny_read = ui.configlist('web', 'deny_read', untrusted=True) | ||
Wagner Bruna
|
r19032 | if deny_read and (not user or ismember(ui, user, deny_read)): | ||
Mark Edgington
|
r7336 | return False | ||
Dirkjan Ochtman
|
r7575 | allow_read = ui.configlist('web', 'allow_read', untrusted=True) | ||
Mark Edgington
|
r7336 | # by default, allow reading if no allow_read option has been set | ||
Wagner Bruna
|
r19032 | if (not allow_read) or ismember(ui, user, allow_read): | ||
Mark Edgington
|
r7336 | return True | ||
return False | ||||
Eric Hopper
|
r2535 | def run_wsgi(self, req): | ||
r32788 | profile = self.ui.configbool('profiling', 'enabled') | |||
with profiling.profile(self.ui, enabled=profile): | ||||
Gregory Szorc
|
r29787 | for r in self._runwsgi(req): | ||
yield r | ||||
Gregory Szorc
|
r29786 | |||
def _runwsgi(self, req): | ||||
Dirkjan Ochtman
|
r5601 | try: | ||
Matt Mackall
|
r25083 | self.refresh() | ||
Dirkjan Ochtman
|
r5603 | |||
Gregory Szorc
|
r30766 | csp, nonce = cspvalues(self.ui) | ||
if csp: | ||||
req.headers.append(('Content-Security-Policy', csp)) | ||||
Matt Mackall
|
r25083 | virtual = req.env.get("PATH_INFO", "").strip('/') | ||
Gregory Szorc
|
r30766 | tmpl = self.templater(req, nonce) | ||
Matt Mackall
|
r25083 | ctype = tmpl('mimetype', encoding=encoding.encoding) | ||
ctype = templater.stringify(ctype) | ||||
Thomas Arendsen Hein
|
r5760 | |||
Matt Mackall
|
r25083 | # a static file | ||
if virtual.startswith('static/') or 'static' in req.form: | ||||
if virtual.startswith('static/'): | ||||
fname = virtual[7:] | ||||
else: | ||||
fname = req.form['static'][0] | ||||
static = self.ui.config("web", "static", None, | ||||
untrusted=False) | ||||
if not static: | ||||
tp = self.templatepath or templater.templatepaths() | ||||
if isinstance(tp, str): | ||||
tp = [tp] | ||||
static = [os.path.join(p, 'static') for p in tp] | ||||
staticfile(static, fname, req) | ||||
return [] | ||||
Dirkjan Ochtman
|
r5603 | |||
Matt Mackall
|
r25083 | # top-level index | ||
Matt Harbison
|
r31482 | |||
repos = dict(self.repos) | ||||
Matt Harbison
|
r32004 | if (not virtual or virtual == 'index') and virtual not in repos: | ||
Matt Mackall
|
r25083 | req.respond(HTTP_OK, ctype) | ||
return self.makeindex(req, tmpl) | ||||
Dirkjan Ochtman
|
r5601 | |||
Matt Mackall
|
r25083 | # nested indexes and hgwebs | ||
Thomas Arendsen Hein
|
r6210 | |||
Matt Harbison
|
r31482 | if virtual.endswith('/index') and virtual not in repos: | ||
subdir = virtual[:-len('index')] | ||||
if any(r.startswith(subdir) for r in repos): | ||||
req.respond(HTTP_OK, ctype) | ||||
return self.makeindex(req, tmpl, subdir) | ||||
Matt Harbison
|
r32004 | def _virtualdirs(): | ||
# Check the full virtual path, each parent, and the root ('') | ||||
if virtual != '': | ||||
yield virtual | ||||
for p in util.finddirs(virtual): | ||||
yield p | ||||
yield '' | ||||
for virtualrepo in _virtualdirs(): | ||||
Matt Mackall
|
r25083 | real = repos.get(virtualrepo) | ||
if real: | ||||
req.env['REPO_NAME'] = virtualrepo | ||||
try: | ||||
# ensure caller gets private copy of ui | ||||
repo = hg.repository(self.ui.copy(), real) | ||||
Yuya Nishihara
|
r27043 | return hgweb_mod.hgweb(repo).run_wsgi(req) | ||
Gregory Szorc
|
r25660 | except IOError as inst: | ||
Augie Fackler
|
r34024 | msg = encoding.strtolocal(inst.strerror) | ||
Matt Mackall
|
r25083 | raise ErrorResponse(HTTP_SERVER_ERROR, msg) | ||
Gregory Szorc
|
r25660 | except error.RepoError as inst: | ||
Yuya Nishihara
|
r34354 | raise ErrorResponse(HTTP_SERVER_ERROR, bytes(inst)) | ||
Dirkjan Ochtman
|
r5601 | |||
Matt Mackall
|
r25083 | # browse subdirectories | ||
subdir = virtual + '/' | ||||
if [r for r in repos if r.startswith(subdir)]: | ||||
req.respond(HTTP_OK, ctype) | ||||
return self.makeindex(req, tmpl, subdir) | ||||
Dirkjan Ochtman
|
r5603 | |||
Matt Mackall
|
r25083 | # prefixes not found | ||
req.respond(HTTP_NOT_FOUND, ctype) | ||||
return tmpl("notfound", repo=virtual) | ||||
Thomas Arendsen Hein
|
r5760 | |||
Gregory Szorc
|
r25660 | except ErrorResponse as err: | ||
Matt Mackall
|
r25083 | req.respond(err, ctype) | ||
return tmpl('error', error=err.message or '') | ||||
Dirkjan Ochtman
|
r5601 | finally: | ||
tmpl = None | ||||
def makeindex(self, req, tmpl, subdir=""): | ||||
Eric Hopper
|
r2356 | def archivelist(ui, nodeid, url): | ||
Alexis S. L. Carvalho
|
r3556 | allowed = ui.configlist("web", "allow_archive", untrusted=True) | ||
Wagner Bruna
|
r13436 | archives = [] | ||
r30749 | for typ, spec in hgweb_mod.archivespecs.iteritems(): | |||
if typ in allowed or ui.configbool("web", "allow" + typ, | ||||
Alexis S. L. Carvalho
|
r3556 | untrusted=True): | ||
Alex Gaynor
|
r34487 | archives.append({"type": typ, "extension": spec[2], | ||
Wagner Bruna
|
r13436 | "node": nodeid, "url": url}) | ||
return archives | ||||
Eric Hopper
|
r2356 | |||
Benoit Boissinot
|
r10600 | def rawentries(subdir="", **map): | ||
Dirkjan Ochtman
|
r9363 | |||
Boris Feld
|
r34234 | descend = self.ui.configbool('web', 'descend') | ||
Boris Feld
|
r34231 | collapse = self.ui.configbool('web', 'collapse') | ||
Paul Boddie
|
r16239 | seenrepos = set() | ||
seendirs = set() | ||||
Eric Hopper
|
r2356 | for name, path in self.repos: | ||
Dirkjan Ochtman
|
r9363 | |||
Brendan Cully
|
r4841 | if not name.startswith(subdir): | ||
continue | ||||
Brendan Cully
|
r4843 | name = name[len(subdir):] | ||
Paul Boddie
|
r16239 | directory = False | ||
if '/' in name: | ||||
if not descend: | ||||
continue | ||||
nameparts = name.split('/') | ||||
rootname = nameparts[0] | ||||
if not collapse: | ||||
pass | ||||
elif rootname in seendirs: | ||||
continue | ||||
elif rootname in seenrepos: | ||||
pass | ||||
else: | ||||
directory = True | ||||
name = rootname | ||||
# redefine the path to refer to the directory | ||||
discarded = '/'.join(nameparts[1:]) | ||||
# remove name parts plus accompanying slash | ||||
path = path[:-len(discarded) - 1] | ||||
Matt Harbison
|
r25426 | try: | ||
r = hg.repository(self.ui, path) | ||||
directory = False | ||||
except (IOError, error.RepoError): | ||||
pass | ||||
Paul Boddie
|
r16239 | parts = [name] | ||
Matt Harbison
|
r31482 | parts.insert(0, '/' + subdir.rstrip('/')) | ||
Paul Boddie
|
r16239 | if req.env['SCRIPT_NAME']: | ||
parts.insert(0, req.env['SCRIPT_NAME']) | ||||
url = re.sub(r'/+', '/', '/'.join(parts) + '/') | ||||
# show either a directory entry or a repository | ||||
if directory: | ||||
# get the directory's time information | ||||
try: | ||||
d = (get_mtime(path), util.makedate()[1]) | ||||
except OSError: | ||||
continue | ||||
Angel Ezquerra
|
r17838 | # add '/' to the name to make it obvious that | ||
# the entry is a directory, not a regular repository | ||||
Augie Fackler
|
r20677 | row = {'contact': "", | ||
'contact_sort': "", | ||||
'name': name + '/', | ||||
'name_sort': name, | ||||
'url': url, | ||||
'description': "", | ||||
'description_sort': "", | ||||
'lastchange': d, | ||||
'lastchange_sort': d[1]-d[0], | ||||
'archives': [], | ||||
Gregory Szorc
|
r29471 | 'isdirectory': True, | ||
'labels': [], | ||||
} | ||||
Paul Boddie
|
r16239 | |||
seendirs.add(name) | ||||
yield row | ||||
Dirkjan Ochtman
|
r9363 | continue | ||
Brendan Cully
|
r4841 | |||
Matt Mackall
|
r8191 | u = self.ui.copy() | ||
Eric Hopper
|
r2356 | try: | ||
u.readconfig(os.path.join(path, '.hg', 'hgrc')) | ||||
Gregory Szorc
|
r25660 | except Exception as e: | ||
Martin Geisler
|
r6913 | u.warn(_('error reading %s/.hg/hgrc: %s\n') % (path, e)) | ||
Alexis S. L. Carvalho
|
r5332 | continue | ||
David Demelier
|
r33328 | def get(section, name, default=uimod._unset): | ||
Alexis S. L. Carvalho
|
r3556 | return u.config(section, name, default, untrusted=True) | ||
Eric Hopper
|
r2356 | |||
Markus F.X.J. Oberhumer
|
r4709 | if u.configbool("web", "hidden", untrusted=True): | ||
continue | ||||
Mark Edgington
|
r7336 | if not self.read_allowed(u, req): | ||
continue | ||||
Eric Hopper
|
r2356 | # update time with local timezone | ||
try: | ||||
Brendan Cully
|
r10078 | r = hg.repository(self.ui, path) | ||
timeless@gmail.com
|
r13796 | except IOError: | ||
u.warn(_('error accessing repository at %s\n') % path) | ||||
continue | ||||
Yuya Nishihara
|
r12038 | except error.RepoError: | ||
u.warn(_('error accessing repository at %s\n') % path) | ||||
continue | ||||
try: | ||||
Brendan Cully
|
r10078 | d = (get_mtime(r.spath), util.makedate()[1]) | ||
Eric Hopper
|
r2356 | except OSError: | ||
continue | ||||
Thomas Arendsen Hein
|
r5779 | contact = get_contact(get) | ||
Boris Feld
|
r34235 | description = get("web", "description") | ||
Matt Harbison
|
r25396 | seenrepos.add(name) | ||
Eric Hopper
|
r2356 | name = get("web", "name", name) | ||
Augie Fackler
|
r20677 | row = {'contact': contact or "unknown", | ||
'contact_sort': contact.upper() or "unknown", | ||||
'name': name, | ||||
'name_sort': name, | ||||
'url': url, | ||||
'description': description or "unknown", | ||||
'description_sort': description.upper() or "unknown", | ||||
'lastchange': d, | ||||
'lastchange_sort': d[1]-d[0], | ||||
'archives': archivelist(u, "tip", url), | ||||
'isdirectory': None, | ||||
Gregory Szorc
|
r29471 | 'labels': u.configlist('web', 'labels', untrusted=True), | ||
Augie Fackler
|
r20677 | } | ||
Paul Boddie
|
r16239 | |||
Benoit Boissinot
|
r10600 | yield row | ||
sortdefault = None, False | ||||
def entries(sortcolumn="", descending=False, subdir="", **map): | ||||
rows = rawentries(subdir=subdir, **map) | ||||
if sortcolumn and sortdefault != (sortcolumn, descending): | ||||
sortkey = '%s_sort' % sortcolumn | ||||
rows = sorted(rows, key=lambda x: x[sortkey], | ||||
reverse=descending) | ||||
for row, parity in zip(rows, paritygen(self.stripecount)): | ||||
row['parity'] = parity | ||||
yield row | ||||
Eric Hopper
|
r2356 | |||
Bryan O'Sullivan
|
r8371 | self.refresh() | ||
Dirkjan Ochtman
|
r5601 | sortable = ["name", "description", "contact", "lastchange"] | ||
Dirkjan Ochtman
|
r8346 | sortcolumn, descending = sortdefault | ||
Christian Ebert
|
r5915 | if 'sort' in req.form: | ||
Dirkjan Ochtman
|
r5601 | sortcolumn = req.form['sort'][0] | ||
descending = sortcolumn.startswith('-') | ||||
if descending: | ||||
sortcolumn = sortcolumn[1:] | ||||
if sortcolumn not in sortable: | ||||
sortcolumn = "" | ||||
Brendan Cully
|
r4841 | |||
Dirkjan Ochtman
|
r5601 | sort = [("sort_%s" % column, | ||
"%s%s" % ((not descending and column == sortcolumn) | ||||
and "-" or "", column)) | ||||
for column in sortable] | ||||
Dirkjan Ochtman
|
r5928 | |||
Bryan O'Sullivan
|
r8371 | self.refresh() | ||
Yuya Nishihara
|
r10673 | self.updatereqenv(req.env) | ||
Brendan Cully
|
r6221 | |||
Dirkjan Ochtman
|
r5965 | return tmpl("index", entries=entries, subdir=subdir, | ||
Yuya Nishihara
|
r27043 | pathdef=hgweb_mod.makebreadcrumb('/' + subdir, self.prefix), | ||
Dirkjan Ochtman
|
r5965 | sortcolumn=sortcolumn, descending=descending, | ||
**dict(sort)) | ||||
Dirkjan Ochtman
|
r5602 | |||
Gregory Szorc
|
r30766 | def templater(self, req, nonce): | ||
Dirkjan Ochtman
|
r5602 | |||
def motd(**map): | ||||
if self.motd is not None: | ||||
yield self.motd | ||||
else: | ||||
Boris Feld
|
r34588 | yield config('web', 'motd') | ||
Dirkjan Ochtman
|
r5602 | |||
Boris Feld
|
r34223 | def config(section, name, default=uimod._unset, untrusted=True): | ||
Matt Mackall
|
r8191 | return self.ui.config(section, name, default, untrusted) | ||
Dirkjan Ochtman
|
r5602 | |||
Yuya Nishihara
|
r10673 | self.updatereqenv(req.env) | ||
Brendan Cully
|
r6221 | |||
Dirkjan Ochtman
|
r5602 | url = req.env.get('SCRIPT_NAME', '') | ||
if not url.endswith('/'): | ||||
url += '/' | ||||
Dirkjan Ochtman
|
r8216 | vars = {} | ||
Augie Fackler
|
r34516 | styles, (style, mapfile) = hgweb_mod.getstyle(req, config, | ||
self.templatepath) | ||||
Dirkjan Ochtman
|
r9842 | if style == styles[0]: | ||
vars['style'] = style | ||||
Matt Mackall
|
r10282 | |||
Augie Fackler
|
r34704 | start = r'&' if url[-1] == r'?' else r'?' | ||
Dirkjan Ochtman
|
r8216 | sessionvars = webutil.sessionvars(vars, start) | ||
Boris Feld
|
r34613 | logourl = config('web', 'logourl') | ||
Boris Feld
|
r34612 | logoimg = config('web', 'logoimg') | ||
Dirkjan Ochtman
|
r5602 | staticurl = config('web', 'staticurl') or url + 'static/' | ||
if not staticurl.endswith('/'): | ||||
staticurl += '/' | ||||
Yuya Nishihara
|
r28954 | defaults = { | ||
"encoding": encoding.encoding, | ||||
"motd": motd, | ||||
"url": url, | ||||
"logourl": logourl, | ||||
"logoimg": logoimg, | ||||
"staticurl": staticurl, | ||||
"sessionvars": sessionvars, | ||||
"style": style, | ||||
Gregory Szorc
|
r30766 | "nonce": nonce, | ||
Yuya Nishihara
|
r28954 | } | ||
tmpl = templater.templater.frommapfile(mapfile, defaults=defaults) | ||||
Dirkjan Ochtman
|
r5602 | return tmpl | ||
Yuya Nishihara
|
r10673 | |||
def updatereqenv(self, env): | ||||
if self._baseurl is not None: | ||||
Matt Mackall
|
r15003 | name, port, path = geturlcgivars(self._baseurl, env['SERVER_PORT']) | ||
env['SERVER_NAME'] = name | ||||
env['SERVER_PORT'] = port | ||||
wujek
|
r15001 | env['SCRIPT_NAME'] = path | ||