EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit 6c3c3d3d authored by Fabian Schindler's avatar Fabian Schindler
Browse files

Fixing typing and import issues

parent aae0f020
No related branches found
No related tags found
1 merge request!15Registration routes
......@@ -30,10 +30,10 @@ class Backend(ABC, Generic[T]):
"""Deregisters an item using its identifier."""
T = TypeVar("T")
TR = TypeVar("TR")
class Route(ABC, Generic[T]):
class Route(ABC, Generic[TR]):
"""A route is of a specific type and manages the registration from a
specific queue to a list of backends.
"""
......@@ -47,11 +47,11 @@ class Route(ABC, Generic[T]):
return self.route_config.replace
@abstractmethod
def parse(self, raw: str) -> T:
def parse(self, raw: str) -> TR:
"""Parses the value from the given raw input."""
@abstractmethod
def get_source(
self, source_cfgs: List[SourceConfig], item: T
self, source_cfgs: List[SourceConfig], item: TR
) -> Optional[Source]:
"""Determines the source of the given parsed item."""
......@@ -35,7 +35,7 @@ def constructor_env_variables(loader: yaml.Loader, node):
if isinstance(value, str):
match = ENV_PATTERN.findall(value) # to find all env variables in line
if match:
full_value = value
full_value: str = value
for group in match:
env_variable = os.environ.get(group)
if env_variable is not None:
......@@ -118,9 +118,9 @@ class HandlersConfig:
error (List[HandlerConfig]): the error-handlers configuration
"""
pre: List[HandlerConfig] = None
post: List[HandlerConfig] = None
error: List[HandlerConfig] = None
pre: List[HandlerConfig] = field(default_factory=list)
post: List[HandlerConfig] = field(default_factory=list)
error: List[HandlerConfig] = field(default_factory=list)
@classmethod
def from_dict(cls, values: dict) -> "HandlersConfig":
......@@ -168,7 +168,7 @@ class RouteConfig:
output_queue: Optional[str] = None
replace: bool = False
backends: List[BackendConfig] = field(default_factory=list)
handlers: HandlersConfig = field(default_factory=HandlerConfig)
handlers: HandlersConfig = field(default_factory=HandlersConfig)
args: List[Any] = field(default_factory=list)
kwargs: Dict[str, Any] = field(default_factory=dict)
......@@ -205,7 +205,7 @@ class SourceConfig:
type: str
name: str
filter: Optional[str]
filter: Optional[str] = None
args: List[Any] = field(default_factory=list)
kwargs: Dict[str, str] = field(default_factory=dict)
......
import json
from typing import List, Union
from pyparsing import Optional
from typing import List, Optional
from ..abc import Route
from ..config import RouteConfig, SourceConfig
from ..source import Source, get_source
JSONType = Union[dict, list]
class JSONRoute(Route[JSONType]):
class JSONRoute(Route[dict]):
"""Route handler that handles raw JSON objects"""
def __init__(self, config: RouteConfig, href_field: Optional[str] = None):
def __init__(
self, config: RouteConfig, href_field: Optional[str] = None
):
super().__init__(config)
self.href_field = href_field
def parse(self, raw: str) -> JSONType:
def parse(self, raw: str) -> dict:
return json.loads(raw)
def get_source(
self, source_cfgs: List[SourceConfig], item: JSONType
self, source_cfgs: List[SourceConfig], item: dict
) -> Optional[Source]:
if self.href_field:
path = item[self.href_field]
......
"""Module holding route classes dealing with POSIX paths
"""
from typing import List
from pyparsing import Optional
from typing import List, Optional
from ..abc import Route
from ..config import SourceConfig
......
......@@ -21,7 +21,7 @@ class ItemRoute(Route[pystac.Item]):
self, source_cfgs: List[SourceConfig], item: pystac.Item
) -> Optional[Source]:
return get_source(
source_cfgs, [asset.href for asset in item.assets]
source_cfgs, [asset.href for asset in item.assets.values()]
)
......@@ -35,5 +35,5 @@ class CollectionRoute(Route[pystac.Collection]):
self, source_cfgs: List[SourceConfig], item: pystac.Collection
) -> Optional[Source]:
return get_source(
source_cfgs, [asset.href for asset in item.assets]
source_cfgs, [asset.href for asset in item.assets.values()]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment