##// END OF EJS Templates
hgweb: use a tuple-list instead of dictionary for append-only store
Dirkjan Ochtman -
r9723:a235644a default
parent child Browse files
Show More
@@ -1,338 +1,338 b''
1 1 # hgweb/hgwebdir_mod.py - Web interface for a directory of repositories.
2 2 #
3 3 # Copyright 21 May 2005 - (c) 2005 Jake Edge <jake@edge2.net>
4 4 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
5 5 #
6 6 # This software may be used and distributed according to the terms of the
7 7 # GNU General Public License version 2, incorporated herein by reference.
8 8
9 9 import os, re, time
10 10 from mercurial.i18n import _
11 11 from mercurial import ui, hg, util, templater
12 12 from mercurial import error, encoding
13 13 from common import ErrorResponse, get_mtime, staticfile, paritygen,\
14 14 get_contact, HTTP_OK, HTTP_NOT_FOUND, HTTP_SERVER_ERROR
15 15 from hgweb_mod import hgweb
16 16 from request import wsgirequest
17 17 import webutil
18 18
19 19 def cleannames(items):
20 20 return [(util.pconvert(name).strip('/'), path) for name, path in items]
21 21
22 22 def findrepos(paths):
23 repos = {}
23 repos = []
24 24 for prefix, root in cleannames(paths):
25 25 roothead, roottail = os.path.split(root)
26 26 # "foo = /bar/*" makes every subrepo of /bar/ to be
27 27 # mounted as foo/subrepo
28 28 # and "foo = /bar/**" also recurses into the subdirectories,
29 29 # remember to use it without working dir.
30 30 try:
31 31 recurse = {'*': False, '**': True}[roottail]
32 32 except KeyError:
33 repos[prefix] = root
33 repos.append((prefix, root))
34 34 continue
35 35 roothead = os.path.normpath(roothead)
36 36 for path in util.walkrepos(roothead, followsym=True, recurse=recurse):
37 37 path = os.path.normpath(path)
38 38 name = util.pconvert(path[len(roothead):]).strip('/')
39 39 if prefix:
40 40 name = prefix + '/' + name
41 repos[name] = path
42 return repos.items()
41 repos.append((name, path))
42 return repos
43 43
44 44 class hgwebdir(object):
45 45 refreshinterval = 20
46 46
47 47 def __init__(self, conf, baseui=None):
48 48 self.conf = conf
49 49 self.baseui = baseui
50 50 self.lastrefresh = 0
51 51 self.refresh()
52 52
53 53 def refresh(self):
54 54 if self.lastrefresh + self.refreshinterval > time.time():
55 55 return
56 56
57 57 if self.baseui:
58 58 self.ui = self.baseui.copy()
59 59 else:
60 60 self.ui = ui.ui()
61 61 self.ui.setconfig('ui', 'report_untrusted', 'off')
62 62 self.ui.setconfig('ui', 'interactive', 'off')
63 63
64 64 if not isinstance(self.conf, (dict, list, tuple)):
65 65 map = {'paths': 'hgweb-paths'}
66 66 self.ui.readconfig(self.conf, remap=map, trust=True)
67 67 paths = self.ui.configitems('hgweb-paths')
68 68 elif isinstance(self.conf, (list, tuple)):
69 69 paths = self.conf
70 70 elif isinstance(self.conf, dict):
71 71 paths = self.conf.items()
72 72
73 73 encoding.encoding = self.ui.config('web', 'encoding',
74 74 encoding.encoding)
75 75 self.motd = self.ui.config('web', 'motd')
76 76 self.style = self.ui.config('web', 'style', 'paper')
77 77 self.stripecount = self.ui.config('web', 'stripes', 1)
78 78 if self.stripecount:
79 79 self.stripecount = int(self.stripecount)
80 80 self._baseurl = self.ui.config('web', 'baseurl')
81 81
82 82 self.repos = findrepos(paths)
83 83 for prefix, root in self.ui.configitems('collections'):
84 84 prefix = util.pconvert(prefix)
85 85 for path in util.walkrepos(root, followsym=True):
86 86 repo = os.path.normpath(path)
87 87 name = util.pconvert(repo)
88 88 if name.startswith(prefix):
89 89 name = name[len(prefix):]
90 90 self.repos.append((name.lstrip('/'), repo))
91 91
92 92 self.repos.sort()
93 93 self.lastrefresh = time.time()
94 94
95 95 def run(self):
96 96 if not os.environ.get('GATEWAY_INTERFACE', '').startswith("CGI/1."):
97 97 raise RuntimeError("This function is only intended to be "
98 98 "called while running as a CGI script.")
99 99 import mercurial.hgweb.wsgicgi as wsgicgi
100 100 wsgicgi.launch(self)
101 101
102 102 def __call__(self, env, respond):
103 103 req = wsgirequest(env, respond)
104 104 return self.run_wsgi(req)
105 105
106 106 def read_allowed(self, ui, req):
107 107 """Check allow_read and deny_read config options of a repo's ui object
108 108 to determine user permissions. By default, with neither option set (or
109 109 both empty), allow all users to read the repo. There are two ways a
110 110 user can be denied read access: (1) deny_read is not empty, and the
111 111 user is unauthenticated or deny_read contains user (or *), and (2)
112 112 allow_read is not empty and the user is not in allow_read. Return True
113 113 if user is allowed to read the repo, else return False."""
114 114
115 115 user = req.env.get('REMOTE_USER')
116 116
117 117 deny_read = ui.configlist('web', 'deny_read', untrusted=True)
118 118 if deny_read and (not user or deny_read == ['*'] or user in deny_read):
119 119 return False
120 120
121 121 allow_read = ui.configlist('web', 'allow_read', untrusted=True)
122 122 # by default, allow reading if no allow_read option has been set
123 123 if (not allow_read) or (allow_read == ['*']) or (user in allow_read):
124 124 return True
125 125
126 126 return False
127 127
128 128 def run_wsgi(self, req):
129 129 try:
130 130 try:
131 131 self.refresh()
132 132
133 133 virtual = req.env.get("PATH_INFO", "").strip('/')
134 134 tmpl = self.templater(req)
135 135 ctype = tmpl('mimetype', encoding=encoding.encoding)
136 136 ctype = templater.stringify(ctype)
137 137
138 138 # a static file
139 139 if virtual.startswith('static/') or 'static' in req.form:
140 140 if virtual.startswith('static/'):
141 141 fname = virtual[7:]
142 142 else:
143 143 fname = req.form['static'][0]
144 144 static = templater.templatepath('static')
145 145 return (staticfile(static, fname, req),)
146 146
147 147 # top-level index
148 148 elif not virtual:
149 149 req.respond(HTTP_OK, ctype)
150 150 return self.makeindex(req, tmpl)
151 151
152 152 # nested indexes and hgwebs
153 153
154 154 repos = dict(self.repos)
155 155 while virtual:
156 156 real = repos.get(virtual)
157 157 if real:
158 158 req.env['REPO_NAME'] = virtual
159 159 try:
160 160 repo = hg.repository(self.ui, real)
161 161 return hgweb(repo).run_wsgi(req)
162 162 except IOError, inst:
163 163 msg = inst.strerror
164 164 raise ErrorResponse(HTTP_SERVER_ERROR, msg)
165 165 except error.RepoError, inst:
166 166 raise ErrorResponse(HTTP_SERVER_ERROR, str(inst))
167 167
168 168 # browse subdirectories
169 169 subdir = virtual + '/'
170 170 if [r for r in repos if r.startswith(subdir)]:
171 171 req.respond(HTTP_OK, ctype)
172 172 return self.makeindex(req, tmpl, subdir)
173 173
174 174 up = virtual.rfind('/')
175 175 if up < 0:
176 176 break
177 177 virtual = virtual[:up]
178 178
179 179 # prefixes not found
180 180 req.respond(HTTP_NOT_FOUND, ctype)
181 181 return tmpl("notfound", repo=virtual)
182 182
183 183 except ErrorResponse, err:
184 184 req.respond(err, ctype)
185 185 return tmpl('error', error=err.message or '')
186 186 finally:
187 187 tmpl = None
188 188
189 189 def makeindex(self, req, tmpl, subdir=""):
190 190
191 191 def archivelist(ui, nodeid, url):
192 192 allowed = ui.configlist("web", "allow_archive", untrusted=True)
193 193 for i in [('zip', '.zip'), ('gz', '.tar.gz'), ('bz2', '.tar.bz2')]:
194 194 if i[0] in allowed or ui.configbool("web", "allow" + i[0],
195 195 untrusted=True):
196 196 yield {"type" : i[0], "extension": i[1],
197 197 "node": nodeid, "url": url}
198 198
199 199 sortdefault = 'name', False
200 200 def entries(sortcolumn="", descending=False, subdir="", **map):
201 201
202 202 rows = []
203 203 parity = paritygen(self.stripecount)
204 204 descend = self.ui.configbool('web', 'descend', True)
205 205 for name, path in self.repos:
206 206
207 207 if not name.startswith(subdir):
208 208 continue
209 209 name = name[len(subdir):]
210 210 if not descend and '/' in name:
211 211 continue
212 212
213 213 u = self.ui.copy()
214 214 try:
215 215 u.readconfig(os.path.join(path, '.hg', 'hgrc'))
216 216 except Exception, e:
217 217 u.warn(_('error reading %s/.hg/hgrc: %s\n') % (path, e))
218 218 continue
219 219 def get(section, name, default=None):
220 220 return u.config(section, name, default, untrusted=True)
221 221
222 222 if u.configbool("web", "hidden", untrusted=True):
223 223 continue
224 224
225 225 if not self.read_allowed(u, req):
226 226 continue
227 227
228 228 parts = [name]
229 229 if 'PATH_INFO' in req.env:
230 230 parts.insert(0, req.env['PATH_INFO'].rstrip('/'))
231 231 if req.env['SCRIPT_NAME']:
232 232 parts.insert(0, req.env['SCRIPT_NAME'])
233 233 m = re.match('((?:https?://)?)(.*)', '/'.join(parts))
234 234 # squish repeated slashes out of the path component
235 235 url = m.group(1) + re.sub('/+', '/', m.group(2)) + '/'
236 236
237 237 # update time with local timezone
238 238 try:
239 239 d = (get_mtime(path), util.makedate()[1])
240 240 except OSError:
241 241 continue
242 242
243 243 contact = get_contact(get)
244 244 description = get("web", "description", "")
245 245 name = get("web", "name", name)
246 246 row = dict(contact=contact or "unknown",
247 247 contact_sort=contact.upper() or "unknown",
248 248 name=name,
249 249 name_sort=name,
250 250 url=url,
251 251 description=description or "unknown",
252 252 description_sort=description.upper() or "unknown",
253 253 lastchange=d,
254 254 lastchange_sort=d[1]-d[0],
255 255 archives=archivelist(u, "tip", url))
256 256 if (not sortcolumn or (sortcolumn, descending) == sortdefault):
257 257 # fast path for unsorted output
258 258 row['parity'] = parity.next()
259 259 yield row
260 260 else:
261 261 rows.append((row["%s_sort" % sortcolumn], row))
262 262 if rows:
263 263 rows.sort()
264 264 if descending:
265 265 rows.reverse()
266 266 for key, row in rows:
267 267 row['parity'] = parity.next()
268 268 yield row
269 269
270 270 self.refresh()
271 271 sortable = ["name", "description", "contact", "lastchange"]
272 272 sortcolumn, descending = sortdefault
273 273 if 'sort' in req.form:
274 274 sortcolumn = req.form['sort'][0]
275 275 descending = sortcolumn.startswith('-')
276 276 if descending:
277 277 sortcolumn = sortcolumn[1:]
278 278 if sortcolumn not in sortable:
279 279 sortcolumn = ""
280 280
281 281 sort = [("sort_%s" % column,
282 282 "%s%s" % ((not descending and column == sortcolumn)
283 283 and "-" or "", column))
284 284 for column in sortable]
285 285
286 286 self.refresh()
287 287 if self._baseurl is not None:
288 288 req.env['SCRIPT_NAME'] = self._baseurl
289 289
290 290 return tmpl("index", entries=entries, subdir=subdir,
291 291 sortcolumn=sortcolumn, descending=descending,
292 292 **dict(sort))
293 293
294 294 def templater(self, req):
295 295
296 296 def header(**map):
297 297 yield tmpl('header', encoding=encoding.encoding, **map)
298 298
299 299 def footer(**map):
300 300 yield tmpl("footer", **map)
301 301
302 302 def motd(**map):
303 303 if self.motd is not None:
304 304 yield self.motd
305 305 else:
306 306 yield config('web', 'motd', '')
307 307
308 308 def config(section, name, default=None, untrusted=True):
309 309 return self.ui.config(section, name, default, untrusted)
310 310
311 311 if self._baseurl is not None:
312 312 req.env['SCRIPT_NAME'] = self._baseurl
313 313
314 314 url = req.env.get('SCRIPT_NAME', '')
315 315 if not url.endswith('/'):
316 316 url += '/'
317 317
318 318 vars = {}
319 319 style = self.style
320 320 if 'style' in req.form:
321 321 vars['style'] = style = req.form['style'][0]
322 322 start = url[-1] == '?' and '&' or '?'
323 323 sessionvars = webutil.sessionvars(vars, start)
324 324
325 325 staticurl = config('web', 'staticurl') or url + 'static/'
326 326 if not staticurl.endswith('/'):
327 327 staticurl += '/'
328 328
329 329 style = 'style' in req.form and req.form['style'][0] or self.style
330 330 mapfile = templater.stylemap(style)
331 331 tmpl = templater.templater(mapfile,
332 332 defaults={"header": header,
333 333 "footer": footer,
334 334 "motd": motd,
335 335 "url": url,
336 336 "staticurl": staticurl,
337 337 "sessionvars": sessionvars})
338 338 return tmpl
General Comments 0
You need to be logged in to leave comments. Login now