mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
* modify config to use identifier data class and update json driver * move identifier data attributes into read only properties * Update mongo get and set methods * Update get/set to use UUID separately, make clear work * Remove not implemented and fix get_raw * Update remaining untouched get/set/clear * Fix get_raw * Finally fix get_raw and set_raw * style * This is better * Sorry guys * Update get behavior to handle "all" calls as expected * style again * Why do you do this to me * style once more * Update mongo schema
105 lines
2.6 KiB
Python
105 lines
2.6 KiB
Python
from typing import Tuple
|
|
|
|
__all__ = ["BaseDriver", "IdentifierData"]
|
|
|
|
|
|
class IdentifierData:
|
|
def __init__(self, uuid: str, category: str, primary_key: Tuple[str], identifiers: Tuple[str]):
|
|
self._uuid = uuid
|
|
self._category = category
|
|
self._primary_key = primary_key
|
|
self._identifiers = identifiers
|
|
|
|
@property
|
|
def uuid(self):
|
|
return self._uuid
|
|
|
|
@property
|
|
def category(self):
|
|
return self._category
|
|
|
|
@property
|
|
def primary_key(self):
|
|
return self._primary_key
|
|
|
|
@property
|
|
def identifiers(self):
|
|
return self._identifiers
|
|
|
|
def __repr__(self):
|
|
return (
|
|
f"<IdentifierData uuid={self.uuid} category={self.category} primary_key={self.primary_key}"
|
|
f" identifiers={self.identifiers}>"
|
|
)
|
|
|
|
def add_identifier(self, *identifier: str) -> "IdentifierData":
|
|
if not all(isinstance(i, str) for i in identifier):
|
|
raise ValueError("Identifiers must be strings.")
|
|
|
|
return IdentifierData(
|
|
self.uuid, self.category, self.primary_key, self.identifiers + identifier
|
|
)
|
|
|
|
def to_tuple(self):
|
|
return tuple(
|
|
item
|
|
for item in (self.uuid, self.category, *self.primary_key, *self.identifiers)
|
|
if len(item) > 0
|
|
)
|
|
|
|
|
|
class BaseDriver:
|
|
def __init__(self, cog_name, identifier):
|
|
self.cog_name = cog_name
|
|
self.unique_cog_identifier = identifier
|
|
|
|
async def get(self, identifier_data: IdentifierData):
|
|
"""
|
|
Finds the value indicate by the given identifiers.
|
|
|
|
Parameters
|
|
----------
|
|
identifier_data
|
|
|
|
Returns
|
|
-------
|
|
Any
|
|
Stored value.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
def get_config_details(self):
|
|
"""
|
|
Asks users for additional configuration information necessary
|
|
to use this config driver.
|
|
|
|
Returns
|
|
-------
|
|
Dict of configuration details.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
async def set(self, identifier_data: IdentifierData, value=None):
|
|
"""
|
|
Sets the value of the key indicated by the given identifiers.
|
|
|
|
Parameters
|
|
----------
|
|
identifier_data
|
|
value
|
|
Any JSON serializable python object.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
async def clear(self, identifier_data: IdentifierData):
|
|
"""
|
|
Clears out the value specified by the given identifiers.
|
|
|
|
Equivalent to using ``del`` on a dict.
|
|
|
|
Parameters
|
|
----------
|
|
identifier_data
|
|
"""
|
|
raise NotImplementedError
|