mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 03:00:11 +00:00
28 lines
780 B
Python
28 lines
780 B
Python
"""OpenAPI core validation util module"""
|
|
try:
|
|
from urllib.parse import urlparse
|
|
|
|
except ImportError:
|
|
from urlparse import urlparse
|
|
|
|
|
|
def is_absolute(url):
|
|
return url.startswith('//') or '://' in url
|
|
|
|
|
|
def path_qs(url):
|
|
pr = urlparse(url)
|
|
result = pr.path
|
|
if pr.query:
|
|
result += '?' + pr.query
|
|
return result
|
|
|
|
|
|
def get_operation_pattern(server_url, request_url_pattern):
|
|
"""Return an updated request URL pattern with the server URL removed."""
|
|
if server_url[-1] == "/":
|
|
# operations have to start with a slash, so do not remove it
|
|
server_url = server_url[:-1]
|
|
if is_absolute(server_url):
|
|
return request_url_pattern.replace(server_url, "", 1)
|
|
return path_qs(request_url_pattern).replace(server_url, "", 1)
|