]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Mon, 20 Nov 2023 00:59:26 +0000 (01:59 +0100)
committerRoland Häder <roland@mxchange.org>
Mon, 20 Nov 2023 00:59:26 +0000 (01:59 +0100)
- more blacklist checks
- some formatting

fba/helpers/cookies.py
fba/helpers/dicts.py
fba/helpers/processing.py

index ff2457aad7ea423b47c1f2c1901bc4600c9c6e45..d98df82f0c0ab1033b91e9decfa75e987b4a646a 100644 (file)
@@ -24,7 +24,7 @@ logger = logging.getLogger(__name__)
 # Cookies storage
 _cookies = {}
 
-def store (domain: str, cookies: dict):
+def store(domain: str, cookies: dict):
     logger.debug("domain='%s',cookies()=%d - CALLED!", domain, len(cookies))
     domain_helper.raise_on(domain)
     if not isinstance(cookies, dict):
@@ -44,7 +44,7 @@ def get_all(domain: str) -> dict:
     logger.debug("_cookies[%s]()=%d - EXIT!", domain, len(_cookies[domain]))
     return _cookies[domain]
 
-def has (domain: str) -> bool:
+def has(domain: str) -> bool:
     logger.debug("domain='%s' - CALLED!", domain)
     domain_helper.raise_on(domain)
 
@@ -53,7 +53,7 @@ def has (domain: str) -> bool:
     logger.debug("has_cookies='%s' - EXIT!", has_cookies)
     return has_cookies
 
-def clear (domain: str):
+def clear(domain: str):
     logger.debug("domain='%s' - CALLED!", domain)
     domain_helper.raise_on(domain)
 
index 0d6b8be9735af473f56909192f609b1dfb300af2..cd9ccbde4ae4c5c8f436719423cbf2a032351f0f 100644 (file)
@@ -32,6 +32,7 @@ def has_key(lists: list, key: str, value: any) -> bool:
     logger.debug("Checking lists()=%d ...", len(lists))
     for row in lists:
         logger.debug("row[%s]='%s", type(row), row)
+
         if not isinstance(row, dict):
             raise ValueError(f"row[]='{type(row)}' is not of type 'dict'")
         elif not key in row:
index c79815c600dbcee2a234583d63777e05bb830fd9..00f6ae073d036c1d2102051e5853d4cd4e3e1a6f 100644 (file)
@@ -45,6 +45,10 @@ def instance(blocked: str, blocker: str, command: str) -> bool:
         raise ValueError(f"Parameter command[]='{type(command)}' is not of type 'str'")
     elif command == "":
         raise ValueError("Parameter 'command' is empty")
+    elif blacklist.is_blacklisted(blocked):
+        raise ValueError(f"blocked='{blocked}' is blacklisted but function was invoked")
+    elif blacklist.is_blacklisted(blocker):
+        raise ValueError(f"blocker='{blocker}' is blacklisted but function was invoked")
 
     logger.debug("blocked='%s' - BEFORE!", blocked)
     blocked = utils.deobfuscate(blocked, blocker)
@@ -89,6 +93,8 @@ def block(blocker: str, blocked: str, reason: str, block_level: str) -> bool:
         raise ValueError(f"Parameter block_level[]='{type(block_level)}' is not of type 'str'")
     elif block_level == "":
         raise ValueError("Parameter block_level is empty")
+    elif blacklist.is_blacklisted(blocker):
+        raise ValueError(f"blocker='{blocker}' is blacklisted but function was invoked")
     elif blacklist.is_blacklisted(blocked):
         raise ValueError(f"blocked='{blocked}' is blacklisted but function was invoked")
 
@@ -116,6 +122,8 @@ def csv_block(blocker: str, url: str, command: str):
         raise ValueError(f"command[]='{command}' is not of type 'str'")
     elif command == "":
         raise ValueError("Parameter 'command' is empty")
+    elif blacklist.is_blacklisted(blocker):
+        raise ValueError(f"blocker='{blocker}' is blacklisted but function was invoked")
 
     logger.debug("Setting last_blocked for blocker='%s' ...", blocker)
     instances.set_last_blocked(blocker)