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]): ...@@ -30,10 +30,10 @@ class Backend(ABC, Generic[T]):
"""Deregisters an item using its identifier.""" """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 """A route is of a specific type and manages the registration from a
specific queue to a list of backends. specific queue to a list of backends.
""" """
...@@ -47,11 +47,11 @@ class Route(ABC, Generic[T]): ...@@ -47,11 +47,11 @@ class Route(ABC, Generic[T]):
return self.route_config.replace return self.route_config.replace
@abstractmethod @abstractmethod
def parse(self, raw: str) -> T: def parse(self, raw: str) -> TR:
"""Parses the value from the given raw input.""" """Parses the value from the given raw input."""
@abstractmethod @abstractmethod
def get_source( def get_source(
self, source_cfgs: List[SourceConfig], item: T self, source_cfgs: List[SourceConfig], item: TR
) -> Optional[Source]: ) -> Optional[Source]:
"""Determines the source of the given parsed item.""" """Determines the source of the given parsed item."""
...@@ -35,7 +35,7 @@ def constructor_env_variables(loader: yaml.Loader, node): ...@@ -35,7 +35,7 @@ def constructor_env_variables(loader: yaml.Loader, node):
if isinstance(value, str): if isinstance(value, str):
match = ENV_PATTERN.findall(value) # to find all env variables in line match = ENV_PATTERN.findall(value) # to find all env variables in line
if match: if match:
full_value = value full_value: str = value
for group in match: for group in match:
env_variable = os.environ.get(group) env_variable = os.environ.get(group)
if env_variable is not None: if env_variable is not None:
...@@ -118,9 +118,9 @@ class HandlersConfig: ...@@ -118,9 +118,9 @@ class HandlersConfig:
error (List[HandlerConfig]): the error-handlers configuration error (List[HandlerConfig]): the error-handlers configuration
""" """
pre: List[HandlerConfig] = None pre: List[HandlerConfig] = field(default_factory=list)
post: List[HandlerConfig] = None post: List[HandlerConfig] = field(default_factory=list)
error: List[HandlerConfig] = None error: List[HandlerConfig] = field(default_factory=list)
@classmethod @classmethod
def from_dict(cls, values: dict) -> "HandlersConfig": def from_dict(cls, values: dict) -> "HandlersConfig":
...@@ -168,7 +168,7 @@ class RouteConfig: ...@@ -168,7 +168,7 @@ class RouteConfig:
output_queue: Optional[str] = None output_queue: Optional[str] = None
replace: bool = False replace: bool = False
backends: List[BackendConfig] = field(default_factory=list) 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) args: List[Any] = field(default_factory=list)
kwargs: Dict[str, Any] = field(default_factory=dict) kwargs: Dict[str, Any] = field(default_factory=dict)
...@@ -205,7 +205,7 @@ class SourceConfig: ...@@ -205,7 +205,7 @@ class SourceConfig:
type: str type: str
name: str name: str
filter: Optional[str] filter: Optional[str] = None
args: List[Any] = field(default_factory=list) args: List[Any] = field(default_factory=list)
kwargs: Dict[str, str] = field(default_factory=dict) kwargs: Dict[str, str] = field(default_factory=dict)
......
import json import json
from typing import List, Union from typing import List, Optional
from pyparsing import Optional
from ..abc import Route from ..abc import Route
from ..config import RouteConfig, SourceConfig from ..config import RouteConfig, SourceConfig
from ..source import Source, get_source from ..source import Source, get_source
JSONType = Union[dict, list] class JSONRoute(Route[dict]):
class JSONRoute(Route[JSONType]):
"""Route handler that handles raw JSON objects""" """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) super().__init__(config)
self.href_field = href_field self.href_field = href_field
def parse(self, raw: str) -> JSONType: def parse(self, raw: str) -> dict:
return json.loads(raw) return json.loads(raw)
def get_source( def get_source(
self, source_cfgs: List[SourceConfig], item: JSONType self, source_cfgs: List[SourceConfig], item: dict
) -> Optional[Source]: ) -> Optional[Source]:
if self.href_field: if self.href_field:
path = item[self.href_field] path = item[self.href_field]
......
"""Module holding route classes dealing with POSIX paths """Module holding route classes dealing with POSIX paths
""" """
from typing import List from typing import List, Optional
from pyparsing import Optional
from ..abc import Route from ..abc import Route
from ..config import SourceConfig from ..config import SourceConfig
......
...@@ -21,7 +21,7 @@ class ItemRoute(Route[pystac.Item]): ...@@ -21,7 +21,7 @@ class ItemRoute(Route[pystac.Item]):
self, source_cfgs: List[SourceConfig], item: pystac.Item self, source_cfgs: List[SourceConfig], item: pystac.Item
) -> Optional[Source]: ) -> Optional[Source]:
return get_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]): ...@@ -35,5 +35,5 @@ class CollectionRoute(Route[pystac.Collection]):
self, source_cfgs: List[SourceConfig], item: pystac.Collection self, source_cfgs: List[SourceConfig], item: pystac.Collection
) -> Optional[Source]: ) -> Optional[Source]:
return get_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