File size: 10,107 Bytes
618430a |
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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 |
# Ultroid - UserBot
# Copyright (C) 2021-2025 TeamUltroid
#
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
# PLease read the GNU Affero General Public License in
# <https://github.com/TeamUltroid/pyUltroid/blob/main/LICENSE>.
import ast
import os
import sys
from .. import run_as_module
from . import *
if run_as_module:
from ..configs import Var
Redis = MongoClient = psycopg2 = Database = None
if Var.REDIS_URI or Var.REDISHOST:
try:
from redis import Redis
except ImportError:
LOGS.info("Installing 'redis' for database.")
os.system(f"{sys.executable} -m pip install -q redis hiredis")
from redis import Redis
elif Var.MONGO_URI:
try:
from pymongo import MongoClient
except ImportError:
LOGS.info("Installing 'pymongo' for database.")
os.system(f"{sys.executable} -m pip install -q pymongo[srv]")
from pymongo import MongoClient
elif Var.DATABASE_URL:
try:
import psycopg2
except ImportError:
LOGS.info("Installing 'pyscopg2' for database.")
os.system(f"{sys.executable} -m pip install -q psycopg2-binary")
import psycopg2
else:
try:
from localdb import Database
except ImportError:
LOGS.info("Using local file as database.")
os.system(f"{sys.executable} -m pip install -q localdb.json")
from localdb import Database
# --------------------------------------------------------------------------------------------- #
class _BaseDatabase:
def __init__(self, *args, **kwargs):
self._cache = {}
def get_key(self, key):
if key in self._cache:
return self._cache[key]
value = self._get_data(key)
self._cache.update({key: value})
return value
def re_cache(self):
self._cache.clear()
for key in self.keys():
self._cache.update({key: self.get_key(key)})
def ping(self):
return 1
@property
def usage(self):
return 0
def keys(self):
return []
def del_key(self, key):
if key in self._cache:
del self._cache[key]
self.delete(key)
return True
def _get_data(self, key=None, data=None):
if key:
data = self.get(str(key))
if data and isinstance(data, str):
try:
data = ast.literal_eval(data)
except BaseException:
pass
return data
def set_key(self, key, value, cache_only=False):
value = self._get_data(data=value)
self._cache[key] = value
if cache_only:
return
return self.set(str(key), str(value))
def rename(self, key1, key2):
_ = self.get_key(key1)
if _:
self.del_key(key1)
self.set_key(key2, _)
return 0
return 1
class MongoDB(_BaseDatabase):
def __init__(self, key, dbname="UltroidDB"):
self.dB = MongoClient(key, serverSelectionTimeoutMS=5000)
self.db = self.dB[dbname]
super().__init__()
def __repr__(self):
return f"<Ultroid.MonGoDB\n -total_keys: {len(self.keys())}\n>"
@property
def name(self):
return "Mongo"
@property
def usage(self):
return self.db.command("dbstats")["dataSize"]
def ping(self):
if self.dB.server_info():
return True
def keys(self):
return self.db.list_collection_names()
def set(self, key, value):
if key in self.keys():
self.db[key].replace_one({"_id": key}, {"value": str(value)})
else:
self.db[key].insert_one({"_id": key, "value": str(value)})
return True
def delete(self, key):
self.db.drop_collection(key)
def get(self, key):
if x := self.db[key].find_one({"_id": key}):
return x["value"]
def flushall(self):
self.dB.drop_database("UltroidDB")
self._cache.clear()
return True
# --------------------------------------------------------------------------------------------- #
# Thanks to "Akash Pattnaik" / @BLUE-DEVIL1134
# for SQL Implementation in Ultroid.
#
# Please use https://elephantsql.com/ !
class SqlDB(_BaseDatabase):
def __init__(self, url):
self._url = url
self._connection = None
self._cursor = None
try:
self._connection = psycopg2.connect(dsn=url)
self._connection.autocommit = True
self._cursor = self._connection.cursor()
self._cursor.execute(
"CREATE TABLE IF NOT EXISTS Ultroid (ultroidCli varchar(70))"
)
except Exception as error:
LOGS.exception(error)
LOGS.info("Invaid SQL Database")
if self._connection:
self._connection.close()
sys.exit()
super().__init__()
@property
def name(self):
return "SQL"
@property
def usage(self):
self._cursor.execute(
"SELECT pg_size_pretty(pg_relation_size('Ultroid')) AS size"
)
data = self._cursor.fetchall()
return int(data[0][0].split()[0])
def keys(self):
self._cursor.execute(
"SELECT column_name FROM information_schema.columns WHERE table_schema = 'public' AND table_name = 'ultroid'"
) # case sensitive
data = self._cursor.fetchall()
return [_[0] for _ in data]
def get(self, variable):
try:
self._cursor.execute(f"SELECT {variable} FROM Ultroid")
except psycopg2.errors.UndefinedColumn:
return None
data = self._cursor.fetchall()
if not data:
return None
if len(data) >= 1:
for i in data:
if i[0]:
return i[0]
def set(self, key, value):
try:
self._cursor.execute(f"ALTER TABLE Ultroid DROP COLUMN IF EXISTS {key}")
except (psycopg2.errors.UndefinedColumn, psycopg2.errors.SyntaxError):
pass
except BaseException as er:
LOGS.exception(er)
self._cache.update({key: value})
self._cursor.execute(f"ALTER TABLE Ultroid ADD {key} TEXT")
self._cursor.execute(f"INSERT INTO Ultroid ({key}) values (%s)", (str(value),))
return True
def delete(self, key):
try:
self._cursor.execute(f"ALTER TABLE Ultroid DROP COLUMN {key}")
except psycopg2.errors.UndefinedColumn:
return False
return True
def flushall(self):
self._cache.clear()
self._cursor.execute("DROP TABLE Ultroid")
self._cursor.execute(
"CREATE TABLE IF NOT EXISTS Ultroid (ultroidCli varchar(70))"
)
return True
# --------------------------------------------------------------------------------------------- #
class RedisDB(_BaseDatabase):
def __init__(
self,
host,
port,
password,
platform="",
logger=LOGS,
*args,
**kwargs,
):
if host and ":" in host:
spli_ = host.split(":")
host = spli_[0]
port = int(spli_[-1])
if host.startswith("http"):
logger.error("Your REDIS_URI should not start with http !")
import sys
sys.exit()
elif not host or not port:
logger.error("Port Number not found")
import sys
sys.exit()
kwargs["host"] = host
kwargs["password"] = password
kwargs["port"] = port
if platform.lower() == "qovery" and not host:
var, hash_, host, password = "", "", "", ""
for vars_ in os.environ:
if vars_.startswith("QOVERY_REDIS_") and vars.endswith("_HOST"):
var = vars_
if var:
hash_ = var.split("_", maxsplit=2)[1].split("_")[0]
if hash:
kwargs["host"] = os.environ.get(f"QOVERY_REDIS_{hash_}_HOST")
kwargs["port"] = os.environ.get(f"QOVERY_REDIS_{hash_}_PORT")
kwargs["password"] = os.environ.get(f"QOVERY_REDIS_{hash_}_PASSWORD")
self.db = Redis(**kwargs)
self.set = self.db.set
self.get = self.db.get
self.keys = self.db.keys
self.delete = self.db.delete
super().__init__()
@property
def name(self):
return "Redis"
@property
def usage(self):
return sum(self.db.memory_usage(x) for x in self.keys())
# --------------------------------------------------------------------------------------------- #
class LocalDB(_BaseDatabase):
def __init__(self):
self.db = Database("ultroid")
self.get = self.db.get
self.set = self.db.set
self.delete = self.db.delete
super().__init__()
@property
def name(self):
return "LocalDB"
def keys(self):
return self._cache.keys()
def __repr__(self):
return f"<Ultroid.LocalDB\n -total_keys: {len(self.keys())}\n>"
def UltroidDB():
_er = False
from .. import HOSTED_ON
try:
if Redis:
return RedisDB(
host=Var.REDIS_URI or Var.REDISHOST,
password=Var.REDIS_PASSWORD or Var.REDISPASSWORD,
port=Var.REDISPORT,
platform=HOSTED_ON,
decode_responses=True,
socket_timeout=5,
retry_on_timeout=True,
)
elif MongoClient:
return MongoDB(Var.MONGO_URI)
elif psycopg2:
return SqlDB(Var.DATABASE_URL)
else:
LOGS.critical(
"No DB requirement fullfilled!\nPlease install redis, mongo or sql dependencies...\nTill then using local file as database."
)
return LocalDB()
except BaseException as err:
LOGS.exception(err)
exit()
# --------------------------------------------------------------------------------------------- #
|