1
"""The WSGI application for serving a Bazaar branch."""
7
import bzrlib.lru_cache
9
from paste import request
10
from paste import httpexceptions
12
from loggerhead.apps import static_app
13
from loggerhead.controllers.changelog_ui import ChangeLogUI
14
from loggerhead.controllers.inventory_ui import InventoryUI
15
from loggerhead.controllers.annotate_ui import AnnotateUI
16
from loggerhead.controllers.revision_ui import RevisionUI
17
from loggerhead.controllers.atom_ui import AtomUI
18
from loggerhead.controllers.download_ui import DownloadUI
19
from loggerhead.controllers.search_ui import SearchUI
20
from loggerhead.controllers.diff_ui import DiffUI
21
from loggerhead.history import History
22
from loggerhead import util
25
class BranchWSGIApp(object):
27
def __init__(self, branch, friendly_name=None, config={},
28
graph_cache=None, branch_link=None):
31
self.friendly_name = friendly_name
32
self.branch_link = branch_link # Currently only used in Launchpad
33
self.log = logging.getLogger('loggerhead.%s' % (friendly_name,))
34
if graph_cache is None:
35
graph_cache = bzrlib.lru_cache.LRUCache()
36
self.graph_cache = graph_cache
38
def get_history(self):
39
_history = History(self.branch, self.graph_cache)
40
cache_path = self._config.get('cachepath', None)
41
if cache_path is not None:
42
# Only import the cache if we're going to use it.
43
# This makes sqlite optional
45
from loggerhead.changecache import FileChangeCache
47
self.log.debug("Couldn't load python-sqlite,"
48
" continuing without using a cache")
50
_history.use_file_cache(
51
FileChangeCache(_history, cache_path))
54
def url(self, *args, **kw):
55
if isinstance(args[0], list):
58
for k, v in kw.iteritems():
60
qs.append('%s=%s'%(k, urllib.quote(v)))
62
return request.construct_url(
63
self._environ, script_name=self._url_base,
64
path_info='/'.join(args),
67
def context_url(self, *args, **kw):
68
kw = util.get_context(**kw)
69
return self.url(*args, **kw)
71
def static_url(self, path):
72
return self._static_url_base + path
75
'annotate': AnnotateUI,
76
'changes': ChangeLogUI,
78
'revision': RevisionUI,
79
'download': DownloadUI,
85
def last_updated(self):
86
h = self.get_history()
87
change = h.get_changes([ h.last_revid ])[0]
91
return self.branch.get_config().get_user_option('public_branch')
93
def app(self, environ, start_response):
94
self._url_base = environ['SCRIPT_NAME']
95
self._static_url_base = environ.get('loggerhead.static.url')
96
if self._static_url_base is None:
97
self._static_url_base = self._url_base
98
self._environ = environ
99
path = request.path_info_pop(environ)
101
raise httpexceptions.HTTPMovedPermanently(
102
self._url_base + '/changes')
104
return static_app(environ, start_response)
105
cls = self.controllers_dict.get(path)
107
raise httpexceptions.HTTPNotFound()
108
self.branch.lock_read()
110
c = cls(self, self.get_history())
111
return c(environ, start_response)