1
1
"""Serve branches at urls that mimic the file system layout."""
7
6
from bzrlib import branch, errors, lru_cache
9
8
from paste.request import path_info_pop
10
from paste.wsgiwrappers import WSGIRequest, WSGIResponse
11
9
from paste import httpexceptions
13
11
from loggerhead.apps.branch import BranchWSGIApp
14
12
from loggerhead.apps import favicon_app, static_app
13
from loggerhead.controllers.directory_ui import DirectoryUI
16
15
sql_dir = tempfile.mkdtemp(prefix='loggerhead-cache-')
19
class DirectoryListing(object):
21
def __init__(self, path):
18
class BranchesFromFileSystemServer(object):
19
def __init__(self, path, root, name=None):
24
def __call__(self, environ, start_response):
25
request = WSGIRequest(environ)
26
response = WSGIResponse()
27
listing = [d for d in os.listdir(self.path) if not d.startswith('.')]
28
response.headers['Content-Type'] = 'text/html'
29
print >> response, '<html><body>'
30
for d in sorted(listing):
31
if os.path.isdir(os.path.join(self.path, d)):
33
print >> response, '<li><a href="%s/">%s</a></li>' % (d, d)
34
print >> response, '</body></html>'
35
return response(environ, start_response)
38
class BranchesFromFileSystemServer(object):
39
def __init__(self, folder, root):
43
24
def app_for_branch(self, branch):
45
name = os.path.basename(os.path.abspath(self.root.folder))
48
31
branch_app = BranchWSGIApp(
49
branch, name, {'cachepath': sql_dir}, self.root.graph_cache)
32
branch, name, {'cachepath': sql_dir}, self.root.graph_cache,
50
34
return branch_app.app
52
36
def app_for_non_branch(self, environ):
55
39
raise httpexceptions.HTTPMovedPermanently(
56
40
environ['SCRIPT_NAME'] + '/')
57
41
elif segment == '':
58
return DirectoryListing(os.path.join(self.root.folder, self.folder))
46
return DirectoryUI(environ['loggerhead.static.url'], self.path, name)
60
relpath = os.path.join(self.folder, segment)
61
return BranchesFromFileSystemServer(relpath, self.root)
48
new_path = os.path.join(self.path, segment)
50
new_name = os.path.join(self.name, segment)
52
new_name = '/' + segment
53
return BranchesFromFileSystemServer(new_path, self.root, new_name)
63
55
def __call__(self, environ, start_response):
64
path = os.path.join(self.root.folder, self.folder)
65
if not os.path.isdir(path):
56
if not os.path.isdir(self.path):
66
57
raise httpexceptions.HTTPNotFound()
68
b = branch.Branch.open(path)
59
b = branch.Branch.open(self.path)
69
60
except errors.NotBranchError:
70
61
return self.app_for_non_branch(environ)(environ, start_response)
88
79
return favicon_app(environ, start_response)
90
81
return BranchesFromFileSystemServer(
91
'', self)(environ, start_response)
82
self.folder, self)(environ, start_response)
85
class UserBranchesFromFileSystemRoot(object):
87
def __init__(self, folder, trunk_dir):
88
self.graph_cache = lru_cache.LRUCache()
90
self.trunk_dir = trunk_dir
92
def __call__(self, environ, start_response):
93
environ['loggerhead.static.url'] = environ['SCRIPT_NAME']
94
path_info= environ['PATH_INFO']
95
if path_info.startswith('/static/'):
96
segment = path_info_pop(environ)
97
assert segment == 'static'
98
return static_app(environ, start_response)
99
elif path_info == '/favicon.ico':
100
return favicon_app(environ, start_response)
102
# segments starting with ~ are user branches
103
if path_info.startswith('/~'):
104
segment = path_info_pop(environ)
105
new_path = os.path.join(self.folder, segment[1:])
106
return BranchesFromFileSystemServer(
107
new_path, self, segment)(environ, start_response)
109
new_path = os.path.join(self.folder, self.trunk_dir)
110
return BranchesFromFileSystemServer(
111
new_path, self)(environ, start_response)