1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
|
import functools
import json
import ssl
from typing import Dict, Optional
from urllib.parse import urlparse
from urllib.request import Request, urlopen
import requests # type: ignore
from jsonschema import Draft202012Validator
from referencing import Registry, Resource
from referencing.jsonschema import DRAFT202012
from referencing.typing import URI
NEW_VERSIONS = [
"1.0.0-beta.2",
"1.0.0-rc.1",
"1.0.0-rc.2",
"1.0.0-rc.3",
"1.0.0-rc.4",
"1.0.0",
"1.1.0-beta.1",
"1.1.0",
]
def is_url(url: str) -> bool:
"""Checks whether the input string is a valid URL.
Args:
url (str): The string to check.
Returns:
bool: True if the input string is a valid URL, False otherwise.
"""
try:
result = urlparse(url)
return all([result.scheme, result.netloc])
except ValueError:
return False
def is_valid_url(url: str) -> bool:
"""Checks if a given string is a valid URL.
Args:
url: A string to check for validity as a URL.
Returns:
A boolean value indicating whether the input string is a valid URL.
"""
return urlparse(url).scheme in ["http", "https"]
def get_stac_type(stac_content: Dict) -> str:
"""Determine the type of a STAC resource.
Given a dictionary representing a STAC resource, this function determines the
resource's type and returns a string representing that type. The resource type
can be one of 'Item', 'Catalog', or 'Collection'.
Args:
stac_content: A dictionary representing a STAC resource.
Returns:
A string representing the type of the STAC resource.
Raises:
TypeError: If the input is not a dictionary.
"""
try:
content_types = ["Item", "Catalog", "Collection"]
if "type" in stac_content and stac_content["type"] == "Feature":
return "Item"
elif "type" in stac_content and stac_content["type"] in content_types:
return stac_content["type"]
elif "extent" in stac_content or "license" in stac_content:
return "Collection"
else:
return "Catalog"
except TypeError as e:
return str(e)
def fetch_and_parse_file(input_path: str, headers: Optional[Dict] = None) -> Dict:
"""Fetches and parses a JSON file from a URL or local file.
Given a URL or local file path to a JSON file, this function fetches the file,
and parses its contents into a dictionary. If the input path is a valid URL, the
function uses the requests library to download the file, otherwise it opens the
local file with the json library.
Args:
input_path: A string representing the URL or local file path to the JSON file.
headers: For URLs: HTTP headers to include in the request
Returns:
A dictionary containing the parsed contents of the JSON file.
Raises:
ValueError: If the input is not a valid URL or local file path.
requests.exceptions.RequestException: If there is an error while downloading the file.
"""
try:
if is_url(input_path):
resp = requests.get(input_path, headers=headers)
resp.raise_for_status()
data = resp.json()
else:
with open(input_path) as f:
data = json.load(f)
return data
except (ValueError, requests.exceptions.RequestException) as e:
raise e
@functools.lru_cache(maxsize=48)
def fetch_and_parse_schema(input_path: str) -> Dict:
"""Fetches and parses a JSON schema file from a URL or local file using a cache.
Given a URL or local file path to a JSON schema file, this function fetches the file
and parses its contents into a dictionary. If the input path is a valid URL, the
function uses the requests library to download the file, otherwise it opens the
local file with the json library. Additionally, this function caches the results of
previous function calls to reduce the number of times the file is fetched and parsed.
Args:
input_path: A string representing the URL or local file path to the JSON schema file.
Returns:
A dictionary containing the parsed contents of the JSON schema file.
Raises:
ValueError: If the input is not a valid URL or local file path.
requests.exceptions.RequestException: If there is an error while downloading the file.
"""
return fetch_and_parse_file(input_path)
def set_schema_addr(version: str, stac_type: str) -> str:
"""Set the URL address for the JSON schema to be used for validating the STAC object.
Validate new versions at schemas.stacspec.org
Args:
version (str): The version number of the STAC object.
stac_type (str): The type of the STAC object (e.g. "item", "collection").
Returns:
str: The URL address for the JSON schema.
"""
if version in NEW_VERSIONS:
return f"https://schemas.stacspec.org/v{version}/{stac_type}-spec/json-schema/{stac_type}.json"
else:
return f"https://cdn.staclint.com/v{version}/{stac_type}.json"
def link_request(
link: Dict, initial_message: Dict, open_urls: bool = True, headers: Dict = {}
) -> None:
"""Makes a request to a URL and appends it to the relevant field of the initial message.
Args:
link: A dictionary containing a "href" key which is a string representing a URL.
initial_message: A dictionary containing lists for "request_valid", "request_invalid",
"format_valid", and "format_invalid" URLs.
open_urls: Whether to open link href URL
headers: HTTP headers to include in the request
Returns:
None
"""
if is_url(link["href"]):
try:
if open_urls:
request = Request(link["href"], headers=headers)
if "s3" in link["href"]:
context = ssl._create_unverified_context()
response = urlopen(request, context=context)
else:
response = urlopen(request)
status_code = response.getcode()
if status_code == 200:
initial_message["request_valid"].append(link["href"])
except Exception:
initial_message["request_invalid"].append(link["href"])
initial_message["format_valid"].append(link["href"])
else:
initial_message["request_invalid"].append(link["href"])
initial_message["format_invalid"].append(link["href"])
def cached_retrieve(uri: URI, schema_map: Optional[Dict] = None) -> Resource[Dict]:
"""
Retrieve and cache a remote schema.
Args:
uri (str): The URI of the schema.
schema_map_keys: Override schema location to validate against local versions of a schema
Returns:
dict: The parsed JSON dict of the schema.
Raises:
requests.RequestException: If the request to fetch the schema fails.
Exception: For any other unexpected errors.
"""
return Resource.from_contents(
fetch_schema_with_override(uri, schema_map=schema_map)
)
def fetch_schema_with_override(
schema_path: str, schema_map: Optional[Dict] = None
) -> Dict:
"""
Retrieve and cache a remote schema.
Args:
schema_path (str): Path or URI of the schema.
schema_map (dict): Override schema location to validate against local versions of a schema
Returns:
dict: The parsed JSON dict of the schema.
"""
if schema_map:
if schema_path in schema_map:
schema_path = schema_map[schema_path]
# Load the schema
return fetch_and_parse_schema(schema_path)
def validate_with_ref_resolver(
schema_path: str, content: Dict, schema_map: Optional[Dict] = None
) -> None:
"""
Validate a JSON document against a JSON Schema with dynamic reference resolution.
Args:
schema_path (str): Path or URI of the JSON Schema.
content (dict): JSON content to validate.
schema_map (dict): Override schema location to validate against local versions of a schema
Raises:
jsonschema.exceptions.ValidationError: If validation fails.
requests.RequestException: If fetching a remote schema fails.
FileNotFoundError: If a local schema file is not found.
Exception: If any other error occurs during validation.
"""
schema = fetch_schema_with_override(schema_path, schema_map=schema_map)
# Set up the resource and registry for schema resolution
cached_retrieve_with_schema_map = functools.partial(
cached_retrieve, schema_map=schema_map
)
resource: Resource = Resource(contents=schema, specification=DRAFT202012) # type: ignore
registry: Registry = Registry(retrieve=cached_retrieve_with_schema_map).with_resource( # type: ignore
uri=schema_path, resource=resource
) # type: ignore
# Validate the content against the schema
validator = Draft202012Validator(schema, registry=registry)
validator.validate(content)
|