-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdata.py
81 lines (70 loc) · 2.61 KB
/
data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
from re import sub
from json import load, decoder
from os import getenv
from sys import exit as sysexit
DOTENV_INSTALLED = True
try:
from dotenv import load_dotenv
load_dotenv()
except ModuleNotFoundError:
print("You did not install the dotenv module! .env files can not be used.")
DOTENV_INSTALLED = False
try:
from mcstatus import JavaServer
from mcstatus.pinger import PingResponse
except ModuleNotFoundError:
sysexit('You did not install the mcstatus module! Exiting now...')
class Colors:
blue = 0xadd8e6
red = 0xf04747
green = 0x90ee90
orange = 0xfaa61a
def remove_colors_from_string(text) -> str:
text = sub(r"§[0-9a-r]", "", text)
return text
def get_data() -> dict:
"""
This function is used to get the data from the config.json file.
If you do not have a config.json file, you can use environment variables.
:return: The data from the config.json file.
"""
try:
with open('config.json', 'r', encoding="UTF-8") as file:
data = load(file)
except FileNotFoundError:
print("No config.json file found. Trying to use dotenv...")
if not DOTENV_INSTALLED:
sysexit('You did not install the dotenv module and no config.json was provided! Exiting now...')
else:
try:
data = {
"Token": getenv('TOKEN'),
"Prefix": getenv('PREFIX'),
"Owners": getenv('OWNERS').split(','),
"FeatureGuilds": getenv('FEATURE_GUILDS').split(','),
"Database": {
"Host": getenv('DB_HOST'),
"User": getenv('DB_USER'),
"Password": getenv('DB_PASSWORD'),
"Database": getenv('DB_DATABASE'),
"Port": getenv('DB_PORT')
},
"Logs": {
"JoinWebhook": getenv('LOGS_JOINWEBHOOK'),
"LeaveWebhook": getenv('LOGS_LEAVEWEBHOOK')
}
}
except AttributeError:
sysexit('One or more environment variables could be found. Exiting now...')
except decoder.JSONDecodeError:
sysexit('config.json is not valid! Exiting now...')
return data
async def get_server_status(serverip: str) -> PingResponse:
"""
This function is used to get the status of a server.
:param serverip: The ip of the server.
:return: The status of the server.
"""
server = await JavaServer.async_lookup(serverip)
stat = await server.async_status()
return stat