nova-api/rewardsystem/main.py

59 lines
1.7 KiB
Python
Raw Normal View History

import os
2023-08-06 02:14:46 +02:00
import asyncio
import aiohttp
import pymongo
import autocredits
2023-08-06 21:42:07 +02:00
from dotenv import load_dotenv
from settings import roles
2023-08-06 02:14:46 +02:00
load_dotenv()
pymongo_client = pymongo.MongoClient(os.getenv('MONGO_URI'))
2023-08-06 02:14:46 +02:00
async def main():
users = await autocredits.get_all_users(pymongo_client)
await update_roles(users)
await autocredits.update_credits(users, roles)
async def update_roles(users):
async with aiohttp.ClientSession() as session:
try:
async with session.get('http://localhost:3224/get_roles') as response:
discord_users = await response.json()
2023-08-06 02:14:46 +02:00
except aiohttp.ClientError as e:
raise ValueError('Could not get roles.') from exc
2023-08-06 21:42:07 +02:00
lvlroles = [f'lvl{lvl}' for lvl in range(10, 110, 10)] + ['']
2023-08-06 02:14:46 +02:00
users = await autocredits.get_all_users(pymongo_client)
filtered_users = users.find({'role': {'$in': lvlroles}})
bulk_updates = []
for user in filtered_users:
discord = str(user['auth']['discord'])
for id_, roles in discord_users.items():
if id_ == discord:
for role in lvlroles:
print(2, id_)
2023-08-06 02:14:46 +02:00
if role in roles:
print(0, id_)
bulk_updates.append(pymongo.UpdateOne(
{'auth.discord': int(discord)},
{'$set': {'role': role}})
)
print(1, id_)
2023-08-06 21:42:07 +02:00
print(f'Updated {id_} to {role}')
2023-08-06 02:14:46 +02:00
break
2023-08-06 21:42:07 +02:00
2023-08-06 02:14:46 +02:00
if bulk_updates:
with pymongo_client:
users.bulk_write(bulk_updates)
if __name__ == "__main__":
asyncio.run(main())