2022-11-18 16:51:24 +00:00
|
|
|
from datetime import datetime
|
2023-07-06 15:36:55 +00:00
|
|
|
from typing import Literal
|
2022-11-18 16:51:24 +00:00
|
|
|
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
|
|
|
|
2023-07-06 15:36:55 +00:00
|
|
|
def auth_check(Authorization) -> (tuple[Literal[False], Literal["noauth"]] | tuple[Literal[True], dict]):
|
2022-11-18 16:51:24 +00:00
|
|
|
"""Checks credentials.
|
|
|
|
Returns a tuple with result (for example False, "nouser").
|
|
|
|
|
|
|
|
Results:
|
2023-07-06 15:36:55 +00:00
|
|
|
- False if wrong username or password
|
|
|
|
- True, [dict] if correct
|
2022-11-18 16:51:24 +00:00
|
|
|
"""
|
2023-07-06 15:36:55 +00:00
|
|
|
# FIXME: This function currently DOES NOT perform any authentication.
|
|
|
|
# This means that ANYONE knowing the username could perform actions as the user.
|
2022-12-09 18:35:07 +00:00
|
|
|
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:
|
2023-07-06 15:36:55 +00:00
|
|
|
return False, "noauth"
|
2022-11-18 16:51:24 +00:00
|
|
|
|
2023-07-06 15:36:55 +00:00
|
|
|
# if query["Password"] != password:
|
|
|
|
# return False, "wrongpass"
|
2022-11-18 16:51:24 +00:00
|
|
|
|
|
|
|
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()
|