nova-api/api/db/users.py

112 lines
3.3 KiB
Python
Raw Normal View History

import os
2023-08-04 03:30:56 +02:00
import yaml
import random
import string
import asyncio
from dotenv import load_dotenv
from motor.motor_asyncio import AsyncIOMotorClient
2023-08-19 13:30:46 +02:00
try:
from . import helpers
except ImportError:
import helpers
load_dotenv()
2023-10-06 09:37:16 +02:00
with open(os.path.join(helpers.root, 'api', 'config', 'config.yml'), encoding='utf8') as f:
2023-08-04 03:30:56 +02:00
credits_config = yaml.safe_load(f)
2023-08-12 18:20:18 +02:00
## MONGODB Setup
class UserManager:
"""
### Manager of all users in the database.
Following methods are available:
- `_get_collection(collection_name)`
- `create(discord_id)`
- `user_by_id(user_id)`
- `user_by_discord_id(discord_id)`
- `user_by_api_key(api_key)`
- `update_by_id(user_id, new_obj)`
- `update_by_filter(filter_object, new_obj)`
- `delete(user_id)`
2023-08-13 17:12:35 +02:00
"""
2023-08-04 03:30:56 +02:00
def __init__(self):
2023-08-19 16:26:37 +02:00
self.conn = AsyncIOMotorClient(os.environ['MONGO_URI'])
async def _get_collection(self, collection_name: str):
2023-08-16 15:06:16 +02:00
return self.conn[os.getenv('MONGO_NAME', 'nova-test')][collection_name]
async def get_all_users(self):
2023-08-19 13:30:46 +02:00
collection = self.conn[os.getenv('MONGO_NAME', 'nova-test')]['users']
return collection#.find()
async def create(self, discord_id: str = '') -> dict:
chars = string.ascii_letters + string.digits
2023-08-20 14:07:49 +02:00
infix = os.getenv('KEYGEN_INFIX', 'S3LFH0ST')
suffix = ''.join(random.choices(chars, k=20))
prefix = ''.join(random.choices(chars, k=20))
new_api_key = f'nv-{prefix}{infix}{suffix}'
new_user = {
'api_key': new_api_key,
'credits': credits_config['start-credits'],
'role': '',
'level': '',
'status': {
'active': True,
'ban_reason': '',
},
'auth': {
'discord': str(discord_id),
'github': None
}
}
db = await self._get_collection('users')
await db.insert_one(new_user)
user = await db.find_one({'api_key': new_api_key})
return user
async def user_by_id(self, user_id: str):
db = await self._get_collection('users')
return await db.find_one({'_id': user_id})
async def user_by_discord_id(self, discord_id: str):
db = await self._get_collection('users')
return await db.find_one({'auth.discord': str(int(discord_id))})
async def user_by_api_key(self, key: str):
db = await self._get_collection('users')
return await db.find_one({'api_key': key})
async def update_by_id(self, user_id: str, update):
db = await self._get_collection('users')
return await db.update_one({'_id': user_id}, update)
async def update_by_discord_id(self, discord_id: str, update):
2023-08-18 21:23:00 +02:00
db = await self._get_collection('users')
return await db.update_one({'auth.discord': str(int(discord_id))}, update)
async def update_by_filter(self, obj_filter, update):
db = await self._get_collection('users')
return await db.update_one(obj_filter, update)
async def delete(self, user_id: str):
db = await self._get_collection('users')
await db.delete_one({'_id': user_id})
manager = UserManager()
async def demo():
user = await UserManager().create(69420)
print(user)
if __name__ == '__main__':
asyncio.run(demo())