Compare commits
30 Commits
v0.1.0-rc.
...
v0.2.0-rc.
Author | SHA1 | Date | |
---|---|---|---|
|
25f2595cf7 | ||
a4967e5b77 | |||
|
0228983d52 | ||
39a90d39fd | |||
9e9b6bc7dc
|
|||
d19a7381f3 | |||
cda570eb37
|
|||
a54ef39e53
|
|||
b3a7e3623a
|
|||
d402c520a5 | |||
751662ba6b | |||
09da774f26 | |||
|
f97e6e4e93 | ||
8f73cab327 | |||
|
cd9e4187f7 | ||
|
4f6c99f211 | ||
|
eb8019ccfe | ||
|
ce57755eee | ||
|
7a64e334d2 | ||
|
9417951f55 | ||
|
6060a3df83 | ||
eed084cd91
|
|||
7b64f6938b
|
|||
c54586940e
|
|||
0195706e92
|
|||
162898f5eb
|
|||
a753918432 | |||
36d63e0240 | |||
62a36a3747 | |||
8edf70e21c |
40
.dockerignore
Normal file
40
.dockerignore
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
# Include any files or directories that you don't want to be copied to your
|
||||||
|
# container here (e.g., local build artifacts, temporary files, etc.).
|
||||||
|
#
|
||||||
|
# For more help, visit the .dockerignore file reference guide at
|
||||||
|
# https://docs.docker.com/go/build-context-dockerignore/
|
||||||
|
|
||||||
|
**/.DS_Store
|
||||||
|
**/__pycache__
|
||||||
|
**/.venv
|
||||||
|
**/.classpath
|
||||||
|
**/.dockerignore
|
||||||
|
**/.env
|
||||||
|
**/.git
|
||||||
|
**/.gitignore
|
||||||
|
**/.project
|
||||||
|
**/.settings
|
||||||
|
**/.toolstarget
|
||||||
|
**/.vs
|
||||||
|
**/.vscode
|
||||||
|
**/*.*proj.user
|
||||||
|
**/*.dbmdl
|
||||||
|
**/*.jfm
|
||||||
|
**/bin
|
||||||
|
**/charts
|
||||||
|
**/docker-compose*
|
||||||
|
**/compose.y*ml
|
||||||
|
**/Dockerfile*
|
||||||
|
**/node_modules
|
||||||
|
**/npm-debug.log
|
||||||
|
**/obj
|
||||||
|
**/secrets.dev.yaml
|
||||||
|
**/values.dev.yaml
|
||||||
|
LICENSE
|
||||||
|
README.md
|
||||||
|
|
||||||
|
config.json
|
||||||
|
.renovaterc
|
||||||
|
**/.idea
|
||||||
|
**/.mypy_cache
|
||||||
|
validation
|
27
Dockerfile
Normal file
27
Dockerfile
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
ARG PYTHON_VERSION=3.12.8
|
||||||
|
FROM python:${PYTHON_VERSION}-slim AS base
|
||||||
|
|
||||||
|
ENV PYTHONDONTWRITEBYTECODE=1
|
||||||
|
ENV PYTHONUNBUFFERED=1
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
ARG UID=10001
|
||||||
|
RUN adduser \
|
||||||
|
--disabled-password \
|
||||||
|
--gecos "" \
|
||||||
|
--home "/nonexistent" \
|
||||||
|
--shell "/sbin/nologin" \
|
||||||
|
--no-create-home \
|
||||||
|
--uid "${UID}" \
|
||||||
|
appuser
|
||||||
|
|
||||||
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
||||||
|
--mount=type=bind,source=requirements.txt,target=requirements.txt \
|
||||||
|
python -m pip install -r requirements.txt
|
||||||
|
|
||||||
|
USER appuser
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
ENTRYPOINT ["python", "main.py", "--migrate"]
|
97
README.md
97
README.md
@@ -7,14 +7,50 @@
|
|||||||
<a href="https://git.end-play.xyz/HoloUA/Discord"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
|
<a href="https://git.end-play.xyz/HoloUA/Discord"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
## Installation
|
## Installation from release
|
||||||
|
|
||||||
1. Install MongoDB using the [official installation manual](https://www.mongodb.com/docs/manual/installation/).
|
1. Install MongoDB using the [official installation manual](https://www.mongodb.com/docs/manual/installation)
|
||||||
2. `git clone https://git.end-play.xyz/HoloUA/Discord.git`
|
2. Install Python 3.11+
|
||||||
3. `cd Discord`
|
3. Download the [latest release](https://git.end-play.xyz/HoloUA/Discord/releases/latest)'s archive
|
||||||
4. Install Python 3.9+ (at least 3.11 is recommended) for your OS
|
4. Extract the archive
|
||||||
5. `python3 -m pip install -r requirements.txt`
|
5. Navigate to the extracted folder and subfolder `Discord` in it
|
||||||
6. Run it with `python3 main.py` after configuring
|
6. Create a virtual environment:
|
||||||
|
`python -m venv .venv` or `virtualenv .venv`
|
||||||
|
7. Activate the virtual environment:
|
||||||
|
Windows: `.venv\Scripts\activate.bat`
|
||||||
|
Linux/macOS: `.venv/bin/activate`
|
||||||
|
8. Install the dependencies:
|
||||||
|
`python -m pip install -r requirements.txt`
|
||||||
|
9. Run the bot with `python main.py` after completing the [configuration](#Configuration)
|
||||||
|
|
||||||
|
## Installation with Git
|
||||||
|
|
||||||
|
1. Install MongoDB using the [official installation manual](https://www.mongodb.com/docs/manual/installation)
|
||||||
|
2. Install Python 3.11+
|
||||||
|
3. Clone the repository:
|
||||||
|
`git clone https://git.end-play.xyz/HoloUA/Discord.git`
|
||||||
|
4. `cd Discord`
|
||||||
|
5. Create a virtual environment:
|
||||||
|
`python -m venv .venv` or `virtualenv .venv`
|
||||||
|
6. Activate the virtual environment:
|
||||||
|
Windows: `.venv\Scripts\activate.bat`
|
||||||
|
Linux/macOS: `.venv/bin/activate`
|
||||||
|
7. Install the dependencies:
|
||||||
|
`python -m pip install -r requirements.txt`
|
||||||
|
8. Run the bot with `python main.py` after completing the [configuration](#Configuration)
|
||||||
|
|
||||||
|
## Upgrading with Git
|
||||||
|
|
||||||
|
1. Go to the bot's directory
|
||||||
|
2. `git pull`
|
||||||
|
3. Activate the virtual environment:
|
||||||
|
Windows: `.venv\Scripts\activate.bat`
|
||||||
|
Linux/macOS: `.venv/bin/activate`
|
||||||
|
4. Update the dependencies:
|
||||||
|
`python -m pip install -r requirements.txt`
|
||||||
|
5. First start after the upgrade must initiate the migration:
|
||||||
|
`python main.py --migrate`
|
||||||
|
6. Now the bot is up to date and the next run will not require `--migrate` anymore
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
@@ -36,3 +72,50 @@ Mandatory keys to modify:
|
|||||||
- roles.*
|
- roles.*
|
||||||
|
|
||||||
After all of that you're good to go! Happy using :)
|
After all of that you're good to go! Happy using :)
|
||||||
|
|
||||||
|
## Caching
|
||||||
|
|
||||||
|
Although general database access speed is fast, caching might become helpful for
|
||||||
|
bigger servers with many bot interactions. Currently, Redis and Memcached are supported.
|
||||||
|
|
||||||
|
Configuration happens through the config key `caching`.
|
||||||
|
|
||||||
|
Set `caching.type` to the service of you choice ("redis" or "memcached") and then update
|
||||||
|
the URI to access the service. It's Redis' default URI format for Redis and "address:port"
|
||||||
|
for Memcached.
|
||||||
|
|
||||||
|
Which one should I choose?
|
||||||
|
|
||||||
|
| Service | Read/write speed | Config flexibility |
|
||||||
|
|-----------|------------------|--------------------|
|
||||||
|
| Redis | High | Very flexible |
|
||||||
|
| Memcached | Very high | Basic |
|
||||||
|
|
||||||
|
> Performance difference between Redis and Memcached is generally quite low, so your setup
|
||||||
|
> should normally depend more on the configuration flexibility than on raw speed.
|
||||||
|
|
||||||
|
## Debugging
|
||||||
|
|
||||||
|
There's a config key `debug` that can be set to `true` for debugging purposes.
|
||||||
|
|
||||||
|
It should be set to `false` in production, otherwise log becomes very verbose and might
|
||||||
|
contain data that shouldn't normally be logged.
|
||||||
|
|
||||||
|
## Docker [Experimental]
|
||||||
|
|
||||||
|
As an experiment, Docker deployment option has been added.
|
||||||
|
|
||||||
|
### Building the image
|
||||||
|
|
||||||
|
1. `git clone https://git.end-play.xyz/HoloUA/Discord.git`
|
||||||
|
2. `cd Discord`
|
||||||
|
3. `docker build -t holoua-discord .`
|
||||||
|
|
||||||
|
### Starting the bot
|
||||||
|
|
||||||
|
1. Install MongoDB using the [official installation manual](https://www.mongodb.com/docs/manual/installation)
|
||||||
|
2. Download
|
||||||
|
the [configuration example file](https://git.end-play.xyz/HoloUA/Discord/src/branch/main/config_example.json) and
|
||||||
|
store it somewhere you would like your bot to access it
|
||||||
|
3. Complete the [configuration](#Configuration) step for this file
|
||||||
|
4. `docker run -d -v /path/to/config.json:/app/config.json holoua-discord`
|
0
classes/__init__.py
Normal file
0
classes/__init__.py
Normal file
3
classes/cache/__init__.py
vendored
Normal file
3
classes/cache/__init__.py
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
from .holo_cache import HoloCache
|
||||||
|
from .holo_cache_memcached import HoloCacheMemcached
|
||||||
|
from .holo_cache_redis import HoloCacheRedis
|
44
classes/cache/holo_cache.py
vendored
Normal file
44
classes/cache/holo_cache.py
vendored
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
from abc import ABC, abstractmethod
|
||||||
|
from typing import Any, Dict
|
||||||
|
|
||||||
|
import pymemcache
|
||||||
|
import redis
|
||||||
|
|
||||||
|
|
||||||
|
class HoloCache(ABC):
|
||||||
|
client: pymemcache.Client | redis.Redis
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
@abstractmethod
|
||||||
|
def from_config(cls, engine_config: Dict[str, Any]) -> Any:
|
||||||
|
pass
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def get_json(self, key: str) -> Any | None:
|
||||||
|
# TODO This method must also carry out ObjectId conversion!
|
||||||
|
pass
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def get_string(self, key: str) -> str | None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def get_object(self, key: str) -> Any | None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def set_json(self, key: str, value: Any) -> None:
|
||||||
|
# TODO This method must also carry out ObjectId conversion!
|
||||||
|
pass
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def set_string(self, key: str, value: str) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def set_object(self, key: str, value: Any) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def delete(self, key: str) -> None:
|
||||||
|
pass
|
89
classes/cache/holo_cache_memcached.py
vendored
Normal file
89
classes/cache/holo_cache_memcached.py
vendored
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
import logging
|
||||||
|
from logging import Logger
|
||||||
|
from typing import Dict, Any
|
||||||
|
|
||||||
|
from pymemcache import Client
|
||||||
|
|
||||||
|
from modules.cache_utils import string_to_json, json_to_string
|
||||||
|
from . import HoloCache
|
||||||
|
|
||||||
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
class HoloCacheMemcached(HoloCache):
|
||||||
|
client: Client
|
||||||
|
|
||||||
|
def __init__(self, client: Client):
|
||||||
|
self.client = client
|
||||||
|
|
||||||
|
logger.info("Initialized Memcached for caching")
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def from_config(cls, engine_config: Dict[str, Any]) -> "HoloCacheMemcached":
|
||||||
|
if "uri" not in engine_config:
|
||||||
|
raise KeyError(
|
||||||
|
"Cache configuration is invalid. Please check if all keys are set (engine: memcached)"
|
||||||
|
)
|
||||||
|
|
||||||
|
return cls(Client(engine_config["uri"], default_noreply=True))
|
||||||
|
|
||||||
|
def get_json(self, key: str) -> Any | None:
|
||||||
|
try:
|
||||||
|
result: Any | None = self.client.get(key, None)
|
||||||
|
|
||||||
|
logger.debug(
|
||||||
|
"Got json cache key '%s'%s",
|
||||||
|
key,
|
||||||
|
"" if result is not None else " (not found)",
|
||||||
|
)
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error("Could not get json cache key '%s' due to: %s", key, exc)
|
||||||
|
return None
|
||||||
|
|
||||||
|
return None if result is None else string_to_json(result)
|
||||||
|
|
||||||
|
def get_string(self, key: str) -> str | None:
|
||||||
|
try:
|
||||||
|
result: str | None = self.client.get(key, None)
|
||||||
|
|
||||||
|
logger.debug(
|
||||||
|
"Got string cache key '%s'%s",
|
||||||
|
key,
|
||||||
|
"" if result is not None else " (not found)",
|
||||||
|
)
|
||||||
|
|
||||||
|
return result
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error("Could not get string cache key '%s' due to: %s", key, exc)
|
||||||
|
return None
|
||||||
|
|
||||||
|
# TODO Implement binary deserialization
|
||||||
|
def get_object(self, key: str) -> Any | None:
|
||||||
|
raise NotImplementedError()
|
||||||
|
|
||||||
|
def set_json(self, key: str, value: Any) -> None:
|
||||||
|
try:
|
||||||
|
self.client.set(key, json_to_string(value))
|
||||||
|
logger.debug("Set json cache key '%s'", key)
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error("Could not set json cache key '%s' due to: %s", key, exc)
|
||||||
|
return None
|
||||||
|
|
||||||
|
def set_string(self, key: str, value: str) -> None:
|
||||||
|
try:
|
||||||
|
self.client.set(key, value)
|
||||||
|
logger.debug("Set string cache key '%s'", key)
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error("Could not set string cache key '%s' due to: %s", key, exc)
|
||||||
|
return None
|
||||||
|
|
||||||
|
# TODO Implement binary serialization
|
||||||
|
def set_object(self, key: str, value: Any) -> None:
|
||||||
|
raise NotImplementedError()
|
||||||
|
|
||||||
|
def delete(self, key: str) -> None:
|
||||||
|
try:
|
||||||
|
self.client.delete(key)
|
||||||
|
logger.debug("Deleted cache key '%s'", key)
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error("Could not delete cache key '%s' due to: %s", key, exc)
|
89
classes/cache/holo_cache_redis.py
vendored
Normal file
89
classes/cache/holo_cache_redis.py
vendored
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
import logging
|
||||||
|
from logging import Logger
|
||||||
|
from typing import Dict, Any
|
||||||
|
|
||||||
|
from redis import Redis
|
||||||
|
|
||||||
|
from classes.cache import HoloCache
|
||||||
|
from modules.cache_utils import string_to_json, json_to_string
|
||||||
|
|
||||||
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
class HoloCacheRedis(HoloCache):
|
||||||
|
client: Redis
|
||||||
|
|
||||||
|
def __init__(self, client: Redis):
|
||||||
|
self.client = client
|
||||||
|
|
||||||
|
logger.info("Initialized Redis for caching")
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def from_config(cls, engine_config: Dict[str, Any]) -> Any:
|
||||||
|
if "uri" not in engine_config:
|
||||||
|
raise KeyError(
|
||||||
|
"Cache configuration is invalid. Please check if all keys are set (engine: memcached)"
|
||||||
|
)
|
||||||
|
|
||||||
|
return cls(Redis.from_url(engine_config["uri"]))
|
||||||
|
|
||||||
|
def get_json(self, key: str) -> Any | None:
|
||||||
|
try:
|
||||||
|
result: Any | None = self.client.get(key)
|
||||||
|
|
||||||
|
logger.debug(
|
||||||
|
"Got json cache key '%s'%s",
|
||||||
|
key,
|
||||||
|
"" if result is not None else " (not found)",
|
||||||
|
)
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error("Could not get json cache key '%s' due to: %s", key, exc)
|
||||||
|
return None
|
||||||
|
|
||||||
|
return None if result is None else string_to_json(result)
|
||||||
|
|
||||||
|
def get_string(self, key: str) -> str | None:
|
||||||
|
try:
|
||||||
|
result: str | None = self.client.get(key)
|
||||||
|
|
||||||
|
logger.debug(
|
||||||
|
"Got string cache key '%s'%s",
|
||||||
|
key,
|
||||||
|
"" if result is not None else " (not found)",
|
||||||
|
)
|
||||||
|
|
||||||
|
return result
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error("Could not get string cache key '%s' due to: %s", key, exc)
|
||||||
|
return None
|
||||||
|
|
||||||
|
# TODO Implement binary deserialization
|
||||||
|
def get_object(self, key: str) -> Any | None:
|
||||||
|
raise NotImplementedError()
|
||||||
|
|
||||||
|
def set_json(self, key: str, value: Any) -> None:
|
||||||
|
try:
|
||||||
|
self.client.set(key, json_to_string(value))
|
||||||
|
logger.debug("Set json cache key '%s'", key)
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error("Could not set json cache key '%s' due to: %s", key, exc)
|
||||||
|
return None
|
||||||
|
|
||||||
|
def set_string(self, key: str, value: str) -> None:
|
||||||
|
try:
|
||||||
|
self.client.set(key, value)
|
||||||
|
logger.debug("Set string cache key '%s'", key)
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error("Could not set string cache key '%s' due to: %s", key, exc)
|
||||||
|
return None
|
||||||
|
|
||||||
|
# TODO Implement binary serialization
|
||||||
|
def set_object(self, key: str, value: Any) -> None:
|
||||||
|
raise NotImplementedError()
|
||||||
|
|
||||||
|
def delete(self, key: str) -> None:
|
||||||
|
try:
|
||||||
|
self.client.delete(key)
|
||||||
|
logger.debug("Deleted cache key '%s'", key)
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error("Could not delete cache key '%s' due to: %s", key, exc)
|
22
classes/holo_bot.py
Normal file
22
classes/holo_bot.py
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
import logging
|
||||||
|
from logging import Logger
|
||||||
|
|
||||||
|
from libbot.pycord.classes import PycordBot
|
||||||
|
|
||||||
|
from classes.cache.holo_cache_memcached import HoloCacheMemcached
|
||||||
|
from classes.cache.holo_cache_redis import HoloCacheRedis
|
||||||
|
from modules.cache_manager import create_cache_client
|
||||||
|
|
||||||
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
class HoloBot(PycordBot):
|
||||||
|
cache: HoloCacheMemcached | HoloCacheRedis | None = None
|
||||||
|
|
||||||
|
def __init__(self, *args, **kwargs):
|
||||||
|
super().__init__(*args, **kwargs)
|
||||||
|
self._set_cache_engine()
|
||||||
|
|
||||||
|
def _set_cache_engine(self) -> None:
|
||||||
|
if "cache" in self.config and self.config["cache"]["type"] is not None:
|
||||||
|
self.cache = create_cache_client(self.config, self.config["cache"]["type"])
|
@@ -1,80 +1,118 @@
|
|||||||
import logging
|
import logging
|
||||||
from typing import Any, Union, Dict
|
from logging import Logger
|
||||||
|
from typing import Any, Dict
|
||||||
|
|
||||||
from bson import ObjectId
|
from bson import ObjectId
|
||||||
from discord import User, Member
|
from discord import User, Member
|
||||||
from libbot import config_get
|
from libbot.utils import config_get
|
||||||
|
from pymongo.results import InsertOneResult
|
||||||
|
from typing_extensions import deprecated
|
||||||
|
|
||||||
|
from classes.cache import HoloCache
|
||||||
from errors import UserNotFoundError
|
from errors import UserNotFoundError
|
||||||
from modules.database import col_warnings, sync_col_users, sync_col_warnings, col_users
|
from modules.database import col_warnings, col_users
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class HoloUser:
|
class HoloUser:
|
||||||
def __init__(self, user: Union[User, Member, int]) -> None:
|
def __init__(
|
||||||
|
self,
|
||||||
|
_id: ObjectId,
|
||||||
|
id: int,
|
||||||
|
custom_role: int | None,
|
||||||
|
custom_channel: int | None,
|
||||||
|
) -> None:
|
||||||
|
self._id: ObjectId = _id
|
||||||
|
|
||||||
|
self.id: int = id
|
||||||
|
self.custom_role: int | None = custom_role
|
||||||
|
self.custom_channel: int | None = custom_channel
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
async def from_user(
|
||||||
|
cls,
|
||||||
|
user: User | Member,
|
||||||
|
allow_creation: bool = True,
|
||||||
|
cache: HoloCache | None = None,
|
||||||
|
) -> "HoloUser":
|
||||||
"""Get an object that has a proper binding between Discord ID and database
|
"""Get an object that has a proper binding between Discord ID and database
|
||||||
|
|
||||||
### Args:
|
### Args:
|
||||||
* `user` (Union[User, Member, int]): Object from which ID can be extracted
|
* `user` (User | Member): Object from which an ID can be extracted
|
||||||
|
* `allow_creation` (bool, optional): Whether to allow creation of a new user record if none found. Defaults to True.
|
||||||
|
* `cache` (HoloCache | None, optional): Cache engine to get the cache from
|
||||||
|
|
||||||
### Raises:
|
### Raises:
|
||||||
* `UserNotFoundError`: User with such ID does not seem to exist in database
|
* `UserNotFoundError`: User with such ID does not seem to exist in database
|
||||||
"""
|
"""
|
||||||
|
if cache is not None:
|
||||||
|
cached_entry: Dict[str, Any] | None = cache.get_json(f"user_{user.id}")
|
||||||
|
|
||||||
self.id: int = user if not hasattr(user, "id") else user.id
|
if cached_entry is not None:
|
||||||
|
return cls(**cached_entry)
|
||||||
|
|
||||||
jav_user: Union[Dict[str, Any], None] = sync_col_users.find_one(
|
db_entry: Dict[str, Any] | None = await col_users.find_one({"id": user.id})
|
||||||
{"user": self.id}
|
|
||||||
)
|
|
||||||
|
|
||||||
if jav_user is None:
|
if db_entry is None:
|
||||||
raise UserNotFoundError(user=user, user_id=self.id)
|
if not allow_creation:
|
||||||
|
raise UserNotFoundError(user=user, user_id=user.id)
|
||||||
|
|
||||||
self.db_id: ObjectId = jav_user["_id"]
|
db_entry = HoloUser.get_defaults(user.id)
|
||||||
|
|
||||||
self.customrole: Union[int, None] = jav_user["customrole"]
|
insert_result: InsertOneResult = await col_users.insert_one(db_entry)
|
||||||
self.customchannel: Union[int, None] = jav_user["customchannel"]
|
|
||||||
self.warnings: int = self.warns()
|
|
||||||
|
|
||||||
def warns(self) -> int:
|
db_entry["_id"] = insert_result.inserted_id
|
||||||
|
|
||||||
|
if cache is not None:
|
||||||
|
cache.set_json(f"user_{user.id}", db_entry)
|
||||||
|
|
||||||
|
return cls(**db_entry)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
async def from_id(cls, user_id: int) -> "HoloUser":
|
||||||
|
return NotImplemented
|
||||||
|
|
||||||
|
# TODO Deprecate and remove warnings
|
||||||
|
@deprecated("Warnings are deprecated")
|
||||||
|
async def get_warnings(self) -> int:
|
||||||
"""Get number of warnings user has
|
"""Get number of warnings user has
|
||||||
|
|
||||||
### Returns:
|
### Returns:
|
||||||
* `int`: Number of warnings
|
* `int`: Number of warnings
|
||||||
"""
|
"""
|
||||||
warns: Union[Dict[str, Any], None] = sync_col_warnings.find_one(
|
warns: Dict[str, Any] | None = await col_warnings.find_one({"id": self.id})
|
||||||
{"user": self.id}
|
|
||||||
)
|
|
||||||
|
|
||||||
return 0 if warns is None else warns["warns"]
|
return 0 if warns is None else warns["warns"]
|
||||||
|
|
||||||
async def warn(self, count=1, reason: str = "Not provided") -> None:
|
# TODO Deprecate and remove warnings
|
||||||
|
@deprecated("Warnings are deprecated")
|
||||||
|
async def warn(self, count: int = 1, reason: str = "Reason not provided") -> None:
|
||||||
"""Warn and add count to warns number
|
"""Warn and add count to warns number
|
||||||
|
|
||||||
### Args:
|
### Args:
|
||||||
* `count` (int, optional): Count of warnings to be added. Defaults to 1.
|
* `count` (int, optional): Count of warnings to be added. Defaults to 1.
|
||||||
|
* `reason` (int, optional): Count of warnings to be added. Defaults to 1.
|
||||||
"""
|
"""
|
||||||
warns: Union[Dict[str, Any], None] = await col_warnings.find_one(
|
warns: Dict[str, Any] | None = await col_warnings.find_one({"id": self.id})
|
||||||
{"user": self.id}
|
|
||||||
)
|
|
||||||
|
|
||||||
if warns is not None:
|
if warns is not None:
|
||||||
await col_warnings.update_one(
|
await col_warnings.update_one(
|
||||||
{"_id": self.db_id},
|
{"_id": self._id},
|
||||||
{"$set": {"warns": warns["warns"] + count}},
|
{"$set": {"warns": warns["warns"] + count}},
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
await col_warnings.insert_one(document={"user": self.id, "warns": count})
|
await col_warnings.insert_one(document={"id": self.id, "warns": count})
|
||||||
|
|
||||||
logger.info("User %s was warned %s times due to: %s", self.id, count, reason)
|
logger.info("User %s was warned %s times due to: %s", self.id, count, reason)
|
||||||
|
|
||||||
async def set(self, key: str, value: Any) -> None:
|
async def _set(self, key: str, value: Any, cache: HoloCache | None = None) -> None:
|
||||||
"""Set attribute data and save it into database
|
"""Set attribute data and save it into the database
|
||||||
|
|
||||||
### Args:
|
### Args:
|
||||||
* `key` (str): Attribute to be changed
|
* `key` (str): Attribute to be changed
|
||||||
* `value` (Any): Value to set
|
* `value` (Any): Value to set
|
||||||
|
* `cache` (HoloCache | None, optional): Cache engine to write the update into
|
||||||
"""
|
"""
|
||||||
if not hasattr(self, key):
|
if not hasattr(self, key):
|
||||||
raise AttributeError()
|
raise AttributeError()
|
||||||
@@ -82,17 +120,109 @@ class HoloUser:
|
|||||||
setattr(self, key, value)
|
setattr(self, key, value)
|
||||||
|
|
||||||
await col_users.update_one(
|
await col_users.update_one(
|
||||||
{"_id": self.db_id}, {"$set": {key: value}}, upsert=True
|
{"_id": self._id}, {"$set": {key: value}}, upsert=True
|
||||||
)
|
)
|
||||||
|
|
||||||
logger.info("Set attribute %s of user %s to %s", key, self.id, value)
|
self._update_cache(cache)
|
||||||
|
|
||||||
|
logger.info("Set attribute '%s' of user %s to '%s'", key, self.id, value)
|
||||||
|
|
||||||
|
async def _remove(self, key: str, cache: HoloCache | None = None) -> None:
|
||||||
|
"""Remove attribute data and save it into the database
|
||||||
|
|
||||||
|
### Args:
|
||||||
|
* `key` (str): Attribute to be removed
|
||||||
|
* `cache` (HoloCache | None, optional): Cache engine to write the update into
|
||||||
|
"""
|
||||||
|
if not hasattr(self, key):
|
||||||
|
raise AttributeError()
|
||||||
|
|
||||||
|
default_value: Any = HoloUser.get_default_value(key)
|
||||||
|
|
||||||
|
setattr(self, key, default_value)
|
||||||
|
|
||||||
|
await col_users.update_one(
|
||||||
|
{"_id": self._id}, {"$set": {key: default_value}}, upsert=True
|
||||||
|
)
|
||||||
|
|
||||||
|
self._update_cache(cache)
|
||||||
|
|
||||||
|
logger.info("Removed attribute '%s' of user %s", key, self.id)
|
||||||
|
|
||||||
|
def _get_cache_key(self) -> str:
|
||||||
|
return f"user_{self.id}"
|
||||||
|
|
||||||
|
def _update_cache(self, cache: HoloCache | None = None) -> None:
|
||||||
|
if cache is None:
|
||||||
|
return
|
||||||
|
|
||||||
|
user_dict: Dict[str, Any] = self._to_dict()
|
||||||
|
|
||||||
|
if user_dict is not None:
|
||||||
|
cache.set_json(self._get_cache_key(), user_dict)
|
||||||
|
else:
|
||||||
|
self._delete_cache(cache)
|
||||||
|
|
||||||
|
def _delete_cache(self, cache: HoloCache | None = None) -> None:
|
||||||
|
if cache is None:
|
||||||
|
return
|
||||||
|
|
||||||
|
cache.delete(self._get_cache_key())
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
async def is_moderator(member: Union[User, Member]) -> bool:
|
def get_defaults(user_id: int | None = None) -> Dict[str, Any]:
|
||||||
|
return {
|
||||||
|
"id": user_id,
|
||||||
|
"custom_role": None,
|
||||||
|
"custom_channel": None,
|
||||||
|
}
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def get_default_value(key: str) -> Any:
|
||||||
|
if key not in HoloUser.get_defaults():
|
||||||
|
raise KeyError(f"There's no default value for key '{key}' in HoloUser")
|
||||||
|
|
||||||
|
return HoloUser.get_defaults()[key]
|
||||||
|
|
||||||
|
def _to_dict(self) -> Dict[str, Any]:
|
||||||
|
return {
|
||||||
|
"_id": self._id,
|
||||||
|
"id": self.id,
|
||||||
|
"custom_role": self.custom_role,
|
||||||
|
"custom_channel": self.custom_channel,
|
||||||
|
}
|
||||||
|
|
||||||
|
async def set_custom_channel(
|
||||||
|
self, channel_id: int, cache: HoloCache | None = None
|
||||||
|
) -> None:
|
||||||
|
await self._set("custom_channel", channel_id, cache=cache)
|
||||||
|
|
||||||
|
async def set_custom_role(
|
||||||
|
self, role_id: int, cache: HoloCache | None = None
|
||||||
|
) -> None:
|
||||||
|
await self._set("custom_role", role_id, cache=cache)
|
||||||
|
|
||||||
|
async def remove_custom_channel(self, cache: HoloCache | None = None) -> None:
|
||||||
|
await self._remove("custom_channel", cache=cache)
|
||||||
|
|
||||||
|
async def remove_custom_role(self, cache: HoloCache | None = None) -> None:
|
||||||
|
await self._remove("custom_role", cache=cache)
|
||||||
|
|
||||||
|
async def purge(self, cache: HoloCache | None = None) -> None:
|
||||||
|
"""Completely remove user data from database. Will not remove transactions logs and warnings.
|
||||||
|
|
||||||
|
### Args:
|
||||||
|
* `cache` (HoloCache | None, optional): Cache engine to write the update into
|
||||||
|
"""
|
||||||
|
await col_users.delete_one({"_id": self._id})
|
||||||
|
self._delete_cache(cache)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
async def is_moderator(member: User | Member) -> bool:
|
||||||
"""Check if user is moderator or council member
|
"""Check if user is moderator or council member
|
||||||
|
|
||||||
### Args:
|
### Args:
|
||||||
* `member` (Union[User, Member]): Member object
|
* `member` (User | Member): Member object
|
||||||
|
|
||||||
### Returns:
|
### Returns:
|
||||||
`bool`: `True` if member is a moderator or member of council and `False` if not
|
`bool`: `True` if member is a moderator or member of council and `False` if not
|
||||||
@@ -100,8 +230,8 @@ class HoloUser:
|
|||||||
if isinstance(member, User):
|
if isinstance(member, User):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
moderator_role: Union[int, None] = await config_get("moderators", "roles")
|
moderator_role: int | None = await config_get("moderators", "roles")
|
||||||
council_role: Union[int, None] = await config_get("council", "roles")
|
council_role: int | None = await config_get("council", "roles")
|
||||||
|
|
||||||
for role in member.roles:
|
for role in member.roles:
|
||||||
if role.id in (moderator_role, council_role):
|
if role.id in (moderator_role, council_role):
|
||||||
@@ -110,11 +240,11 @@ class HoloUser:
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
async def is_council(member: Union[User, Member]) -> bool:
|
async def is_council(member: User | Member) -> bool:
|
||||||
"""Check if user is a member of council
|
"""Check if user is a member of council
|
||||||
|
|
||||||
### Args:
|
### Args:
|
||||||
* `member` (Union[User, Member]): Member object
|
* `member` (User | Member): Member object
|
||||||
|
|
||||||
### Returns:
|
### Returns:
|
||||||
`bool`: `True` if member is a member of council and `False` if not
|
`bool`: `True` if member is a member of council and `False` if not
|
||||||
@@ -129,8 +259,3 @@ class HoloUser:
|
|||||||
return True
|
return True
|
||||||
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# def purge(self) -> None:
|
|
||||||
# """Completely remove data from database. Will not remove transactions logs and warnings."""
|
|
||||||
# col_users.delete_one(filter={"_id": self.db_id})
|
|
||||||
# self.unauthorize()
|
|
||||||
|
118
cogs/admin.py
118
cogs/admin.py
@@ -1,6 +1,6 @@
|
|||||||
import logging
|
import logging
|
||||||
import sys
|
import sys
|
||||||
from typing import Union
|
from logging import Logger
|
||||||
|
|
||||||
from discord import (
|
from discord import (
|
||||||
ApplicationContext,
|
ApplicationContext,
|
||||||
@@ -13,111 +13,27 @@ from discord import (
|
|||||||
)
|
)
|
||||||
from discord import utils as ds_utils
|
from discord import utils as ds_utils
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
from libbot import config_get
|
from libbot.utils import config_get
|
||||||
from libbot.pycord.classes import PycordBot
|
|
||||||
from libbot.sync import config_get as sync_config_get
|
|
||||||
|
|
||||||
|
from classes.holo_bot import HoloBot
|
||||||
from enums import Color
|
from enums import Color
|
||||||
from modules.scheduler import scheduler
|
from modules.scheduler import scheduler
|
||||||
from modules.utils_sync import guild_name
|
from modules.utils_sync import guild_name
|
||||||
from modules.waifu_pics import waifu_pics
|
from modules.waifu_pics import waifu_pics
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class Admin(commands.Cog):
|
class Admin(commands.Cog):
|
||||||
"""Cog with utility commands for admins."""
|
"""Cog with utility commands for admins."""
|
||||||
|
|
||||||
def __init__(self, client: PycordBot):
|
def __init__(self, client: HoloBot):
|
||||||
self.client: PycordBot = client
|
self.client: HoloBot = client
|
||||||
|
|
||||||
# Disabled because warning functionality is temporarily not needed
|
|
||||||
# @slash_command(
|
|
||||||
# name="warning",
|
|
||||||
# description="Попередити юзера про порушення правил",
|
|
||||||
# guild_ids=[config_get_sync("guild")],
|
|
||||||
# )
|
|
||||||
# @option("user", description="Користувач")
|
|
||||||
# @option("reason", description="Причина")
|
|
||||||
# async def warn_cmd(
|
|
||||||
# self,
|
|
||||||
# ctx: ApplicationContext,
|
|
||||||
# user: User,
|
|
||||||
# reason: str = "Не вказана",
|
|
||||||
# ):
|
|
||||||
# logging.info(f"User {ctx.user.id} warned {user.id} for {reason}")
|
|
||||||
# await ctx.defer()
|
|
||||||
# jav_user = HoloUser(user)
|
|
||||||
# if ctx.user.id in await config_get("admins"):
|
|
||||||
# logging.info(
|
|
||||||
# f"Moderator {guild_name(ctx.user)} warned {guild_name(user)} for {reason} (has {jav_user.warnings} warns)"
|
|
||||||
# )
|
|
||||||
# if jav_user.warnings >= 5:
|
|
||||||
# logging.info(
|
|
||||||
# f"User {guild_name(user)} was banned due to a big amount of warns ({jav_user.warnings})"
|
|
||||||
# )
|
|
||||||
# await user.send(
|
|
||||||
# embed=Embed(
|
|
||||||
# title="Перманентне блокування",
|
|
||||||
# description=f"Вас було заблоковано за неодноразове порушення правил сервера.",
|
|
||||||
# color=Color.fail,
|
|
||||||
# )
|
|
||||||
# )
|
|
||||||
# await user.ban(reason=reason)
|
|
||||||
# elif jav_user.warnings >= 2:
|
|
||||||
# logging.info(
|
|
||||||
# f"User {guild_name(user)} was muted due to a big amount of warns ({jav_user.warnings})"
|
|
||||||
# )
|
|
||||||
# jav_user.warn(reason=reason)
|
|
||||||
# await user.send(
|
|
||||||
# embed=Embed(
|
|
||||||
# title="Тимчасове блокування",
|
|
||||||
# description=f"Причина: `{reason}`\n\nНа вашому рахунку вже {jav_user.warnings} попереджень. Вас було тимчасово заблоковано на **1 годину**.\n\nЯкщо Ви продовжите порушувати правила сервера – згодом Вас заблокують.",
|
|
||||||
# color=0xDED56B,
|
|
||||||
# )
|
|
||||||
# )
|
|
||||||
# await user.timeout_for(timedelta(hours=1), reason=reason)
|
|
||||||
# else:
|
|
||||||
# jav_user.warn()
|
|
||||||
|
|
||||||
# await ctx.respond(
|
|
||||||
# embed=Embed(
|
|
||||||
# title="Попередження",
|
|
||||||
# description=f"{user.mention} Будь ласка, не порушуйте правила. Ви отримали попередження з причини `{reason}`.\n\nЯкщо Ви продовжите порушувати правила – це може призвести до блокування в спільноті.",
|
|
||||||
# color=0xDED56B,
|
|
||||||
# )
|
|
||||||
# )
|
|
||||||
# else:
|
|
||||||
# logging.warning(
|
|
||||||
# f"User {guild_name(ctx.user)} tried to use /warn but permission denied"
|
|
||||||
# )
|
|
||||||
# await ctx.respond(
|
|
||||||
# embed=Embed(
|
|
||||||
# title="Відмовлено в доступі",
|
|
||||||
# description="Здається, це команда лише для модераторів",
|
|
||||||
# color=Color.fail,
|
|
||||||
# )
|
|
||||||
# )
|
|
||||||
# mod_role = ds_utils.get(
|
|
||||||
# ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
|
||||||
# )
|
|
||||||
# admin_chan = ds_utils.get(
|
|
||||||
# ctx.user.guild.channels,
|
|
||||||
# id=await config_get("adminchat", "channels", "text"),
|
|
||||||
# )
|
|
||||||
# await admin_chan.send(
|
|
||||||
# content=f"{mod_role.mention}",
|
|
||||||
# embed=Embed(
|
|
||||||
# title="Неавторизований запит",
|
|
||||||
# description=f"Користувач {ctx.user.mention} запитав у каналі {ctx.channel.mention} команду, до якої не повинен мати доступу/бачити.",
|
|
||||||
# color=Color.fail,
|
|
||||||
# ),
|
|
||||||
# )
|
|
||||||
|
|
||||||
@slash_command(
|
@slash_command(
|
||||||
name="clear",
|
name="clear",
|
||||||
description="Видалити деяку кількість повідомлень в каналі",
|
description="Видалити деяку кількість повідомлень в каналі",
|
||||||
guild_ids=[sync_config_get("guild")],
|
guild_ids=[config_get("guild")],
|
||||||
)
|
)
|
||||||
@option("amount", description="Кількість")
|
@option("amount", description="Кількість")
|
||||||
@option("user", description="Користувач", default=None)
|
@option("user", description="Користувач", default=None)
|
||||||
@@ -127,6 +43,10 @@ class Admin(commands.Cog):
|
|||||||
amount: int,
|
amount: int,
|
||||||
user: User,
|
user: User,
|
||||||
) -> None:
|
) -> None:
|
||||||
|
"""Command /clear <amount> [<user>]
|
||||||
|
|
||||||
|
Removes last <amount> messages in the current channel. Optionally from a specific user.
|
||||||
|
"""
|
||||||
if ctx.user.id in self.client.owner_ids:
|
if ctx.user.id in self.client.owner_ids:
|
||||||
logging.info(
|
logging.info(
|
||||||
"User %s removed %s message(s) in %s",
|
"User %s removed %s message(s) in %s",
|
||||||
@@ -161,10 +81,10 @@ class Admin(commands.Cog):
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
mod_role: Union[Role, None] = ds_utils.get(
|
mod_role: Role | None = ds_utils.get(
|
||||||
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
||||||
)
|
)
|
||||||
admin_chan: Union[TextChannel, None] = ds_utils.get(
|
admin_chan: TextChannel | None = ds_utils.get(
|
||||||
ctx.user.guild.channels,
|
ctx.user.guild.channels,
|
||||||
id=await config_get("adminchat", "channels", "text"),
|
id=await config_get("adminchat", "channels", "text"),
|
||||||
)
|
)
|
||||||
@@ -182,9 +102,13 @@ class Admin(commands.Cog):
|
|||||||
@slash_command(
|
@slash_command(
|
||||||
name="reboot",
|
name="reboot",
|
||||||
description="Перезапустити бота",
|
description="Перезапустити бота",
|
||||||
guild_ids=[sync_config_get("guild")],
|
guild_ids=[config_get("guild")],
|
||||||
)
|
)
|
||||||
async def reboot_cmd(self, ctx: ApplicationContext) -> None:
|
async def reboot_cmd(self, ctx: ApplicationContext) -> None:
|
||||||
|
"""Command /reboot
|
||||||
|
|
||||||
|
Stops the bot. Is called "reboot" because it's assumed that the bot has automatic restart.
|
||||||
|
"""
|
||||||
await ctx.defer(ephemeral=True)
|
await ctx.defer(ephemeral=True)
|
||||||
|
|
||||||
if ctx.user.id in self.client.owner_ids:
|
if ctx.user.id in self.client.owner_ids:
|
||||||
@@ -217,10 +141,10 @@ class Admin(commands.Cog):
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
mod_role: Union[Role, None] = ds_utils.get(
|
mod_role: Role | None = ds_utils.get(
|
||||||
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
||||||
)
|
)
|
||||||
admin_chan: Union[TextChannel, None] = ds_utils.get(
|
admin_chan: TextChannel | None = ds_utils.get(
|
||||||
ctx.user.guild.channels,
|
ctx.user.guild.channels,
|
||||||
id=await config_get("adminchat", "channels", "text"),
|
id=await config_get("adminchat", "channels", "text"),
|
||||||
)
|
)
|
||||||
@@ -236,5 +160,5 @@ class Admin(commands.Cog):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def setup(client: PycordBot) -> None:
|
def setup(client: HoloBot) -> None:
|
||||||
client.add_cog(Admin(client))
|
client.add_cog(Admin(client))
|
||||||
|
@@ -1,26 +1,29 @@
|
|||||||
import logging
|
import logging
|
||||||
|
from logging import Logger
|
||||||
from typing import Dict, List, Any
|
from typing import Dict, List, Any
|
||||||
|
|
||||||
from discord import Cog, Message
|
from discord import Cog, Message
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
from libbot.pycord.classes import PycordBot
|
|
||||||
|
|
||||||
|
from classes.holo_bot import HoloBot
|
||||||
from modules.database import col_analytics
|
from modules.database import col_analytics
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class Analytics(commands.Cog):
|
class Analytics(commands.Cog):
|
||||||
def __init__(self, client: PycordBot):
|
def __init__(self, client: HoloBot):
|
||||||
self.client: PycordBot = client
|
self.client: HoloBot = client
|
||||||
|
|
||||||
@Cog.listener()
|
@Cog.listener()
|
||||||
async def on_message(self, message: Message) -> None:
|
async def on_message(self, message: Message) -> None:
|
||||||
|
"""Listener that collects analytical data (stickers, attachments, messages)."""
|
||||||
if (
|
if (
|
||||||
(message.author != self.client.user)
|
(message.author != self.client.user)
|
||||||
and (message.author.bot is False)
|
and (message.author.bot is False)
|
||||||
and (message.author.system is False)
|
and (message.author.system is False)
|
||||||
):
|
):
|
||||||
|
# Handle stickers
|
||||||
stickers: List[Dict[str, Any]] = []
|
stickers: List[Dict[str, Any]] = []
|
||||||
|
|
||||||
for sticker in message.stickers:
|
for sticker in message.stickers:
|
||||||
@@ -33,6 +36,7 @@ class Analytics(commands.Cog):
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Handle attachments
|
||||||
attachments: List[Dict[str, Any]] = []
|
attachments: List[Dict[str, Any]] = []
|
||||||
|
|
||||||
for attachment in message.attachments:
|
for attachment in message.attachments:
|
||||||
@@ -49,9 +53,10 @@ class Analytics(commands.Cog):
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Insert entry into the database
|
||||||
await col_analytics.insert_one(
|
await col_analytics.insert_one(
|
||||||
{
|
{
|
||||||
"user": message.author.id,
|
"user_id": message.author.id,
|
||||||
"channel": message.channel.id,
|
"channel": message.channel.id,
|
||||||
"content": message.content,
|
"content": message.content,
|
||||||
"stickers": stickers,
|
"stickers": stickers,
|
||||||
@@ -60,5 +65,5 @@ class Analytics(commands.Cog):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def setup(client: PycordBot) -> None:
|
def setup(client: HoloBot) -> None:
|
||||||
client.add_cog(Analytics(client))
|
client.add_cog(Analytics(client))
|
||||||
|
@@ -1,31 +1,31 @@
|
|||||||
import logging
|
import logging
|
||||||
from typing import Any, Dict, Union
|
from logging import Logger
|
||||||
|
from typing import Any, Dict
|
||||||
|
|
||||||
from discord import ApplicationContext, Embed, option, TextChannel, Role
|
from discord import ApplicationContext, Embed, option, TextChannel, Role
|
||||||
from discord import utils as ds_utils
|
from discord import utils as ds_utils
|
||||||
from discord.abc import GuildChannel
|
from discord.abc import GuildChannel
|
||||||
from discord.commands import SlashCommandGroup
|
from discord.commands import SlashCommandGroup
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
from libbot import config_get
|
from libbot.utils import config_get
|
||||||
from libbot.pycord.classes import PycordBot
|
|
||||||
from libbot.sync import config_get as sync_config_get
|
|
||||||
|
|
||||||
|
from classes.holo_bot import HoloBot
|
||||||
from classes.holo_user import HoloUser
|
from classes.holo_user import HoloUser
|
||||||
from enums import Color
|
from enums import Color
|
||||||
from modules.database import col_users
|
from modules.database import col_users
|
||||||
from modules.utils_sync import guild_name
|
from modules.utils_sync import guild_name
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class CustomChannels(commands.Cog):
|
class CustomChannels(commands.Cog):
|
||||||
def __init__(self, client: PycordBot):
|
def __init__(self, client: HoloBot):
|
||||||
self.client: PycordBot = client
|
self.client: HoloBot = client
|
||||||
|
|
||||||
@commands.Cog.listener()
|
@commands.Cog.listener()
|
||||||
async def on_guild_channel_delete(self, channel: GuildChannel) -> None:
|
async def on_guild_channel_delete(self, channel: GuildChannel) -> None:
|
||||||
await col_users.find_one_and_update(
|
await col_users.find_one_and_update(
|
||||||
{"customchannel": channel.id}, {"$set": {"customchannel": None}}
|
{"custom_channel": channel.id}, {"$set": {"custom_channel": None}}
|
||||||
)
|
)
|
||||||
|
|
||||||
custom_channel_group: SlashCommandGroup = SlashCommandGroup(
|
custom_channel_group: SlashCommandGroup = SlashCommandGroup(
|
||||||
@@ -35,7 +35,7 @@ class CustomChannels(commands.Cog):
|
|||||||
@custom_channel_group.command(
|
@custom_channel_group.command(
|
||||||
name="get",
|
name="get",
|
||||||
description="Отримати персональний текстовий канал",
|
description="Отримати персональний текстовий канал",
|
||||||
guild_ids=[sync_config_get("guild")],
|
guild_ids=[config_get("guild")],
|
||||||
)
|
)
|
||||||
@option("name", description="Назва каналу")
|
@option("name", description="Назва каналу")
|
||||||
@option("reactions", description="Дозволити реакції")
|
@option("reactions", description="Дозволити реакції")
|
||||||
@@ -43,7 +43,13 @@ class CustomChannels(commands.Cog):
|
|||||||
async def custom_channel_get_cmd(
|
async def custom_channel_get_cmd(
|
||||||
self, ctx: ApplicationContext, name: str, reactions: bool, threads: bool
|
self, ctx: ApplicationContext, name: str, reactions: bool, threads: bool
|
||||||
) -> None:
|
) -> None:
|
||||||
holo_user_ctx: HoloUser = HoloUser(ctx.user)
|
"""Command /customchannel get <name> <reactions> <threads>
|
||||||
|
|
||||||
|
Command to create a custom channel for a user.
|
||||||
|
"""
|
||||||
|
holo_user_ctx: HoloUser = await HoloUser.from_user(
|
||||||
|
ctx.user, cache=self.client.cache
|
||||||
|
)
|
||||||
|
|
||||||
# Return if the user is using the command outside of a guild
|
# Return if the user is using the command outside of a guild
|
||||||
if not hasattr(ctx.author, "guild"):
|
if not hasattr(ctx.author, "guild"):
|
||||||
@@ -58,7 +64,7 @@ class CustomChannels(commands.Cog):
|
|||||||
return
|
return
|
||||||
|
|
||||||
# Return if the user already has a custom channel
|
# Return if the user already has a custom channel
|
||||||
if holo_user_ctx.customchannel is not None:
|
if holo_user_ctx.custom_channel is not None:
|
||||||
await ctx.defer(ephemeral=True)
|
await ctx.defer(ephemeral=True)
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
embed=Embed(
|
embed=Embed(
|
||||||
@@ -76,7 +82,7 @@ class CustomChannels(commands.Cog):
|
|||||||
reason=f"Користувач {guild_name(ctx.user)} отримав власний приватний канал",
|
reason=f"Користувач {guild_name(ctx.user)} отримав власний приватний канал",
|
||||||
category=ds_utils.get(
|
category=ds_utils.get(
|
||||||
ctx.author.guild.categories,
|
ctx.author.guild.categories,
|
||||||
id=await config_get("customchannels", "categories"),
|
id=await config_get("custom_channels", "categories"),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -96,7 +102,9 @@ class CustomChannels(commands.Cog):
|
|||||||
manage_channels=True,
|
manage_channels=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
await holo_user_ctx.set("customchannel", created_channel.id)
|
await holo_user_ctx.set_custom_channel(
|
||||||
|
created_channel.id, cache=self.client.cache
|
||||||
|
)
|
||||||
|
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
embed=Embed(
|
embed=Embed(
|
||||||
@@ -109,9 +117,7 @@ class CustomChannels(commands.Cog):
|
|||||||
bots: Dict[str, Any] = await config_get("bots")
|
bots: Dict[str, Any] = await config_get("bots")
|
||||||
|
|
||||||
for bot in bots:
|
for bot in bots:
|
||||||
role: Union[Role, None] = ds_utils.get(
|
role: Role | None = ds_utils.get(ctx.user.guild.roles, id=bots[bot]["role"])
|
||||||
ctx.user.guild.roles, id=bots[bot]["role"]
|
|
||||||
)
|
|
||||||
|
|
||||||
if role is not None:
|
if role is not None:
|
||||||
await created_channel.set_permissions(
|
await created_channel.set_permissions(
|
||||||
@@ -122,7 +128,7 @@ class CustomChannels(commands.Cog):
|
|||||||
@custom_channel_group.command(
|
@custom_channel_group.command(
|
||||||
name="edit",
|
name="edit",
|
||||||
description="Змінити параметри особистого каналу",
|
description="Змінити параметри особистого каналу",
|
||||||
guild_ids=[sync_config_get("guild")],
|
guild_ids=[config_get("guild")],
|
||||||
)
|
)
|
||||||
@option("name", description="Назва каналу")
|
@option("name", description="Назва каналу")
|
||||||
@option("reactions", description="Дозволити реакції")
|
@option("reactions", description="Дозволити реакції")
|
||||||
@@ -130,10 +136,16 @@ class CustomChannels(commands.Cog):
|
|||||||
async def custom_channel_edit_cmd(
|
async def custom_channel_edit_cmd(
|
||||||
self, ctx: ApplicationContext, name: str, reactions: bool, threads: bool
|
self, ctx: ApplicationContext, name: str, reactions: bool, threads: bool
|
||||||
) -> None:
|
) -> None:
|
||||||
holo_user_ctx: HoloUser = HoloUser(ctx.user)
|
"""Command /customchannel edit <name> <reactions> <threads>
|
||||||
|
|
||||||
custom_channel: Union[TextChannel, None] = ds_utils.get(
|
Command to change properties of a custom channel.
|
||||||
ctx.guild.channels, id=holo_user_ctx.customchannel
|
"""
|
||||||
|
holo_user_ctx: HoloUser = await HoloUser.from_user(
|
||||||
|
ctx.user, cache=self.client.cache
|
||||||
|
)
|
||||||
|
|
||||||
|
custom_channel: TextChannel | None = ds_utils.get(
|
||||||
|
ctx.guild.channels, id=holo_user_ctx.custom_channel
|
||||||
)
|
)
|
||||||
|
|
||||||
# Return if the channel was not found
|
# Return if the channel was not found
|
||||||
@@ -167,16 +179,21 @@ class CustomChannels(commands.Cog):
|
|||||||
@custom_channel_group.command(
|
@custom_channel_group.command(
|
||||||
name="remove",
|
name="remove",
|
||||||
description="Відібрати канал, знищуючи його, та частково повернути кошти",
|
description="Відібрати канал, знищуючи його, та частково повернути кошти",
|
||||||
guild_ids=[sync_config_get("guild")],
|
guild_ids=[config_get("guild")],
|
||||||
)
|
)
|
||||||
@option("confirm", description="Підтвердження операції")
|
@option("confirm", description="Підтвердження операції")
|
||||||
async def custom_channel_remove_cmd(
|
async def custom_channel_remove_cmd(
|
||||||
self, ctx: ApplicationContext, confirm: bool = False
|
self, ctx: ApplicationContext, confirm: bool = False
|
||||||
) -> None:
|
) -> None:
|
||||||
holo_user_ctx: HoloUser = HoloUser(ctx.user)
|
"""Command /customchannel remove [<confirm>]
|
||||||
|
|
||||||
|
Command to remove a custom channel. Requires additional confirmation."""
|
||||||
|
holo_user_ctx: HoloUser = await HoloUser.from_user(
|
||||||
|
ctx.user, cache=self.client.cache
|
||||||
|
)
|
||||||
|
|
||||||
# Return if the user does not have a custom channel
|
# Return if the user does not have a custom channel
|
||||||
if holo_user_ctx.customchannel is None:
|
if holo_user_ctx.custom_channel is None:
|
||||||
await ctx.defer(ephemeral=True)
|
await ctx.defer(ephemeral=True)
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
embed=Embed(
|
embed=Embed(
|
||||||
@@ -189,8 +206,8 @@ class CustomChannels(commands.Cog):
|
|||||||
|
|
||||||
await ctx.defer()
|
await ctx.defer()
|
||||||
|
|
||||||
custom_channel: Union[TextChannel, None] = ds_utils.get(
|
custom_channel: TextChannel | None = ds_utils.get(
|
||||||
ctx.guild.channels, id=holo_user_ctx.customchannel
|
ctx.guild.channels, id=holo_user_ctx.custom_channel
|
||||||
)
|
)
|
||||||
|
|
||||||
# Return if the channel was not found
|
# Return if the channel was not found
|
||||||
@@ -202,7 +219,7 @@ class CustomChannels(commands.Cog):
|
|||||||
color=Color.FAIL,
|
color=Color.FAIL,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
await holo_user_ctx.set("customchannel", None)
|
await holo_user_ctx.remove_custom_channel(cache=self.client.cache)
|
||||||
return
|
return
|
||||||
|
|
||||||
# Return if the confirmation is missing
|
# Return if the confirmation is missing
|
||||||
@@ -218,7 +235,7 @@ class CustomChannels(commands.Cog):
|
|||||||
|
|
||||||
await custom_channel.delete(reason="Власник запросив видалення")
|
await custom_channel.delete(reason="Власник запросив видалення")
|
||||||
|
|
||||||
await holo_user_ctx.set("customchannel", None)
|
await holo_user_ctx.remove_custom_channel(cache=self.client.cache)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
@@ -234,5 +251,5 @@ class CustomChannels(commands.Cog):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def setup(client: PycordBot) -> None:
|
def setup(client: HoloBot) -> None:
|
||||||
client.add_cog(CustomChannels(client))
|
client.add_cog(CustomChannels(client))
|
||||||
|
60
cogs/data.py
60
cogs/data.py
@@ -1,41 +1,42 @@
|
|||||||
import logging
|
import logging
|
||||||
|
from logging import Logger
|
||||||
from os import makedirs
|
from os import makedirs
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Union, List, Dict, Any
|
from typing import List, Dict, Any
|
||||||
from uuid import uuid4
|
from uuid import uuid4
|
||||||
|
|
||||||
from discord import ApplicationContext, Embed, File, option, Role, TextChannel
|
from discord import ApplicationContext, Embed, File, option, Role, TextChannel
|
||||||
from discord import utils as ds_utils
|
from discord import utils as ds_utils
|
||||||
from discord.commands import SlashCommandGroup
|
from discord.commands import SlashCommandGroup
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
from libbot import config_get
|
from libbot.utils import config_get, json_write
|
||||||
from libbot.pycord.classes import PycordBot
|
|
||||||
from libbot.sync import config_get as sync_config_get
|
|
||||||
from libbot.sync import json_write as sync_json_write
|
|
||||||
|
|
||||||
|
from classes.holo_bot import HoloBot
|
||||||
from classes.holo_user import HoloUser
|
from classes.holo_user import HoloUser
|
||||||
from enums import Color
|
from enums import Color
|
||||||
from modules.database import col_users
|
|
||||||
from modules.utils_sync import guild_name
|
from modules.utils_sync import guild_name
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class Data(commands.Cog):
|
class Data(commands.Cog):
|
||||||
def __init__(self, client: PycordBot):
|
def __init__(self, client: HoloBot):
|
||||||
self.client: PycordBot = client
|
self.client: HoloBot = client
|
||||||
|
|
||||||
data: SlashCommandGroup = SlashCommandGroup("data", "Керування даними користувачів")
|
data: SlashCommandGroup = SlashCommandGroup("data", "Керування даними користувачів")
|
||||||
|
|
||||||
@data.command(
|
@data.command(
|
||||||
name="export",
|
name="export",
|
||||||
description="Експортувати дані",
|
description="Експортувати дані",
|
||||||
guild_ids=[sync_config_get("guild")],
|
guild_ids=[config_get("guild")],
|
||||||
)
|
)
|
||||||
@option(
|
@option(
|
||||||
"kind", description="Тип даних, які треба експортувати", choices=["Користувачі"]
|
"kind", description="Тип даних, які треба експортувати", choices=["Користувачі"]
|
||||||
)
|
)
|
||||||
async def data_export_cmd(self, ctx: ApplicationContext, kind: str) -> None:
|
async def data_export_cmd(self, ctx: ApplicationContext, kind: str) -> None:
|
||||||
|
"""Command /data export <kind>
|
||||||
|
|
||||||
|
Command to export specific kind of data."""
|
||||||
await ctx.defer()
|
await ctx.defer()
|
||||||
|
|
||||||
# Return if the user is not an owner and not in the council
|
# Return if the user is not an owner and not in the council
|
||||||
@@ -55,10 +56,10 @@ class Data(commands.Cog):
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
mod_role: Union[Role, None] = ds_utils.get(
|
mod_role: Role | None = ds_utils.get(
|
||||||
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
||||||
)
|
)
|
||||||
admin_chan: Union[TextChannel, None] = ds_utils.get(
|
admin_chan: TextChannel | None = ds_utils.get(
|
||||||
ctx.user.guild.channels,
|
ctx.user.guild.channels,
|
||||||
id=await config_get("adminchat", "channels", "text"),
|
id=await config_get("adminchat", "channels", "text"),
|
||||||
)
|
)
|
||||||
@@ -88,24 +89,32 @@ class Data(commands.Cog):
|
|||||||
{
|
{
|
||||||
"id": member.id,
|
"id": member.id,
|
||||||
"nick": member.nick,
|
"nick": member.nick,
|
||||||
"username": f"{member.name}#{member.discriminator}",
|
"username": member.name,
|
||||||
"bot": member.bot,
|
"bot": member.bot,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
sync_json_write(users, Path(f"tmp/{uuid}"))
|
# Temporary file must be written synchronously,
|
||||||
|
# otherwise it will not be there when ctx.respond() is be called
|
||||||
|
json_write(users, Path(f"tmp/{uuid}"))
|
||||||
|
|
||||||
await ctx.respond(file=File(Path(f"tmp/{uuid}"), filename="users.json"))
|
await ctx.respond(file=File(Path(f"tmp/{uuid}"), filename="users.json"))
|
||||||
|
|
||||||
|
# TODO Deprecate this command
|
||||||
@data.command(
|
@data.command(
|
||||||
name="migrate",
|
name="migrate",
|
||||||
description="Мігрувати всіх користувачів до бази",
|
description="Мігрувати всіх користувачів до бази",
|
||||||
guild_ids=[sync_config_get("guild")],
|
guild_ids=[config_get("guild")],
|
||||||
)
|
)
|
||||||
@option(
|
@option(
|
||||||
"kind", description="Тип даних, які треба експортувати", choices=["Користувачі"]
|
"kind", description="Тип даних, які треба експортувати", choices=["Користувачі"]
|
||||||
)
|
)
|
||||||
async def data_migrate_cmd(self, ctx: ApplicationContext, kind: str) -> None:
|
async def data_migrate_cmd(self, ctx: ApplicationContext, kind: str) -> None:
|
||||||
|
"""Command /migrate <kind>
|
||||||
|
|
||||||
|
Command to migrate specific kind of data.
|
||||||
|
|
||||||
|
Migration of users in this case means creation of their DB entries."""
|
||||||
await ctx.defer()
|
await ctx.defer()
|
||||||
|
|
||||||
# Return if the user is not an owner and not in the council
|
# Return if the user is not an owner and not in the council
|
||||||
@@ -125,10 +134,10 @@ class Data(commands.Cog):
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
mod_role: Union[Role, None] = ds_utils.get(
|
mod_role: Role | None = ds_utils.get(
|
||||||
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
ctx.user.guild.roles, id=await config_get("moderators", "roles")
|
||||||
)
|
)
|
||||||
admin_chan: Union[TextChannel, None] = ds_utils.get(
|
admin_chan: TextChannel | None = ds_utils.get(
|
||||||
ctx.user.guild.channels,
|
ctx.user.guild.channels,
|
||||||
id=await config_get("adminchat", "channels", "text"),
|
id=await config_get("adminchat", "channels", "text"),
|
||||||
)
|
)
|
||||||
@@ -155,20 +164,7 @@ class Data(commands.Cog):
|
|||||||
if member.bot:
|
if member.bot:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if (await col_users.find_one({"user": member.id})) is None:
|
await HoloUser.from_user(member, cache=self.client.cache)
|
||||||
user: Dict[str, Any] = {}
|
|
||||||
defaults: Dict[str, Any] = await config_get("user", "defaults")
|
|
||||||
|
|
||||||
user["user"] = member.id
|
|
||||||
|
|
||||||
for key in defaults:
|
|
||||||
user[key] = defaults[key]
|
|
||||||
|
|
||||||
await col_users.insert_one(document=user)
|
|
||||||
|
|
||||||
logging.info(
|
|
||||||
"Added DB record for user %s during migration", member.id
|
|
||||||
)
|
|
||||||
|
|
||||||
await ctx.respond(
|
await ctx.respond(
|
||||||
embed=Embed(
|
embed=Embed(
|
||||||
@@ -179,5 +175,5 @@ class Data(commands.Cog):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def setup(client: PycordBot) -> None:
|
def setup(client: HoloBot) -> None:
|
||||||
client.add_cog(Data(client))
|
client.add_cog(Data(client))
|
||||||
|
21
cogs/fun.py
21
cogs/fun.py
@@ -1,33 +1,36 @@
|
|||||||
import logging
|
import logging
|
||||||
|
from logging import Logger
|
||||||
|
|
||||||
from discord import ApplicationContext, Embed, User, option, slash_command
|
from discord import ApplicationContext, Embed, User, option, slash_command
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
from libbot import config_get
|
from libbot.utils import config_get
|
||||||
from libbot.pycord.classes import PycordBot
|
|
||||||
from libbot.sync import config_get as sync_config_get
|
|
||||||
|
|
||||||
|
from classes.holo_bot import HoloBot
|
||||||
from modules.utils_sync import guild_name
|
from modules.utils_sync import guild_name
|
||||||
from modules.waifu_pics import waifu_pics
|
from modules.waifu_pics import waifu_pics
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class Fun(commands.Cog):
|
class Fun(commands.Cog):
|
||||||
def __init__(self, client: PycordBot):
|
def __init__(self, client: HoloBot):
|
||||||
self.client: PycordBot = client
|
self.client: HoloBot = client
|
||||||
|
|
||||||
@slash_command(
|
@slash_command(
|
||||||
name="action",
|
name="action",
|
||||||
description="Провести над користувачем РП дію",
|
description="Провести над користувачем РП дію",
|
||||||
guild_ids=[sync_config_get("guild")],
|
guild_ids=[config_get("guild")],
|
||||||
)
|
)
|
||||||
@option(
|
@option(
|
||||||
"type",
|
"type",
|
||||||
description="Тип дії, яку хочете провести з користувачем",
|
description="Тип дії, яку хочете провести з користувачем",
|
||||||
choices=sync_config_get("actions").keys(),
|
choices=config_get("actions").keys(),
|
||||||
)
|
)
|
||||||
@option("user", description="Користувач")
|
@option("user", description="Користувач")
|
||||||
async def action_cmd(self, ctx: ApplicationContext, type: str, user: User) -> None:
|
async def action_cmd(self, ctx: ApplicationContext, type: str, user: User) -> None:
|
||||||
|
"""Command /action <type> <user>
|
||||||
|
|
||||||
|
Command to perform some RP action on a user and send them a GIF."""
|
||||||
await ctx.defer()
|
await ctx.defer()
|
||||||
|
|
||||||
action: str = await config_get("category", "actions", type)
|
action: str = await config_get("category", "actions", type)
|
||||||
@@ -54,5 +57,5 @@ class Fun(commands.Cog):
|
|||||||
await ctx.respond(embed=embed)
|
await ctx.respond(embed=embed)
|
||||||
|
|
||||||
|
|
||||||
def setup(client: PycordBot) -> None:
|
def setup(client: HoloBot) -> None:
|
||||||
client.add_cog(Fun(client))
|
client.add_cog(Fun(client))
|
||||||
|
@@ -1,43 +1,61 @@
|
|||||||
from typing import Dict, Any, Union
|
import logging
|
||||||
|
from logging import Logger
|
||||||
|
|
||||||
from discord import Member, Message, TextChannel
|
from discord import Member, Message, TextChannel, MessageType
|
||||||
from discord import utils as ds_utils
|
from discord import utils as ds_utils
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
from libbot import config_get
|
from libbot.utils import config_get
|
||||||
from libbot.pycord.classes import PycordBot
|
|
||||||
|
|
||||||
|
from classes.holo_bot import HoloBot
|
||||||
|
from classes.holo_user import HoloUser
|
||||||
from modules.database import col_users
|
from modules.database import col_users
|
||||||
|
|
||||||
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class Logger(commands.Cog):
|
class Logger(commands.Cog):
|
||||||
def __init__(self, client: PycordBot):
|
def __init__(self, client: HoloBot):
|
||||||
self.client: PycordBot = client
|
self.client: HoloBot = client
|
||||||
|
|
||||||
@commands.Cog.listener()
|
@commands.Cog.listener()
|
||||||
async def on_message(self, message: Message):
|
async def on_message(self, message: Message):
|
||||||
|
"""Message listener. All actions on messages remain here for now."""
|
||||||
if (
|
if (
|
||||||
(message.author != self.client.user)
|
(message.author != self.client.user)
|
||||||
and (message.author.bot is False)
|
and (message.author.bot is False)
|
||||||
and (message.author.system is False)
|
and (message.author.system is False)
|
||||||
):
|
):
|
||||||
if (await col_users.find_one({"user": message.author.id})) is None:
|
await HoloUser.from_user(message.author, cache=self.client.cache)
|
||||||
user: Dict[str, Any] = {}
|
|
||||||
defaults: Dict[str, Any] = await config_get("user", "defaults")
|
|
||||||
|
|
||||||
user["user"] = message.author.id
|
if (
|
||||||
|
(message.type == MessageType.thread_created)
|
||||||
for key in defaults:
|
and (message.channel is not None)
|
||||||
user[key] = defaults[key]
|
and (
|
||||||
|
await col_users.count_documents({"custom_channel": message.channel.id})
|
||||||
await col_users.insert_one(document=user)
|
> 0
|
||||||
|
)
|
||||||
|
):
|
||||||
|
try:
|
||||||
|
logger.info(
|
||||||
|
"Deleting the thread creation message in a custom channel %s",
|
||||||
|
message.channel.id,
|
||||||
|
)
|
||||||
|
await message.delete()
|
||||||
|
except Exception as exc:
|
||||||
|
logger.warning(
|
||||||
|
"Could not delete the thread creation message in a custom channel %s due to %s",
|
||||||
|
message.channel.id,
|
||||||
|
exc,
|
||||||
|
)
|
||||||
|
|
||||||
@commands.Cog.listener()
|
@commands.Cog.listener()
|
||||||
async def on_member_join(self, member: Member) -> None:
|
async def on_member_join(self, member: Member) -> None:
|
||||||
welcome_chan: Union[TextChannel, None] = ds_utils.get(
|
"""Member join handler. All actions on member join remain here for now."""
|
||||||
|
welcome_chan: TextChannel | None = ds_utils.get(
|
||||||
self.client.get_guild(await config_get("guild")).channels,
|
self.client.get_guild(await config_get("guild")).channels,
|
||||||
id=await config_get("welcome", "channels", "text"),
|
id=await config_get("welcome", "channels", "text"),
|
||||||
)
|
)
|
||||||
rules_chan: Union[TextChannel, None] = ds_utils.get(
|
rules_chan: TextChannel | None = ds_utils.get(
|
||||||
self.client.get_guild(await config_get("guild")).channels,
|
self.client.get_guild(await config_get("guild")).channels,
|
||||||
id=await config_get("rules", "channels", "text"),
|
id=await config_get("rules", "channels", "text"),
|
||||||
)
|
)
|
||||||
@@ -47,23 +65,17 @@ class Logger(commands.Cog):
|
|||||||
and (member.bot is False)
|
and (member.bot is False)
|
||||||
and (member.system is False)
|
and (member.system is False)
|
||||||
):
|
):
|
||||||
|
if welcome_chan is not None and rules_chan is not None:
|
||||||
await welcome_chan.send(
|
await welcome_chan.send(
|
||||||
content=(await config_get("welcome", "messages")).format(
|
content=(await config_get("welcome", "messages")).format(
|
||||||
mention=member.mention, rules=rules_chan.mention
|
mention=member.mention, rules=rules_chan.mention
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
else:
|
||||||
|
logger.warning("Could not find a welcome and/or rules channel by id")
|
||||||
|
|
||||||
if (await col_users.find_one({"user": member.id})) is None:
|
await HoloUser.from_user(member, cache=self.client.cache)
|
||||||
user: Dict[str, Any] = {}
|
|
||||||
defaults: Dict[str, Any] = await config_get("user", "defaults")
|
|
||||||
|
|
||||||
user["user"] = member.id
|
|
||||||
|
|
||||||
for key in defaults:
|
|
||||||
user[key] = defaults[key]
|
|
||||||
|
|
||||||
await col_users.insert_one(document=user)
|
|
||||||
|
|
||||||
|
|
||||||
def setup(client: PycordBot) -> None:
|
def setup(client: HoloBot) -> None:
|
||||||
client.add_cog(Logger(client))
|
client.add_cog(Logger(client))
|
||||||
|
58
cogs/utility.py
Normal file
58
cogs/utility.py
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
import logging
|
||||||
|
from logging import Logger
|
||||||
|
|
||||||
|
from discord import Activity, ActivityType
|
||||||
|
from discord.ext import commands
|
||||||
|
from libbot.utils import config_get
|
||||||
|
|
||||||
|
from classes.holo_bot import HoloBot
|
||||||
|
|
||||||
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
class Utility(commands.Cog):
|
||||||
|
def __init__(self, client: HoloBot):
|
||||||
|
self.client: HoloBot = client
|
||||||
|
|
||||||
|
@commands.Cog.listener()
|
||||||
|
async def on_ready(self) -> None:
|
||||||
|
"""Listener for the event when bot connects to Discord and becomes "ready"."""
|
||||||
|
logger.info("Logged in as %s", self.client.user)
|
||||||
|
|
||||||
|
activity_type: str = await config_get("type", "status")
|
||||||
|
activity_message: str = await config_get("message", "status")
|
||||||
|
|
||||||
|
if activity_type == "playing":
|
||||||
|
await self.client.change_presence(
|
||||||
|
activity=Activity(type=ActivityType.playing, name=activity_message)
|
||||||
|
)
|
||||||
|
elif activity_type == "watching":
|
||||||
|
await self.client.change_presence(
|
||||||
|
activity=Activity(type=ActivityType.watching, name=activity_message)
|
||||||
|
)
|
||||||
|
elif activity_type == "listening":
|
||||||
|
await self.client.change_presence(
|
||||||
|
activity=Activity(type=ActivityType.listening, name=activity_message)
|
||||||
|
)
|
||||||
|
elif activity_type == "streaming":
|
||||||
|
await self.client.change_presence(
|
||||||
|
activity=Activity(type=ActivityType.streaming, name=activity_message)
|
||||||
|
)
|
||||||
|
elif activity_type == "competing":
|
||||||
|
await self.client.change_presence(
|
||||||
|
activity=Activity(type=ActivityType.competing, name=activity_message)
|
||||||
|
)
|
||||||
|
elif activity_type == "custom":
|
||||||
|
await self.client.change_presence(
|
||||||
|
activity=Activity(type=ActivityType.custom, name=activity_message)
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
return
|
||||||
|
|
||||||
|
logger.info(
|
||||||
|
"Set activity type to %s with message %s", activity_type, activity_message
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def setup(client: HoloBot) -> None:
|
||||||
|
client.add_cog(Utility(client))
|
@@ -22,18 +22,22 @@
|
|||||||
"port": 27017,
|
"port": 27017,
|
||||||
"name": "holo_discord"
|
"name": "holo_discord"
|
||||||
},
|
},
|
||||||
|
"cache": {
|
||||||
|
"type": null,
|
||||||
|
"memcached": {
|
||||||
|
"uri": "127.0.0.1:11211"
|
||||||
|
},
|
||||||
|
"redis": {
|
||||||
|
"uri": "redis://127.0.0.1:6379/0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"logging": {
|
"logging": {
|
||||||
"size": 512,
|
"size": 512,
|
||||||
"location": "logs"
|
"location": "logs"
|
||||||
},
|
},
|
||||||
"defaults": {
|
"defaults": {},
|
||||||
"user": {
|
|
||||||
"customrole": null,
|
|
||||||
"customchannel": null
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"categories": {
|
"categories": {
|
||||||
"customchannels": 0
|
"custom_channels": 0
|
||||||
},
|
},
|
||||||
"channels": {
|
"channels": {
|
||||||
"text": {
|
"text": {
|
||||||
|
95
main.py
95
main.py
@@ -1,77 +1,70 @@
|
|||||||
|
import contextlib
|
||||||
import logging
|
import logging
|
||||||
import sys
|
import sys
|
||||||
|
from argparse import ArgumentParser
|
||||||
from logging import Logger
|
from logging import Logger
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
from discord import Activity, ActivityType
|
from discord import LoginFailure, Intents
|
||||||
from libbot import config_get
|
from libbot.utils import config_get
|
||||||
from libbot.sync import config_get as sync_config_get
|
|
||||||
|
|
||||||
from modules.client import client
|
from classes.holo_bot import HoloBot
|
||||||
|
from modules.migrator import migrate_database
|
||||||
from modules.scheduler import scheduler
|
from modules.scheduler import scheduler
|
||||||
|
|
||||||
|
if not Path("config.json").exists():
|
||||||
|
print(
|
||||||
|
"Config file is missing: Make sure the configuration file 'config.json' is in place.",
|
||||||
|
flush=True,
|
||||||
|
)
|
||||||
|
sys.exit()
|
||||||
|
|
||||||
logging.basicConfig(
|
logging.basicConfig(
|
||||||
level=logging.INFO,
|
level=logging.INFO if not config_get("debug") else logging.DEBUG,
|
||||||
format="%(name)s.%(funcName)s | %(levelname)s | %(message)s",
|
format="%(name)s.%(funcName)s | %(levelname)s | %(message)s",
|
||||||
datefmt="[%X]",
|
datefmt="[%X]",
|
||||||
)
|
)
|
||||||
|
|
||||||
logger: Logger = logging.getLogger(__name__)
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
try:
|
# Declare the parser that retrieves the command line arguments
|
||||||
import uvloop # type: ignore
|
parser = ArgumentParser(
|
||||||
|
prog="HoloUA Discord",
|
||||||
|
description="Discord bot for the HoloUA community.",
|
||||||
|
)
|
||||||
|
|
||||||
|
# Add a switch argument --migrate to be parsed...
|
||||||
|
parser.add_argument("--migrate", action="store_true")
|
||||||
|
|
||||||
|
# ...and parse the arguments we added
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
# Try to import the module that improves performance
|
||||||
|
# and ignore errors when module is not installed
|
||||||
|
with contextlib.suppress(ImportError):
|
||||||
|
import uvloop
|
||||||
|
|
||||||
uvloop.install()
|
uvloop.install()
|
||||||
except ImportError:
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
@client.event
|
|
||||||
async def on_ready() -> None:
|
|
||||||
logger.info("Logged in as %s", client.user)
|
|
||||||
|
|
||||||
activity_type: str = await config_get("type", "status")
|
|
||||||
activity_message: str = await config_get("message", "status")
|
|
||||||
|
|
||||||
if activity_type == "playing":
|
|
||||||
await client.change_presence(
|
|
||||||
activity=Activity(type=ActivityType.playing, name=activity_message)
|
|
||||||
)
|
|
||||||
elif activity_type == "watching":
|
|
||||||
await client.change_presence(
|
|
||||||
activity=Activity(type=ActivityType.watching, name=activity_message)
|
|
||||||
)
|
|
||||||
elif activity_type == "listening":
|
|
||||||
await client.change_presence(
|
|
||||||
activity=Activity(type=ActivityType.listening, name=activity_message)
|
|
||||||
)
|
|
||||||
elif activity_type == "streaming":
|
|
||||||
await client.change_presence(
|
|
||||||
activity=Activity(type=ActivityType.streaming, name=activity_message)
|
|
||||||
)
|
|
||||||
elif activity_type == "competing":
|
|
||||||
await client.change_presence(
|
|
||||||
activity=Activity(type=ActivityType.competing, name=activity_message)
|
|
||||||
)
|
|
||||||
elif activity_type == "custom":
|
|
||||||
await client.change_presence(
|
|
||||||
activity=Activity(type=ActivityType.custom, name=activity_message)
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
return
|
|
||||||
|
|
||||||
logger.info(
|
|
||||||
"Set activity type to %s with message %s", activity_type, activity_message
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def main() -> None:
|
def main() -> None:
|
||||||
|
# Perform migration if command line argument was provided
|
||||||
|
if args.migrate:
|
||||||
|
logger.info("Performing migrations...")
|
||||||
|
migrate_database()
|
||||||
|
|
||||||
|
intents: Intents = Intents().all()
|
||||||
|
client: HoloBot = HoloBot(intents=intents, scheduler=scheduler)
|
||||||
|
|
||||||
client.load_extension("cogs")
|
client.load_extension("cogs")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
scheduler.start()
|
client.run(config_get("bot_token", "bot"))
|
||||||
client.run(sync_config_get("bot_token", "bot"))
|
except LoginFailure as exc:
|
||||||
|
logger.error("Provided bot token is invalid: %s", exc)
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
scheduler.shutdown()
|
logger.info("KeyboardInterrupt received: Shutting down gracefully.")
|
||||||
|
finally:
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
|
|
||||||
|
79
migrations/202412272043.py
Normal file
79
migrations/202412272043.py
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
import logging
|
||||||
|
from logging import Logger
|
||||||
|
|
||||||
|
from libbot.utils import config_get, config_set, config_delete
|
||||||
|
from mongodb_migrations.base import BaseMigration
|
||||||
|
|
||||||
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(BaseMigration):
|
||||||
|
def upgrade(self):
|
||||||
|
try:
|
||||||
|
# Categories
|
||||||
|
config_set(
|
||||||
|
"custom_channels",
|
||||||
|
config_get("customchannels", "categories"),
|
||||||
|
"categories",
|
||||||
|
)
|
||||||
|
config_delete("customchannels", "categories")
|
||||||
|
|
||||||
|
# User defaults
|
||||||
|
config_delete(
|
||||||
|
"user",
|
||||||
|
"defaults",
|
||||||
|
)
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error(
|
||||||
|
"Could not upgrade the config during migration '%s' due to: %s",
|
||||||
|
__name__,
|
||||||
|
exc,
|
||||||
|
)
|
||||||
|
|
||||||
|
self.db.users.update_many(
|
||||||
|
{"customchannel": {"$exists": True}},
|
||||||
|
{"$rename": {"customchannel": "custom_channel"}},
|
||||||
|
)
|
||||||
|
self.db.users.update_many(
|
||||||
|
{"customrole": {"$exists": True}},
|
||||||
|
{"$rename": {"customrole": "custom_role"}},
|
||||||
|
)
|
||||||
|
|
||||||
|
def downgrade(self):
|
||||||
|
try:
|
||||||
|
# Categories
|
||||||
|
config_set(
|
||||||
|
"customchannels",
|
||||||
|
config_get("custom_channels", "categories"),
|
||||||
|
"categories",
|
||||||
|
)
|
||||||
|
config_delete("custom_channels", "categories")
|
||||||
|
|
||||||
|
# User defaults
|
||||||
|
config_set(
|
||||||
|
"customrole",
|
||||||
|
None,
|
||||||
|
"defaults",
|
||||||
|
"user",
|
||||||
|
)
|
||||||
|
config_set(
|
||||||
|
"customchannel",
|
||||||
|
None,
|
||||||
|
"defaults",
|
||||||
|
"user",
|
||||||
|
)
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error(
|
||||||
|
"Could not downgrade the config during migration '%s' due to: %s",
|
||||||
|
__name__,
|
||||||
|
exc,
|
||||||
|
)
|
||||||
|
|
||||||
|
self.db.users.update_many(
|
||||||
|
{"custom_channel": {"$exists": True}},
|
||||||
|
{"$rename": {"custom_channel": "customchannel"}},
|
||||||
|
)
|
||||||
|
self.db.users.update_many(
|
||||||
|
{"custom_role": {"$exists": True}},
|
||||||
|
{"$rename": {"custom_role": "customrole"}},
|
||||||
|
)
|
63
migrations/202502092252.py
Normal file
63
migrations/202502092252.py
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
import logging
|
||||||
|
from logging import Logger
|
||||||
|
|
||||||
|
from libbot.utils import config_set, config_delete
|
||||||
|
from mongodb_migrations.base import BaseMigration
|
||||||
|
|
||||||
|
logger: Logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(BaseMigration):
|
||||||
|
def upgrade(self):
|
||||||
|
try:
|
||||||
|
config_set(
|
||||||
|
"cache",
|
||||||
|
{
|
||||||
|
"type": None,
|
||||||
|
"memcached": {"uri": "127.0.0.1:11211"},
|
||||||
|
"redis": {"uri": "redis://127.0.0.1:6379/0"},
|
||||||
|
},
|
||||||
|
*[],
|
||||||
|
)
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error(
|
||||||
|
"Could not upgrade the config during migration '%s' due to: %s",
|
||||||
|
__name__,
|
||||||
|
exc,
|
||||||
|
)
|
||||||
|
|
||||||
|
self.db.users.update_many(
|
||||||
|
{"user": {"$exists": True}},
|
||||||
|
{"$rename": {"user": "id"}},
|
||||||
|
)
|
||||||
|
self.db.analytics.update_many(
|
||||||
|
{"user": {"$exists": True}},
|
||||||
|
{"$rename": {"user": "user_id"}},
|
||||||
|
)
|
||||||
|
self.db.warnings.update_many(
|
||||||
|
{"user": {"$exists": True}},
|
||||||
|
{"$rename": {"user": "user_id"}},
|
||||||
|
)
|
||||||
|
|
||||||
|
def downgrade(self):
|
||||||
|
try:
|
||||||
|
config_delete("cache", *[])
|
||||||
|
except Exception as exc:
|
||||||
|
logger.error(
|
||||||
|
"Could not downgrade the config during migration '%s' due to: %s",
|
||||||
|
__name__,
|
||||||
|
exc,
|
||||||
|
)
|
||||||
|
|
||||||
|
self.db.users.update_many(
|
||||||
|
{"id": {"$exists": True}},
|
||||||
|
{"$rename": {"id": "user"}},
|
||||||
|
)
|
||||||
|
self.db.analytics.update_many(
|
||||||
|
{"user": {"$exists": True}},
|
||||||
|
{"$rename": {"user_id": "user"}},
|
||||||
|
)
|
||||||
|
self.db.warnings.update_many(
|
||||||
|
{"user": {"$exists": True}},
|
||||||
|
{"$rename": {"user_id": "user"}},
|
||||||
|
)
|
29
modules/cache_manager.py
Normal file
29
modules/cache_manager.py
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
from typing import Dict, Any, Literal
|
||||||
|
|
||||||
|
from classes.cache.holo_cache_memcached import HoloCacheMemcached
|
||||||
|
from classes.cache.holo_cache_redis import HoloCacheRedis
|
||||||
|
|
||||||
|
|
||||||
|
def create_cache_client(
|
||||||
|
config: Dict[str, Any],
|
||||||
|
engine: Literal["memcached", "redis"] | None = None,
|
||||||
|
) -> HoloCacheMemcached | HoloCacheRedis:
|
||||||
|
if engine not in ["memcached", "redis"] or engine is None:
|
||||||
|
raise KeyError(
|
||||||
|
f"Incorrect cache engine provided. Expected 'memcached' or 'redis', got '{engine}'"
|
||||||
|
)
|
||||||
|
|
||||||
|
if "cache" not in config or engine not in config["cache"]:
|
||||||
|
raise KeyError(
|
||||||
|
f"Cache configuration is invalid. Please check if all keys are set (engine: '{engine}')"
|
||||||
|
)
|
||||||
|
|
||||||
|
match engine:
|
||||||
|
case "memcached":
|
||||||
|
return HoloCacheMemcached.from_config(config["cache"][engine])
|
||||||
|
case "redis":
|
||||||
|
return HoloCacheRedis.from_config(config["cache"][engine])
|
||||||
|
case _:
|
||||||
|
raise KeyError(
|
||||||
|
f"Cache implementation for the engine '{engine}' is not present."
|
||||||
|
)
|
25
modules/cache_utils.py
Normal file
25
modules/cache_utils.py
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
from copy import deepcopy
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
from bson import ObjectId
|
||||||
|
from ujson import dumps, loads
|
||||||
|
|
||||||
|
|
||||||
|
def json_to_string(json_object: Any) -> str:
|
||||||
|
json_object_copy: Any = deepcopy(json_object)
|
||||||
|
|
||||||
|
if isinstance(json_object_copy, dict) and "_id" in json_object_copy:
|
||||||
|
json_object_copy["_id"] = str(json_object_copy["_id"])
|
||||||
|
|
||||||
|
return dumps(
|
||||||
|
json_object_copy, ensure_ascii=False, indent=0, escape_forward_slashes=False
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def string_to_json(json_string: str) -> Any:
|
||||||
|
json_object: Any = loads(json_string)
|
||||||
|
|
||||||
|
if "_id" in json_object:
|
||||||
|
json_object["_id"] = ObjectId(json_object["_id"])
|
||||||
|
|
||||||
|
return json_object
|
@@ -1,10 +0,0 @@
|
|||||||
from discord import Intents
|
|
||||||
from libbot.pycord.classes import PycordBot
|
|
||||||
|
|
||||||
from modules.scheduler import scheduler
|
|
||||||
|
|
||||||
intents: Intents = Intents().all()
|
|
||||||
|
|
||||||
intents.members = True
|
|
||||||
|
|
||||||
client: PycordBot = PycordBot(intents=intents, scheduler=scheduler)
|
|
@@ -1,12 +1,12 @@
|
|||||||
from typing import Dict, Any
|
from typing import Dict, Any
|
||||||
|
|
||||||
from async_pymongo import AsyncClient, AsyncCollection, AsyncDatabase
|
from async_pymongo import AsyncClient, AsyncCollection, AsyncDatabase
|
||||||
from libbot.sync import config_get as sync_config_get
|
from libbot.utils import config_get
|
||||||
from pymongo import MongoClient
|
from pymongo import MongoClient
|
||||||
from pymongo.synchronous.collection import Collection
|
from pymongo.synchronous.collection import Collection
|
||||||
from pymongo.synchronous.database import Database
|
from pymongo.synchronous.database import Database
|
||||||
|
|
||||||
db_config: Dict[str, Any] = sync_config_get("database")
|
db_config: Dict[str, Any] = config_get("database")
|
||||||
|
|
||||||
con_string: str = (
|
con_string: str = (
|
||||||
"mongodb://{0}:{1}/{2}".format(
|
"mongodb://{0}:{1}/{2}".format(
|
||||||
@@ -38,3 +38,6 @@ sync_db: Database = db_client_sync.get_database(name=db_config["name"])
|
|||||||
sync_col_users: Collection = sync_db.get_collection("users")
|
sync_col_users: Collection = sync_db.get_collection("users")
|
||||||
sync_col_warnings: Collection = sync_db.get_collection("warnings")
|
sync_col_warnings: Collection = sync_db.get_collection("warnings")
|
||||||
sync_col_analytics: Collection = sync_db.get_collection("analytics")
|
sync_col_analytics: Collection = sync_db.get_collection("analytics")
|
||||||
|
|
||||||
|
# Update indexes
|
||||||
|
sync_col_users.create_index(["id"], unique=True)
|
||||||
|
22
modules/migrator.py
Normal file
22
modules/migrator.py
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
from typing import Any, Mapping
|
||||||
|
|
||||||
|
from libbot.utils import config_get
|
||||||
|
from mongodb_migrations.cli import MigrationManager
|
||||||
|
from mongodb_migrations.config import Configuration
|
||||||
|
|
||||||
|
|
||||||
|
def migrate_database() -> None:
|
||||||
|
"""Apply migrations from folder `migrations/` to the database"""
|
||||||
|
database_config: Mapping[str, Any] = config_get("database")
|
||||||
|
|
||||||
|
manager_config = Configuration(
|
||||||
|
{
|
||||||
|
"mongo_host": database_config["host"],
|
||||||
|
"mongo_port": database_config["port"],
|
||||||
|
"mongo_database": database_config["name"],
|
||||||
|
"mongo_username": database_config["user"],
|
||||||
|
"mongo_password": database_config["password"],
|
||||||
|
}
|
||||||
|
)
|
||||||
|
manager = MigrationManager(manager_config)
|
||||||
|
manager.run()
|
@@ -1,9 +1,7 @@
|
|||||||
from typing import Union
|
|
||||||
|
|
||||||
from discord import Member, User
|
from discord import Member, User
|
||||||
|
|
||||||
|
|
||||||
def guild_name(member: Union[Member, User]) -> str:
|
def guild_name(member: Member | User) -> str:
|
||||||
if isinstance(member, User):
|
if isinstance(member, User):
|
||||||
return member.name
|
return member.name
|
||||||
|
|
||||||
|
@@ -5,6 +5,9 @@ requests>=2.32.2
|
|||||||
aiofiles~=24.1.0
|
aiofiles~=24.1.0
|
||||||
apscheduler>=3.10.0
|
apscheduler>=3.10.0
|
||||||
async_pymongo==0.1.11
|
async_pymongo==0.1.11
|
||||||
libbot[speed,pycord]==3.2.3
|
libbot[speed,pycord]==4.0.2
|
||||||
|
mongodb-migrations==1.3.1
|
||||||
|
pymemcache~=4.0.0
|
||||||
|
redis~=5.2.1
|
||||||
ujson~=5.10.0
|
ujson~=5.10.0
|
||||||
WaifuPicsPython==0.2.0
|
WaifuPicsPython==0.2.0
|
@@ -1,14 +1,14 @@
|
|||||||
{
|
{
|
||||||
"$jsonSchema": {
|
"$jsonSchema": {
|
||||||
"required": [
|
"required": [
|
||||||
"user",
|
"user_id",
|
||||||
"channel",
|
"channel",
|
||||||
"content",
|
"content",
|
||||||
"stickers",
|
"stickers",
|
||||||
"attachments"
|
"attachments"
|
||||||
],
|
],
|
||||||
"properties": {
|
"properties": {
|
||||||
"user": {
|
"user_id": {
|
||||||
"bsonType": "long",
|
"bsonType": "long",
|
||||||
"description": "Discord ID of user"
|
"description": "Discord ID of user"
|
||||||
},
|
},
|
||||||
@@ -17,7 +17,10 @@
|
|||||||
"description": "Discord ID of a channel"
|
"description": "Discord ID of a channel"
|
||||||
},
|
},
|
||||||
"content": {
|
"content": {
|
||||||
"bsonType": ["null", "string"],
|
"bsonType": [
|
||||||
|
"null",
|
||||||
|
"string"
|
||||||
|
],
|
||||||
"description": "Text of the message"
|
"description": "Text of the message"
|
||||||
},
|
},
|
||||||
"stickers": {
|
"stickers": {
|
||||||
@@ -40,7 +43,7 @@
|
|||||||
"format": {
|
"format": {
|
||||||
"bsonType": "array"
|
"bsonType": "array"
|
||||||
},
|
},
|
||||||
"user": {
|
"user_id": {
|
||||||
"bsonType": "string"
|
"bsonType": "string"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,22 +1,27 @@
|
|||||||
{
|
{
|
||||||
"$jsonSchema": {
|
"$jsonSchema": {
|
||||||
"required": [
|
"required": [
|
||||||
"user",
|
"id",
|
||||||
"customrole",
|
"custom_role",
|
||||||
"customchannel"
|
"custom_channel"
|
||||||
|
|
||||||
],
|
],
|
||||||
"properties": {
|
"properties": {
|
||||||
"user": {
|
"id": {
|
||||||
"bsonType": "long",
|
"bsonType": "long",
|
||||||
"description": "Discord ID of user"
|
"description": "Discord ID of user"
|
||||||
},
|
},
|
||||||
"customrole": {
|
"custom_role": {
|
||||||
"bsonType": ["null", "long"],
|
"bsonType": [
|
||||||
|
"null",
|
||||||
|
"long"
|
||||||
|
],
|
||||||
"description": "Discord ID of custom role or 'null' if not set"
|
"description": "Discord ID of custom role or 'null' if not set"
|
||||||
},
|
},
|
||||||
"customchannel": {
|
"custom_channel": {
|
||||||
"bsonType": ["null", "long"],
|
"bsonType": [
|
||||||
|
"null",
|
||||||
|
"long"
|
||||||
|
],
|
||||||
"description": "Discord ID of custom channel or 'null' if not set"
|
"description": "Discord ID of custom channel or 'null' if not set"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,15 +1,15 @@
|
|||||||
{
|
{
|
||||||
"$jsonSchema": {
|
"$jsonSchema": {
|
||||||
"required": [
|
"required": [
|
||||||
"user",
|
"user_id",
|
||||||
"warns"
|
"warnings"
|
||||||
],
|
],
|
||||||
"properties": {
|
"properties": {
|
||||||
"user": {
|
"user_id": {
|
||||||
"bsonType": "long",
|
"bsonType": "long",
|
||||||
"description": "Discord ID of user"
|
"description": "Discord ID of user"
|
||||||
},
|
},
|
||||||
"warns": {
|
"warnings": {
|
||||||
"bsonType": "int",
|
"bsonType": "int",
|
||||||
"description": "Number of warnings on count"
|
"description": "Number of warnings on count"
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user