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
"""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.smart import request
24
from bzrlib.transport import get_transport
25
from bzrlib.transport.http import wsgi
1
"""Serve branches at urls that mimic the file system layout."""
6
from bzrlib import branch, errors, lru_cache
27
8
from paste.request import path_info_pop
28
9
from paste import httpexceptions
29
from paste import urlparser
31
from loggerhead import util
32
11
from loggerhead.apps.branch import BranchWSGIApp
33
from loggerhead.apps import favicon_app, robots_app, static_app
12
from loggerhead.apps import favicon_app, static_app
34
13
from loggerhead.controllers.directory_ui import DirectoryUI
36
# TODO: Use bzrlib.ui.bool_from_string(), added in bzr 1.18
38
'yes': True, 'no': False,
39
'on': True, 'off': False,
40
'1': True, '0': False,
41
'true': True, 'false': False,
44
class BranchesFromTransportServer(object):
46
def __init__(self, transport, root, name=None):
47
self.transport = transport
15
sql_dir = tempfile.mkdtemp(prefix='loggerhead-cache-')
18
class BranchesFromFileSystemServer(object):
19
def __init__(self, path, root, name=None):
50
self._config = root._config
52
24
def app_for_branch(self, branch):
54
name = branch._get_nick(local=True)
59
29
branch_app = BranchWSGIApp(
62
{'cachepath': self._config.SQL_DIR},
63
self.root.graph_cache,
65
use_cdn=self._config.get_option('use_cdn'),
30
branch, name, {'cachepath': sql_dir}, self.root.graph_cache)
67
31
return branch_app.app
69
33
def app_for_non_branch(self, environ):
70
34
segment = path_info_pop(environ)
71
35
if segment is None:
72
raise httpexceptions.HTTPMovedPermanently.relative_redirect(
73
environ['SCRIPT_NAME'] + '/', environ)
36
raise httpexceptions.HTTPMovedPermanently(
37
environ['SCRIPT_NAME'] + '/')
74
38
elif segment == '':
80
environ['loggerhead.static.url'], self.transport, name)
43
return DirectoryUI(environ['loggerhead.static.url'], self.path, name)
82
new_transport = self.transport.clone(segment)
45
new_path = os.path.join(self.path, segment)
84
new_name = urlutils.join(self.name, segment)
47
new_name = os.path.join(self.name, segment)
86
49
new_name = '/' + segment
87
return BranchesFromTransportServer(new_transport, self.root, new_name)
89
def app_for_bazaar_data(self, relpath):
90
if relpath == '/.bzr/smart':
91
root_transport = get_transport_for_thread(self.root.base)
92
wsgi_app = wsgi.SmartWSGIApp(root_transport)
93
return wsgi.RelpathSetter(wsgi_app, '', 'loggerhead.path_info')
95
# TODO: Use something here that uses the transport API
96
# rather than relying on the local filesystem API.
97
base = self.transport.base
99
path = util.local_path_from_url(base)
100
except errors.InvalidURL:
101
raise httpexceptions.HTTPNotFound()
103
return urlparser.make_static(None, path)
105
def check_serveable(self, config):
106
value = config.get_user_option('http_serve')
109
elif not _bools.get(value.lower(), True):
50
return BranchesFromFileSystemServer(new_path, self.root, new_name)
52
def __call__(self, environ, start_response):
53
if not os.path.isdir(self.path):
110
54
raise httpexceptions.HTTPNotFound()
112
def __call__(self, environ, start_response):
113
path = environ['PATH_INFO']
115
b = branch.Branch.open_from_transport(self.transport)
56
b = branch.Branch.open(self.path)
116
57
except errors.NotBranchError:
117
if path.startswith('/.bzr'):
118
self.check_serveable(LocationConfig(self.transport.base))
119
return self.app_for_bazaar_data(path)(environ, start_response)
120
if not self.transport.listable() or not self.transport.has('.'):
121
raise httpexceptions.HTTPNotFound()
122
58
return self.app_for_non_branch(environ)(environ, start_response)
124
self.check_serveable(b.get_config())
125
if path.startswith('/.bzr'):
126
return self.app_for_bazaar_data(path)(environ, start_response)
128
return self.app_for_branch(b)(environ, start_response)
131
_transport_store = threading.local()
133
def get_transport_for_thread(base):
134
thread_transports = getattr(_transport_store, 'transports', None)
135
if thread_transports is None:
136
thread_transports = _transport_store.transports = {}
137
if base in thread_transports:
138
return thread_transports[base]
139
transport = get_transport(base)
140
thread_transports[base] = transport
144
class BranchesFromTransportRoot(object):
146
def __init__(self, base, config):
147
self.graph_cache = lru_cache.LRUCache(10)
149
self._config = config
60
return self.app_for_branch(b)(environ, start_response)
63
class BranchesFromFileSystemRoot(object):
65
def __init__(self, folder):
66
self.graph_cache = lru_cache.LRUCache()
151
69
def __call__(self, environ, start_response):
152
70
environ['loggerhead.static.url'] = environ['SCRIPT_NAME']
153
environ['loggerhead.path_info'] = environ['PATH_INFO']
154
71
if environ['PATH_INFO'].startswith('/static/'):
155
72
segment = path_info_pop(environ)
156
73
assert segment == 'static'
157
74
return static_app(environ, start_response)
158
75
elif environ['PATH_INFO'] == '/favicon.ico':
159
76
return favicon_app(environ, start_response)
160
elif environ['PATH_INFO'] == '/robots.txt':
161
return robots_app(environ, start_response)
163
transport = get_transport_for_thread(self.base)
164
return BranchesFromTransportServer(
165
transport, self)(environ, start_response)
168
class UserBranchesFromTransportRoot(object):
170
def __init__(self, base, config):
171
self.graph_cache = lru_cache.LRUCache(10)
173
self._config = config
174
self.trunk_dir = config.get_option('trunk_dir')
78
return BranchesFromFileSystemServer(
79
self.folder, self)(environ, start_response)
82
class UserBranchesFromFileSystemRoot(object):
84
def __init__(self, folder, trunk_dir):
85
self.graph_cache = lru_cache.LRUCache()
87
self.trunk_dir = trunk_dir
176
89
def __call__(self, environ, start_response):
177
90
environ['loggerhead.static.url'] = environ['SCRIPT_NAME']
178
environ['loggerhead.path_info'] = environ['PATH_INFO']
179
path_info = environ['PATH_INFO']
91
path_info= environ['PATH_INFO']
180
92
if path_info.startswith('/static/'):
181
93
segment = path_info_pop(environ)
182
94
assert segment == 'static'
183
95
return static_app(environ, start_response)
184
96
elif path_info == '/favicon.ico':
185
97
return favicon_app(environ, start_response)
186
elif environ['PATH_INFO'] == '/robots.txt':
187
return robots_app(environ, start_response)
189
transport = get_transport_for_thread(self.base)
190
99
# segments starting with ~ are user branches
191
100
if path_info.startswith('/~'):
192
101
segment = path_info_pop(environ)
193
return BranchesFromTransportServer(
194
transport.clone(segment[1:]), self, segment)(
195
environ, start_response)
102
new_path = os.path.join(self.folder, segment[1:])
103
return BranchesFromFileSystemServer(
104
new_path, self, segment)(environ, start_response)
197
return BranchesFromTransportServer(
198
transport.clone(self.trunk_dir), self)(
199
environ, start_response)
106
new_path = os.path.join(self.folder, self.trunk_dir)
107
return BranchesFromFileSystemServer(
108
new_path, self)(environ, start_response)