1
# Copyright (C) 2008-2011 Canonical Ltd.
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
"""The WSGI application for serving a Bazaar branch."""
25
import bzrlib.lru_cache
27
from paste import request
28
from paste import httpexceptions
30
from loggerhead.apps import static_app
31
from loggerhead.controllers.annotate_ui import AnnotateUI
32
from loggerhead.controllers.view_ui import ViewUI
33
from loggerhead.controllers.atom_ui import AtomUI
34
from loggerhead.controllers.changelog_ui import ChangeLogUI
35
from loggerhead.controllers.diff_ui import DiffUI
36
from loggerhead.controllers.download_ui import DownloadUI
37
from loggerhead.controllers.filediff_ui import FileDiffUI
38
from loggerhead.controllers.inventory_ui import InventoryUI
39
from loggerhead.controllers.revision_ui import RevisionUI
40
from loggerhead.controllers.revlog_ui import RevLogUI
41
from loggerhead.controllers.search_ui import SearchUI
42
from loggerhead.history import History
43
from loggerhead import util
48
class BranchWSGIApp(object):
50
def __init__(self, branch, friendly_name=None, config={},
51
graph_cache=None, branch_link=None, is_root=False,
52
served_url=_DEFAULT, use_cdn=False):
55
self.friendly_name = friendly_name
56
self.branch_link = branch_link # Currently only used in Launchpad
57
self.log = logging.getLogger('loggerhead.%s' % (friendly_name,))
58
if graph_cache is None:
59
graph_cache = bzrlib.lru_cache.LRUCache(10)
60
self.graph_cache = graph_cache
61
self.is_root = is_root
62
self.served_url = served_url
63
self.use_cdn = use_cdn
65
def get_history(self):
67
revinfo_disk_cache = None
68
cache_path = self._config.get('cachepath', None)
69
if cache_path is not None:
70
# Only import the cache if we're going to use it.
71
# This makes sqlite optional
73
from loggerhead.changecache import (
74
FileChangeCache, RevInfoDiskCache)
76
self.log.debug("Couldn't load python-sqlite,"
77
" continuing without using a cache")
79
file_cache = FileChangeCache(cache_path)
80
revinfo_disk_cache = RevInfoDiskCache(cache_path)
82
self.branch, self.graph_cache, file_cache=file_cache,
83
revinfo_disk_cache=revinfo_disk_cache, cache_key=self.friendly_name)
85
def url(self, *args, **kw):
86
if isinstance(args[0], list):
89
for k, v in kw.iteritems():
91
qs.append('%s=%s' % (k, urllib.quote(v)))
93
path_info = urllib.quote(
94
unicode('/'.join(args)).encode('utf-8'), safe='/~:')
97
return self._url_base + path_info
99
def absolute_url(self, *args, **kw):
100
rel_url = self.url(*args, **kw)
101
return request.resolve_relative_url(rel_url, self._environ)
103
def context_url(self, *args, **kw):
104
kw = util.get_context(**kw)
105
return self.url(*args, **kw)
107
def static_url(self, path):
108
return self._static_url_base + path
110
def yui_url(self, path):
112
base = 'http://yui.yahooapis.com/3.0.0pr2/build/'
114
base = self.static_url('/static/javascript/yui/build/')
118
'+filediff': FileDiffUI,
120
'annotate': AnnotateUI,
122
'changes': ChangeLogUI,
124
'download': DownloadUI,
125
'files': InventoryUI,
126
'revision': RevisionUI,
131
def last_updated(self):
132
h = self.get_history()
133
change = h.get_changes([h.last_revid])[0]
136
def public_branch_url(self):
137
return self.branch.get_config().get_user_option('public_branch')
139
def lookup_app(self, environ):
140
# Check again if the branch is blocked from being served, this is
141
# mostly for tests. It's already checked in apps/transport.py
142
if self.branch.get_config().get_user_option('http_serve') == 'False':
143
raise httpexceptions.HTTPNotFound()
144
self._url_base = environ['SCRIPT_NAME']
145
self._static_url_base = environ.get('loggerhead.static.url')
146
if self._static_url_base is None:
147
self._static_url_base = self._url_base
148
self._environ = environ
149
if self.served_url is _DEFAULT:
150
public_branch = self.public_branch_url()
151
if public_branch is not None:
152
self.served_url = public_branch
154
# Loggerhead only supports serving .bzr/ on local branches, so
155
# we shouldn't suggest something that won't work.
157
util.local_path_from_url(self.branch.base)
158
self.served_url = self.url([])
159
except bzrlib.errors.InvalidURL:
160
self.served_url = None
161
path = request.path_info_pop(environ)
163
raise httpexceptions.HTTPMovedPermanently(
164
self.absolute_url('/changes'))
167
elif path == '+json':
168
environ['loggerhead.as_json'] = True
169
path = request.path_info_pop(environ)
170
cls = self.controllers_dict.get(path)
172
raise httpexceptions.HTTPNotFound()
173
return cls(self, self.get_history)
175
def app(self, environ, start_response):
176
self.branch.lock_read()
179
c = self.lookup_app(environ)
180
return c(environ, start_response)
182
environ['exc_info'] = sys.exc_info()
183
environ['branch'] = self