VALID_COMPARISONS

This commit is contained in:
Candifloss 2025-03-15 09:42:47 +05:30
parent 3acbb85b08
commit 8e807fa52c
7 changed files with 19 additions and 12 deletions

View File

@ -2,6 +2,12 @@ from typing import List, Optional, Tuple, Set
from dataclasses import dataclass, field
ALLOWED_INPUT_TYPES = {"text", "number", "date", "select"}
VALID_COMPARISONS = {
"text": {"lt", "st", "eq", "ne"}, # longer than, shorter than, eq, or not eq, to the ref attrib
"number": {"lt", "gt", "le", "ge", "eq", "ne"}, # <, >, <=, >=, ==, !=
"date": {"lt", "gt", "le", "ge", "eq", "ne"}, # <, >, <=, >=, ==, !=
"select": {"eq", "ne"} # eq, or not eq, to the ref attrib
}
@dataclass
class Attribute:
@ -14,7 +20,7 @@ class Attribute:
primary: bool = False
default_val: Optional[str] = None
compareto: Optional[List[Tuple[str, str]]] = None
valid_comparisons: Optional[Set[str]] = None
#valid_comparisons: Optional[Set[str]] = None
def validate(self) -> Optional[str]:
"""Validate common attributes. Returns an error message if invalid, otherwise None."""

View File

@ -1,4 +1,4 @@
from .Attribute import Attribute
from .Attribute import Attribute, VALID_COMPARISONS
from .textAttribute import textAttribute
from .numAttribute import numAttribute, intAttribute, floatAttribute
from .dateAttribute import dateAttribute
@ -13,4 +13,5 @@ __all__ = [
"floatAttribute",
"dateAttribute",
"selectAttribute",
"VALID_COMPARISONS",
]

View File

@ -12,7 +12,6 @@ class dateAttribute(Attribute):
def __post_init__(self):
"""Post-initialization to set the HTML input type."""
self.html_input_type = "date"
self.valid_comparisons = {"lt", "gt", "le", "ge", "eq", "ne"}, # <, >, <=, >=, ==, !=
def _is_date(self, value: str) -> bool:
"""Check if a value is a valid date in YYYY-MM-DD format."""

View File

@ -12,7 +12,6 @@ class numAttribute(Attribute):
def __post_init__(self):
"""Post-initialization to set the HTML input type."""
self.html_input_type = "number"
self.valid_comparisons = {"lt", "gt", "le", "ge", "eq", "ne"} # <, >, <=, >=, ==, !=
def validate(self) -> Optional[str]:
"""Validate numeric-specific attributes."""

View File

@ -10,7 +10,6 @@ class selectAttribute(Attribute):
def __post_init__(self):
"""Post-initialization to set the HTML input type."""
self.html_input_type = "select"
self.valid_comparisons = {"eq", "ne"} # eq, or not eq, to the ref attrib
def validate(self) -> Optional[str]:
"""Validate select-specific attributes."""

View File

@ -14,7 +14,6 @@ class textAttribute(Attribute):
def __post_init__(self):
"""Post-initialization to set the HTML input type."""
self.html_input_type = "text"
self.valid_comparisons = {"lt", "st", "eq", "ne"}, # longer than, shorter than, eq, or not eq, to the ref attrib
def validate(self) -> Optional[str]:
"""Validate text-specific attributes."""

View File

@ -16,6 +16,9 @@ def validate_config(item_attributes: List[Attribute]) -> str:
if len(attrib_names) != len(attrib_name_set):
return "Duplicate attribute names are not allowed."
# Map attribute names to their objects
attrib_map = {attrib.attrib_name: attrib for attrib in item_attributes}
# Validate each attribute
for attrib in item_attributes:
error = attrib.validate()
@ -28,12 +31,13 @@ def validate_config(item_attributes: List[Attribute]) -> str:
isinstance(pair, tuple) and len(pair) == 2 for pair in attrib.compareto
):
return f"Invalid comparison format for attribute '{attrib.attrib_name}'. Expected a list of tuples."
for cmp, ref_attr in attrib.compareto:
if cmp not in attrib.valid_comparisons:
return f"Invalid comparison '{cmp}' for attribute '{attrib.attrib_name}'. Allowed operators are: {attrib.valid_comparisons}"
if ref_attr not in attrib_name_set:
return f"Invalid reference attribute '{ref_attr}' for comparison in attribute '{attrib.attrib_name}'."
for cmp, ref_attr_name in attrib.compareto:
if cmp not in VALID_COMPARISONS[attrib.html_input_type]:
return f"Invalid comparison '{cmp}' for attribute '{attrib.attrib_name}'. Allowed operators are: {VALID_COMPARISONS[attrib.html_input_type]}"
if ref_attr_name not in attrib_name_set:
return f"Invalid reference attribute '{ref_attr_name}' for comparison in attribute '{attrib.attrib_name}'."
ref_attr = attrib_map[ref_attr_name]
if ref_attr.html_input_type != attrib.html_input_type:
return f"Invalid comparison of '{attrib}' & '{ref_attr}' - must be of the same type, {attrib.html_input_type}."
return f"Invalid comparison of '{attrib.attrib_name}' & '{ref_attr_name}' - must be of the same type, {attrib.html_input_type}."
return "Ok"