~ubuntu-branches/ubuntu/lucid/loggerhead/lucid-security

« back to all changes in this revision

Viewing changes to loggerhead/apps/filesystem.py

  • Committer: Bazaar Package Importer
  • Author(s): James Westby, Roland Mas, Jelmer Vernooij, James Westby
  • Date: 2009-08-26 13:18:03 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090826131803-0ce1fhaetci8b0c5
Tags: 1.17-0ubuntu1
[ Roland Mas ]
* Use the YUI library provided by libjs-yui. (Closes: #511286)

[ Jelmer Vernooij ]
* Use my debian.org address in Uploaders field.
* Add ${misc:Depends} to please lintian.
* Suggest recent version of paste, which doesn't expose internal port
  numbers in links. (Closes: #507000)
* Bump standards version to 3.8.1.

[ James Westby ]
* New upstream release.
* Drop get-orig-source rule in favour of debian/watch.
* Add python-pkg-resources and python-paste to Build-Depends,
  python-pkg-resources to Depends and python-simplejson to
  Recommends due to dependency changes.

Show diffs side-by-side

added added

removed removed

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