nova-api/api/db/users.py
nsde 9a1a9d9e3e First public release, working on autocredits system
Co-authored-by: Leander <henceiusegentoo@users.noreply.github.com>
2023-08-06 23:20:14 +02:00

79 lines
2 KiB
Python

import os
import yaml
import random
import string
import asyncio
from dotenv import load_dotenv
from motor.motor_asyncio import AsyncIOMotorClient
load_dotenv()
with open('config/credits.yml', encoding='utf8') as f:
credits_config = yaml.safe_load(f)
async def _get_mongo(collection_name: str):
return AsyncIOMotorClient(os.getenv('MONGO_URI'))['nova-core'][collection_name]
async def create(discord_id: int=0) -> dict:
"""Adds a new user to the MongoDB collection."""
chars = string.ascii_letters + string.digits
infix = os.getenv('KEYGEN_INFIX')
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': 0,
'status': {
'active': True,
'ban_reason': '',
},
'auth': {
'discord': discord_id,
'github': None
}
}
db = await _get_mongo('users')
await db.insert_one(new_user)
user = await db.find_one({'api_key': new_api_key})
return user
async def by_id(user_id: str):
db = await _get_mongo('users')
return await db.find_one({'_id': user_id})
async def by_discord_id(discord_id: str):
db = await _get_mongo('users')
return await db.find_one({'auth.discord': discord_id})
async def by_api_key(key: str):
db = await _get_mongo('users')
return await db.find_one({'api_key': key})
async def update_by_id(user_id: str, update):
db = await _get_mongo('users')
return await db.update_one({'_id': user_id}, update)
async def update_by_filter(obj_filter, update):
db = await _get_mongo('users')
return await db.update_one(obj_filter, update)
async def delete(user_id: str):
db = await _get_mongo('users')
await db.delete_one({'_id': user_id})
async def demo():
user = await create(69420)
print(user)
if __name__ == '__main__':
asyncio.run(demo())