CustomIWMServer/customiwmserver/database.py

57 lines
1.3 KiB
Python
Raw Normal View History

2022-11-18 16:51:24 +00:00
from datetime import datetime
from pymongo import MongoClient
client = MongoClient("mongodb://root:catboys@mongo:27017")
db = client["IWM_CustomServer_DB"]
user_collection = db.users
maps_collection = db.maps
reports_collection = db.reports
general_collection = db.general
admin_log_collection = db.admin_log
2022-11-19 12:51:28 +00:00
def LogAdminAction(
action_type: str, action_data: dict, UserID: int = None, success: bool = True
):
2022-11-18 16:51:24 +00:00
"""Log administrator action."""
2022-11-19 12:51:28 +00:00
admin_log_collection.insert_one(
{
"date": datetime.utcnow(),
"action_type": action_type,
"action_data": action_data,
}
)
2022-11-18 16:51:24 +00:00
def auth_check(Authorization):
"""Checks credentials.
Returns a tuple with result (for example False, "nouser").
Results:
- nouser = user not found
- wrongpass = wrong password
- [dictionary] = query
"""
if Authorization is None:
return False, "noauth"
2022-11-18 16:51:24 +00:00
username, password = Authorization.split(":")
2022-11-19 12:51:28 +00:00
query = user_collection.find_one({"Username": username})
2022-11-18 16:51:24 +00:00
if not query:
return False, "nouser"
2022-11-19 12:51:28 +00:00
if query["Password"] != password:
2022-11-18 16:51:24 +00:00
return False, "wrongpass"
return True, query
2022-11-20 14:51:20 +00:00
def id_to_mapcode(id_):
return hex(id_).replace("0x", "").rjust(8, "0")[0:8].upper()