~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/apps/filesystem.py

  • Committer: Michael Hudson
  • Date: 2009-03-16 06:23:00 UTC
  • Revision ID: michael.hudson@canonical.com-20090316062300-xzqamcrbksg4url4
fix minor visual issue caused by IE compatibility work

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import cgi
 
1
"""Serve branches at urls that mimic the file system layout."""
 
2
 
2
3
import os
3
4
import tempfile
4
5
 
5
 
from bzrlib import branch, errors
 
6
from bzrlib import branch, errors, lru_cache
6
7
 
7
8
from paste.request import path_info_pop
8
 
from paste.wsgiwrappers import WSGIRequest, WSGIResponse
9
9
from paste import httpexceptions
 
10
from paste import urlparser
10
11
 
11
12
from loggerhead.apps.branch import BranchWSGIApp
12
13
from loggerhead.apps import favicon_app, static_app
13
 
 
14
 
 
15
 
sql_dir = tempfile.mkdtemp()
 
14
from loggerhead.controllers.directory_ui import DirectoryUI
 
15
 
 
16
sql_dir = tempfile.mkdtemp(prefix='loggerhead-cache-')
 
17
 
16
18
 
17
19
class BranchesFromFileSystemServer(object):
18
 
    def __init__(self, folder, root):
19
 
        self.folder = folder
 
20
 
 
21
    def __init__(self, path, root, name=None):
 
22
        self.path = path
20
23
        self.root = root
21
 
 
22
 
    def directory_listing(self, path, environ, start_response):
23
 
        request = WSGIRequest(environ)
24
 
        response = WSGIResponse()
25
 
        listing = [d for d in os.listdir(path) if not d.startswith('.')]
26
 
        response.headers['Content-Type'] = 'text/html'
27
 
        print >> response, '<html><body>'
28
 
        for d in sorted(listing):
29
 
            if os.path.isdir(os.path.join(path, d)):
30
 
                d = cgi.escape(d)
31
 
                print >> response, '<li><a href="%s/">%s</a></li>' % (d, d)
32
 
        print >> response, '</body></html>'
33
 
        return response(environ, start_response)
34
 
 
35
 
    def app_for_branch(self, b, path):
36
 
        if not self.folder:
37
 
            name = os.path.basename(os.path.abspath(path))
38
 
        else:
39
 
            name = self.folder
40
 
        h = BranchWSGIApp(path, name, {'cachepath': sql_dir})
41
 
        self.root.cache[path] = h
42
 
        return h.app
 
24
        self.name = name
 
25
 
 
26
    def app_for_branch(self, branch):
 
27
        if not self.name:
 
28
            name = branch.get_config().get_nickname()
 
29
            is_root = True
 
30
        else:
 
31
            name = self.name
 
32
            is_root = False
 
33
        branch_app = BranchWSGIApp(
 
34
            branch, name, {'cachepath': sql_dir}, self.root.graph_cache,
 
35
            is_root=is_root)
 
36
        return branch_app.app
 
37
 
 
38
    def app_for_non_branch(self, environ):
 
39
        segment = path_info_pop(environ)
 
40
        if segment is None:
 
41
            raise httpexceptions.HTTPMovedPermanently(
 
42
                environ['SCRIPT_NAME'] + '/')
 
43
        elif segment == '':
 
44
            if self.name:
 
45
                name = self.name
 
46
            else:
 
47
                name = '/'
 
48
            return DirectoryUI(environ['loggerhead.static.url'],
 
49
                               self.path,
 
50
                               name)
 
51
        else:
 
52
            new_path = os.path.join(self.path, segment)
 
53
            if self.name:
 
54
                new_name = os.path.join(self.name, segment)
 
55
            else:
 
56
                new_name = '/' + segment
 
57
            return BranchesFromFileSystemServer(new_path, self.root, new_name)
43
58
 
44
59
    def __call__(self, environ, start_response):
45
 
        path = os.path.join(self.root.folder, self.folder)
46
 
        if not os.path.isdir(path):
 
60
        if not os.path.isdir(self.path):
47
61
            raise httpexceptions.HTTPNotFound()
48
 
        cached = self.root.cache.get(path)
49
 
        if cached is not None:
50
 
            return cached.app(environ, start_response)
51
62
        try:
52
 
            b = branch.Branch.open(path)
 
63
            b = branch.Branch.open(self.path)
53
64
        except errors.NotBranchError:
54
 
            segment = path_info_pop(environ)
55
 
            if segment is None:
56
 
                raise httpexceptions.HTTPMovedPermanently(
57
 
                    environ['SCRIPT_NAME'] + '/')
58
 
            elif segment == '':
59
 
                return self.directory_listing(path, environ, start_response)
60
 
            else:
61
 
                relpath = os.path.join(self.folder, segment)
62
 
                return BranchesFromFileSystemServer(relpath, self.root)(
63
 
                    environ, start_response)
 
65
            return self.app_for_non_branch(environ)(environ, start_response)
64
66
        else:
65
 
            return self.app_for_branch(b, path)(environ, start_response)
 
67
            return self.app_for_branch(b)(environ, start_response)
66
68
 
67
69
 
68
70
class BranchesFromFileSystemRoot(object):
 
71
 
69
72
    def __init__(self, folder):
70
 
        self.cache = {}
 
73
        self.graph_cache = lru_cache.LRUCache()
71
74
        self.folder = folder
 
75
 
72
76
    def __call__(self, environ, start_response):
73
77
        environ['loggerhead.static.url'] = environ['SCRIPT_NAME']
74
78
        if environ['PATH_INFO'].startswith('/static/'):
77
81
            return static_app(environ, start_response)
78
82
        elif environ['PATH_INFO'] == '/favicon.ico':
79
83
            return favicon_app(environ, start_response)
 
84
        elif '/.bzr/' in environ['PATH_INFO']:
 
85
            app = urlparser.make_static(None, self.folder)
 
86
            return app(environ, start_response)
80
87
        else:
81
88
            return BranchesFromFileSystemServer(
82
 
                '', self)(environ, start_response)
 
89
                self.folder, self)(environ, start_response)
 
90
 
 
91
 
 
92
class UserBranchesFromFileSystemRoot(object):
 
93
 
 
94
    def __init__(self, folder, trunk_dir):
 
95
        self.graph_cache = lru_cache.LRUCache()
 
96
        self.folder = folder
 
97
        self.trunk_dir = trunk_dir
 
98
 
 
99
    def __call__(self, environ, start_response):
 
100
        environ['loggerhead.static.url'] = environ['SCRIPT_NAME']
 
101
        path_info= environ['PATH_INFO']
 
102
        if path_info.startswith('/static/'):
 
103
            segment = path_info_pop(environ)
 
104
            assert segment == 'static'
 
105
            return static_app(environ, start_response)
 
106
        elif path_info == '/favicon.ico':
 
107
            return favicon_app(environ, start_response)
 
108
        else:
 
109
            # segments starting with ~ are user branches
 
110
            if path_info.startswith('/~'):
 
111
                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)
 
115
            else:
 
116
                new_path = os.path.join(self.folder, self.trunk_dir)
 
117
                return BranchesFromFileSystemServer(
 
118
                    new_path, self)(environ, start_response)