Merge "domain_remap: be more careful about client-path mangling"
This commit is contained in:
commit
caa32ac70d
@ -78,7 +78,7 @@ class DomainRemapMiddleware(object):
|
||||
if not s.startswith('.')]
|
||||
self.storage_domain += [s for s in list_from_csv(storage_domain)
|
||||
if s.startswith('.')]
|
||||
self.path_root = '/' + conf.get('path_root', 'v1').strip('/')
|
||||
self.path_root = conf.get('path_root', 'v1').strip('/') + '/'
|
||||
prefixes = conf.get('reseller_prefixes', 'AUTH')
|
||||
self.reseller_prefixes = list_from_csv(prefixes)
|
||||
self.reseller_prefixes_lower = [x.lower()
|
||||
@ -129,14 +129,13 @@ class DomainRemapMiddleware(object):
|
||||
# account prefix is not in config list. bail.
|
||||
return self.app(env, start_response)
|
||||
|
||||
requested_path = path = env['PATH_INFO']
|
||||
new_path_parts = [self.path_root, account]
|
||||
requested_path = env['PATH_INFO']
|
||||
path = requested_path[1:]
|
||||
new_path_parts = ['', self.path_root[:-1], account]
|
||||
if container:
|
||||
new_path_parts.append(container)
|
||||
if path.startswith(self.path_root):
|
||||
if (path + '/').startswith(self.path_root):
|
||||
path = path[len(self.path_root):]
|
||||
if path.startswith('/'):
|
||||
path = path[1:]
|
||||
new_path_parts.append(path)
|
||||
new_path = '/'.join(new_path_parts)
|
||||
env['PATH_INFO'] = new_path
|
||||
|
@ -131,6 +131,12 @@ class TestDomainRemap(unittest.TestCase):
|
||||
resp = self.app(req.environ, start_response)
|
||||
self.assertEqual(resp, ['/v1/AUTH_a/c/obj'])
|
||||
|
||||
def test_domain_remap_with_path_root_and_path_no_slash(self):
|
||||
req = Request.blank('/v1obj', environ={'REQUEST_METHOD': 'GET'},
|
||||
headers={'Host': 'c.AUTH_a.example.com'})
|
||||
resp = self.app(req.environ, start_response)
|
||||
self.assertEqual(resp, ['/v1/AUTH_a/c/v1obj'])
|
||||
|
||||
def test_domain_remap_account_matching_ending_not_domain(self):
|
||||
req = Request.blank('/dontchange', environ={'REQUEST_METHOD': 'GET'},
|
||||
headers={'Host': 'c.aexample.com'})
|
||||
|
Loading…
x
Reference in New Issue
Block a user