1
"""Serve branches at urls that mimic the file system layout."""
6
from bzrlib import branch, errors, lru_cache
1
"""Serve branches at urls that mimic a transport's file system layout."""
3
from bzrlib import branch, errors, lru_cache, urlutils
8
5
from paste.request import path_info_pop
9
6
from paste import httpexceptions
12
9
from loggerhead.apps.branch import BranchWSGIApp
13
10
from loggerhead.apps import favicon_app, static_app
11
from loggerhead.config import LoggerheadConfig
14
12
from loggerhead.controllers.directory_ui import DirectoryUI
16
sql_dir = tempfile.mkdtemp(prefix='loggerhead-cache-')
19
class BranchesFromFileSystemServer(object):
21
def __init__(self, path, root, name=None):
15
class BranchesFromTransportServer(object):
17
def __init__(self, transport, root, name=None):
18
self.transport = transport
21
self._config = root._config
26
23
def app_for_branch(self, branch):
28
name = branch.get_config().get_nickname()
25
name = branch._get_nick(local=True)
33
30
branch_app = BranchWSGIApp(
34
branch, name, {'cachepath': sql_dir}, self.root.graph_cache,
32
{'cachepath': self._config.SQL_DIR},
33
self.root.graph_cache, is_root=is_root,
34
use_cdn=self._config.get_option('use_cdn'))
36
35
return branch_app.app
38
37
def app_for_non_branch(self, environ):
48
47
return DirectoryUI(environ['loggerhead.static.url'],
52
new_path = os.path.join(self.path, segment)
51
new_transport = self.transport.clone(segment)
54
new_name = os.path.join(self.name, segment)
53
new_name = urlutils.join(self.name, segment)
56
55
new_name = '/' + segment
57
return BranchesFromFileSystemServer(new_path, self.root, new_name)
56
return BranchesFromTransportServer(new_transport, self.root, new_name)
59
58
def __call__(self, environ, start_response):
60
if not os.path.isdir(self.path):
61
raise httpexceptions.HTTPNotFound()
63
b = branch.Branch.open(self.path)
60
b = branch.Branch.open_from_transport(self.transport)
64
61
except errors.NotBranchError:
62
if not self.transport.listable() or not self.transport.has('.'):
63
raise httpexceptions.HTTPNotFound()
65
64
return self.app_for_non_branch(environ)(environ, start_response)
67
66
return self.app_for_branch(b)(environ, start_response)
70
class BranchesFromFileSystemRoot(object):
69
class BranchesFromTransportRoot(object):
72
def __init__(self, folder):
73
self.graph_cache = lru_cache.LRUCache()
71
def __init__(self, transport, config):
72
self.graph_cache = lru_cache.LRUCache(10)
73
self.transport = transport
76
76
def __call__(self, environ, start_response):
77
77
environ['loggerhead.static.url'] = environ['SCRIPT_NAME']
82
82
elif environ['PATH_INFO'] == '/favicon.ico':
83
83
return favicon_app(environ, start_response)
84
84
elif '/.bzr/' in environ['PATH_INFO']:
85
app = urlparser.make_static(None, self.folder)
86
return app(environ, start_response)
85
# TODO: Use something here that uses the transport API
86
# rather than relying on the local filesystem API.
88
path = urlutils.local_path_from_url(self.transport.base)
89
except errors.InvalidURL:
90
raise httpexceptions.HTTPNotFound()
92
app = urlparser.make_static(None, path)
93
return app(environ, start_response)
88
return BranchesFromFileSystemServer(
89
self.folder, self)(environ, start_response)
92
class UserBranchesFromFileSystemRoot(object):
94
def __init__(self, folder, trunk_dir):
95
self.graph_cache = lru_cache.LRUCache()
97
self.trunk_dir = trunk_dir
95
return BranchesFromTransportServer(
96
self.transport, self)(environ, start_response)
99
class UserBranchesFromTransportRoot(object):
101
def __init__(self, transport, config):
102
self.graph_cache = lru_cache.LRUCache(10)
103
self.transport = transport
104
self._config = config
105
self.trunk_dir = config.get_option('trunk_dir')
99
107
def __call__(self, environ, start_response):
100
108
environ['loggerhead.static.url'] = environ['SCRIPT_NAME']
101
path_info= environ['PATH_INFO']
109
path_info = environ['PATH_INFO']
102
110
if path_info.startswith('/static/'):
103
111
segment = path_info_pop(environ)
104
112
assert segment == 'static'
109
117
# segments starting with ~ are user branches
110
118
if path_info.startswith('/~'):
111
119
segment = path_info_pop(environ)
112
new_path = os.path.join(self.folder, segment[1:])
113
return BranchesFromFileSystemServer(
114
new_path, self, segment)(environ, start_response)
120
new_transport = self.transport.clone(segment[1:])
121
return BranchesFromTransportServer(
122
new_transport, self, segment)(environ, start_response)
116
new_path = os.path.join(self.folder, self.trunk_dir)
117
return BranchesFromFileSystemServer(
118
new_path, self)(environ, start_response)
124
new_transport = self.transport.clone(self.trunk_dir)
125
return BranchesFromTransportServer(
126
new_transport, self)(environ, start_response)