/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/transport/http/wsgi.py

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-09 21:36:27 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210109213627-h1xwcutzy9m7a99b
Added 'Case Preserving Working Tree Use Cases' from Canonical Wiki

* Addod a page from the Canonical Bazaar wiki
  with information on the scmeatics of case
  perserving filesystems an a case insensitive
  filesystem works.
  
  * Needs re-work, but this will do as it is the
    same inforamoton as what was on the linked
    page in the currint documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
    http://www.python.org/dev/peps/pep-0333/
21
21
"""
22
22
 
23
 
from cStringIO import StringIO
 
23
from io import BytesIO
24
24
 
25
 
from bzrlib.smart import protocol, medium
26
 
from bzrlib.transport import chroot, get_transport
27
 
from bzrlib.urlutils import local_path_to_url
 
25
from ...bzr.smart import medium
 
26
from ...transport import chroot, get_transport
 
27
from ...urlutils import local_path_to_url
28
28
 
29
29
 
30
30
def make_app(root, prefix, path_var='REQUEST_URI', readonly=True,
31
 
    load_plugins=True, enable_logging=True):
 
31
             load_plugins=True, enable_logging=True):
32
32
    """Convenience function to construct a WSGI bzr smart server.
33
33
 
34
34
    :param root: a local path that requests will be relative to.
41
41
    else:
42
42
        base_transport = get_transport(local_url)
43
43
    if load_plugins:
44
 
        from bzrlib.plugin import load_plugins
 
44
        from ...plugin import load_plugins
45
45
        load_plugins()
46
46
    if enable_logging:
47
 
        import bzrlib.trace
48
 
        bzrlib.trace.enable_default_logging()
 
47
        import breezy.trace
 
48
        breezy.trace.enable_default_logging()
49
49
    app = SmartWSGIApp(base_transport, prefix)
50
50
    app = RelpathSetter(app, '', path_var)
51
51
    return app
52
52
 
53
53
 
54
54
class RelpathSetter(object):
55
 
    """WSGI middleware to set 'bzrlib.relpath' in the environ.
 
55
    """WSGI middleware to set 'breezy.relpath' in the environ.
56
56
 
57
57
    Different servers can invoke a SmartWSGIApp in different ways.  This
58
58
    middleware allows an adminstrator to configure how to the SmartWSGIApp will
63
63
    a typical Apache and mod_fastcgi configuration will set `REQUEST_URI` to
64
64
    "/some/prefix/repo/branch/.bzr/smart".  A RelpathSetter with
65
65
    prefix="/some/prefix/" and path_var="REQUEST_URI" will set that request's
66
 
    'bzrlib.relpath' variable to "repo/branch".
 
66
    'breezy.relpath' variable to "repo/branch".
67
67
    """
68
68
 
69
69
    def __init__(self, app, prefix='', path_var='REQUEST_URI'):
71
71
 
72
72
        :param app: WSGI app to wrap, e.g. a SmartWSGIApp instance.
73
73
        :param path_var: the variable in the WSGI environ to calculate the
74
 
            'bzrlib.relpath' variable from.
 
74
            'breezy.relpath' variable from.
75
75
        :param prefix: a prefix to strip from the variable specified in
76
 
            path_var before setting 'bzrlib.relpath'.
 
76
            path_var before setting 'breezy.relpath'.
77
77
        """
78
78
        self.app = app
79
79
        self.prefix = prefix
85
85
        if not (path.startswith(self.prefix) and path.endswith(suffix)):
86
86
            start_response('404 Not Found', [])
87
87
            return []
88
 
        environ['bzrlib.relpath'] = path[len(self.prefix):-len(suffix)]
 
88
        environ['breezy.relpath'] = path[len(self.prefix):-len(suffix)]
89
89
        return self.app(environ, start_response)
90
90
 
91
91
 
101
101
            backing_transport.  This is used to interpret relpaths received from
102
102
            the client.
103
103
        """
104
 
        # Use a ChrootTransportDecorator so that this web application won't
 
104
        # Use a ChrootServer so that this web application won't
105
105
        # accidentally let people access locations they shouldn't.
106
106
        # e.g. consider a smart server request for "get /etc/passwd" or
107
107
        # something.
112
112
        # While the chroot server can technically be torn down at this point,
113
113
        # as all it does is remove the scheme registration from transport's
114
114
        # protocol dictionary, we don't *just in case* there are parts of
115
 
        # bzrlib that will invoke 'get_transport' on urls rather than cloning
 
115
        # breezy that will invoke 'get_transport' on urls rather than cloning
116
116
        # around the existing transport.
117
 
        #self.chroot_server.stop_server()
 
117
        # self.chroot_server.stop_server()
118
118
 
119
119
    def __call__(self, environ, start_response):
120
120
        """WSGI application callable."""
122
122
            start_response('405 Method not allowed', [('Allow', 'POST')])
123
123
            return []
124
124
 
125
 
        relpath = environ['bzrlib.relpath']
 
125
        relpath = environ['breezy.relpath']
126
126
 
127
127
        if not relpath.startswith('/'):
128
128
            relpath = '/' + relpath
137
137
            # Remove the root_client_path from the relpath, and set
138
138
            # adjusted_tcp to None to tell the request handler that no further
139
139
            # path translation is required.
140
 
            adjusted_rcp = None
 
140
            adjusted_rcp = '.'
141
141
            adjusted_relpath = relpath[len(self.root_client_path):]
142
142
        elif self.root_client_path.startswith(relpath):
143
143
            # The relpath traverses some of the mandatory root client path.
155
155
            raise AssertionError(adjusted_relpath)
156
156
 
157
157
        transport = self.backing_transport.clone(adjusted_relpath)
158
 
        out_buffer = StringIO()
 
158
        out_buffer = BytesIO()
159
159
        request_data_length = int(environ['CONTENT_LENGTH'])
160
160
        request_data_bytes = environ['wsgi.input'].read(request_data_length)
161
161
        smart_protocol_request = self.make_request(
162
 
            transport, out_buffer.write, request_data_bytes, adjusted_rcp)
 
162
            transport, out_buffer.write, request_data_bytes,
 
163
            adjusted_rcp)
163
164
        if smart_protocol_request.next_read_size() != 0:
164
165
            # The request appears to be incomplete, or perhaps it's just a
165
166
            # newer version we don't understand.  Regardless, all we can do
166
167
            # is return an error response in the format of our version of the
167
168
            # protocol.
168
 
            response_data = 'error\x01incomplete request\n'
 
169
            response_data = b'error\x01incomplete request\n'
169
170
        else:
170
171
            response_data = out_buffer.getvalue()
171
172
        headers = [('Content-type', 'application/octet-stream')]