1
# Copyright (C) 2008, 2009 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
"""Serve branches at urls that mimic a transport's file system layout."""
21
from bzrlib import branch, errors, lru_cache, urlutils
22
from bzrlib.config import LocationConfig
23
from bzrlib.transport import get_transport
24
from bzrlib.transport.http import wsgi
26
from paste.request import path_info_pop
27
from paste import httpexceptions
28
from paste import urlparser
30
from loggerhead.apps.branch import BranchWSGIApp
31
from loggerhead.apps import favicon_app, static_app
32
from loggerhead.controllers.directory_ui import DirectoryUI
35
'yes': True, 'no': False,
36
'on': True, 'off': False,
37
'1': True, '0': False,
38
'true': True, 'false': False,
41
class BranchesFromTransportServer(object):
43
def __init__(self, transport, root, name=None):
44
self.transport = transport
47
self._config = root._config
49
def app_for_branch(self, branch):
51
name = branch._get_nick(local=True)
56
branch_app = BranchWSGIApp(
58
{'cachepath': self._config.SQL_DIR},
59
self.root.graph_cache, is_root=is_root,
60
use_cdn=self._config.get_option('use_cdn'))
63
def app_for_non_branch(self, environ):
64
segment = path_info_pop(environ)
66
raise httpexceptions.HTTPMovedPermanently(
67
environ['SCRIPT_NAME'] + '/')
74
environ['loggerhead.static.url'], self.transport, name)
76
new_transport = self.transport.clone(segment)
78
new_name = urlutils.join(self.name, segment)
80
new_name = '/' + segment
81
return BranchesFromTransportServer(new_transport, self.root, new_name)
83
def app_for_bazaar_data(self, relpath):
84
if relpath == '/.bzr/smart':
85
wsgi_app = wsgi.SmartWSGIApp(self.transport)
86
return wsgi.RelpathSetter(wsgi_app, '', 'PATH_INFO')
88
# TODO: Use something here that uses the transport API
89
# rather than relying on the local filesystem API.
90
base = self.transport.base
91
readonly_prefix = 'readonly+'
92
if base.startswith(readonly_prefix):
93
base = base[len(readonly_prefix):]
95
path = urlutils.local_path_from_url(base)
96
except errors.InvalidURL, e:
97
raise httpexceptions.HTTPNotFound()
99
return urlparser.make_static(None, path)
101
def check_serveable(self, config):
102
value = config.get_user_option('http_serve')
105
elif not _bools.get(value.lower(), True):
106
raise httpexceptions.HTTPNotFound()
108
def __call__(self, environ, start_response):
109
path = environ['PATH_INFO']
111
b = branch.Branch.open_from_transport(self.transport)
112
except errors.NotBranchError:
113
if path.startswith('/.bzr'):
114
self.check_serveable(LocationConfig(self.transport.base))
115
return self.app_for_bazaar_data(path)(environ, start_response)
116
if not self.transport.listable() or not self.transport.has('.'):
117
raise httpexceptions.HTTPNotFound()
118
return self.app_for_non_branch(environ)(environ, start_response)
120
self.check_serveable(b.get_config())
121
if path.startswith('/.bzr'):
122
return self.app_for_bazaar_data(path)(environ, start_response)
124
return self.app_for_branch(b)(environ, start_response)
127
_transport_store = threading.local()
129
def get_transport_for_thread(base):
131
thread_transports = getattr(_transport_store, 'transports', None)
132
if thread_transports is None:
133
thread_transports = _transport_store.transports = {}
134
if base in thread_transports:
135
return thread_transports[base]
136
transport = get_transport(base)
140
class BranchesFromTransportRoot(object):
142
def __init__(self, base, config):
143
self.graph_cache = lru_cache.LRUCache(10)
145
self._config = config
147
def __call__(self, environ, start_response):
148
environ['loggerhead.static.url'] = environ['SCRIPT_NAME']
149
if environ['PATH_INFO'].startswith('/static/'):
150
segment = path_info_pop(environ)
151
assert segment == 'static'
152
return static_app(environ, start_response)
153
elif environ['PATH_INFO'] == '/favicon.ico':
154
return favicon_app(environ, start_response)
156
transport = get_transport_for_thread(self.base)
157
return BranchesFromTransportServer(
158
transport, self)(environ, start_response)
161
class UserBranchesFromTransportRoot(object):
163
def __init__(self, base, config):
164
self.graph_cache = lru_cache.LRUCache(10)
166
self._config = config
167
self.trunk_dir = config.get_option('trunk_dir')
169
def __call__(self, environ, start_response):
170
environ['loggerhead.static.url'] = environ['SCRIPT_NAME']
171
path_info = environ['PATH_INFO']
172
if path_info.startswith('/static/'):
173
segment = path_info_pop(environ)
174
assert segment == 'static'
175
return static_app(environ, start_response)
176
elif path_info == '/favicon.ico':
177
return favicon_app(environ, start_response)
179
transport = get_transport_for_thread(self.base)
180
# segments starting with ~ are user branches
181
if path_info.startswith('/~'):
182
segment = path_info_pop(environ)
183
new_transport = transport.clone(segment[1:])
184
return BranchesFromTransportServer(
185
transport.clone(segment[1:]), self, segment)(
186
environ, start_response)
188
return BranchesFromTransportServer(
189
transport.clone(self.trunk_dir), self)(
190
environ, start_response)