Update endpoints to reflect current spec

This commit is contained in:
Daniel Wagner-Hall 2015-12-02 15:45:04 +00:00
parent f721fdbf87
commit 872c134807
6 changed files with 11 additions and 35 deletions

View file

@ -27,7 +27,7 @@ import logging
logger = logging.getLogger(__name__)
def client_path_patterns(path_regex, releases=(0,)):
def client_path_patterns(path_regex, releases=(0,), include_in_unstable=True):
"""Creates a regex compiled client path with the correct client path
prefix.
@ -38,8 +38,9 @@ def client_path_patterns(path_regex, releases=(0,)):
SRE_Pattern
"""
patterns = [re.compile("^" + CLIENT_PREFIX + path_regex)]
unstable_prefix = CLIENT_PREFIX.replace("/api/v1", "/unstable")
patterns.append(re.compile("^" + unstable_prefix + path_regex))
if include_in_unstable:
unstable_prefix = CLIENT_PREFIX.replace("/api/v1", "/unstable")
patterns.append(re.compile("^" + unstable_prefix + path_regex))
for release in releases:
new_prefix = CLIENT_PREFIX.replace("/api/v1", "/r%d" % release)
patterns.append(re.compile("^" + new_prefix + path_regex))