File size: 11,250 Bytes
78c0e6a | 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 | """
In-Memory Database with GitHub-only backup.
All data lives in RAM. NO local file reads or writes.
REMOVED: telegram store (using remote HuggingFace API)
REMOVED: cards store (using remote Cards Microservice)
"""
import time
import gevent
from gevent.lock import RLock
from datetime import datetime
from config import SESSION_CACHE_TTL
class MemoryDB:
"""
Pure in-memory database.
GitHub is the ONLY persistence layer.
Zero local file I/O.
Cards and Telegram are handled by external microservices.
"""
_instance = None
_init_lock = RLock()
# REMOVED 'telegram' and 'cards' from STORES
STORES = ['users', 'chat_history', 'board_saves', 'notifications']
STORE_FILES = {
'users': 'users.json',
'chat_history': 'chat_history_db.json',
'board_saves': 'board_saves.json',
'notifications': 'notifications.json',
}
@classmethod
def get_instance(cls):
if cls._instance is None:
with cls._init_lock:
if cls._instance is None:
cls._instance = cls()
return cls._instance
def __init__(self):
self._data = {}
self._locks = {}
self._last_backup = time.time()
# Session validation cache: {session_id: (username, expire_time)}
self._session_cache = {}
self._session_cache_lock = RLock()
for store_name in self.STORES:
self._locks[store_name] = RLock()
self._data[store_name] = {}
self._initial_load()
print(f" β
MemoryDB initialized (no cards, no telegram - external services)")
def _initial_load(self):
"""Load all data from GitHub on startup."""
try:
from github_storage import get_github_storage
gh = get_github_storage()
if not gh._configured:
print(f"\n β οΈ GitHub not configured - starting with EMPTY databases")
return
print(f"\n π₯ Loading databases from GitHub...")
results, error = gh.pull_all()
if results:
loaded_any = False
for store_name, data in results.items():
if store_name not in self.STORES:
continue
if data and isinstance(data, dict) and len(data) > 0:
self._data[store_name] = data
loaded_any = True
if not loaded_any:
print(f"\n βΉοΈ All databases empty on GitHub (first run)")
total = sum(len(self._data[s]) for s in self.STORES)
if total > 0:
print(f"\n π Total records loaded: {total}")
else:
print(f"\n π Starting fresh with 0 records")
except ImportError:
print(f" β github_storage module not found")
except Exception as e:
print(f" β GitHub load error: {e}")
# βββ SESSION CACHE βββ
def cache_session(self, session_id, username):
with self._session_cache_lock:
self._session_cache[session_id] = (username, time.time() + SESSION_CACHE_TTL)
def check_session_cache(self, session_id):
with self._session_cache_lock:
entry = self._session_cache.get(session_id)
if entry:
username, expire_time = entry
if time.time() < expire_time:
return username
else:
del self._session_cache[session_id]
return None
def invalidate_session_cache(self, username):
with self._session_cache_lock:
stale = [sid for sid, (uname, _) in self._session_cache.items() if uname == username]
for sid in stale:
del self._session_cache[sid]
# βββ READ OPERATIONS βββ
def read(self, store_name):
lock = self._locks.get(store_name)
if not lock:
return {}
with lock:
return dict(self._data.get(store_name, {}))
def read_key(self, store_name, key, default=None):
lock = self._locks.get(store_name)
if not lock:
return default
with lock:
return self._data.get(store_name, {}).get(key, default)
def read_keys(self, store_name, keys):
lock = self._locks.get(store_name)
if not lock:
return {}
with lock:
store = self._data.get(store_name, {})
return {k: store[k] for k in keys if k in store}
def has_key(self, store_name, key):
lock = self._locks.get(store_name)
if not lock:
return False
with lock:
return key in self._data.get(store_name, {})
def count(self, store_name):
lock = self._locks.get(store_name)
if not lock:
return 0
with lock:
return len(self._data.get(store_name, {}))
# βββ WRITE OPERATIONS βββ
def write(self, store_name, key, value):
lock = self._locks.get(store_name)
if not lock:
return
with lock:
if store_name not in self._data:
self._data[store_name] = {}
self._data[store_name][key] = value
def write_many(self, store_name, updates):
lock = self._locks.get(store_name)
if not lock:
return
with lock:
if store_name not in self._data:
self._data[store_name] = {}
self._data[store_name].update(updates)
def write_full(self, store_name, data):
lock = self._locks.get(store_name)
if not lock:
return
with lock:
self._data[store_name] = data
def update_key(self, store_name, key, update_fn):
lock = self._locks.get(store_name)
if not lock:
return None
with lock:
current = self._data.get(store_name, {}).get(key, None)
new_value = update_fn(current)
if new_value is not None:
if store_name not in self._data:
self._data[store_name] = {}
self._data[store_name][key] = new_value
return new_value
def delete(self, store_name, key):
lock = self._locks.get(store_name)
if not lock:
return False
with lock:
if key in self._data.get(store_name, {}):
del self._data[store_name][key]
return True
return False
def delete_many(self, store_name, keys):
lock = self._locks.get(store_name)
if not lock:
return 0
with lock:
count = 0
store = self._data.get(store_name, {})
for key in keys:
if key in store:
del store[key]
count += 1
return count
# βββ QUERY OPERATIONS βββ
def find(self, store_name, predicate):
lock = self._locks.get(store_name)
if not lock:
return []
with lock:
return [(k, v) for k, v in self._data.get(store_name, {}).items() if predicate(k, v)]
def find_keys_by_prefix(self, store_name, prefix):
lock = self._locks.get(store_name)
if not lock:
return {}
with lock:
store = self._data.get(store_name, {})
return {k: v for k, v in store.items() if k.startswith(prefix)}
# βββ GITHUB BACKUP OPERATIONS βββ
def push_to_github(self):
try:
from github_storage import get_github_storage
gh = get_github_storage()
data_map = {}
for store_name in self.STORES:
with self._locks[store_name]:
data_map[store_name] = dict(self._data.get(store_name, {}))
success, errors = gh.push_all(data_map)
if success:
self._last_backup = time.time()
return success, errors
except Exception as e:
err = f"GitHub push error: {e}"
print(f" β {err}")
return False, [err]
def pull_from_github(self):
try:
from github_storage import get_github_storage
gh = get_github_storage()
results, error = gh.pull_all()
if error:
return False, error
if not results:
return False, "No data returned from GitHub"
for store_name, data in results.items():
if store_name not in self.STORES:
continue
if data and isinstance(data, dict):
lock = self._locks.get(store_name)
if lock:
with lock:
self._data[store_name] = data
total = sum(len(self._data.get(s, {})) for s in self.STORES)
print(f" β
Pulled {total} records from GitHub into memory")
return True, None
except Exception as e:
err = f"GitHub pull error: {e}"
print(f" β {err}")
return False, err
def push_single_to_github(self, store_name):
if store_name not in self.STORE_FILES:
return False, f"Unknown store: {store_name}"
try:
from github_storage import get_github_storage
gh = get_github_storage()
filename = self.STORE_FILES[store_name]
with self._locks[store_name]:
data = dict(self._data.get(store_name, {}))
success, error = gh.push_file(filename, data)
return success, error
except Exception as e:
return False, f"Error pushing {store_name}: {e}"
# βββ STATS βββ
def get_stats(self):
stats = {}
for store_name in self.STORES:
with self._locks[store_name]:
stats[store_name] = {
"records": len(self._data.get(store_name, {})),
"github_file": self.STORE_FILES.get(store_name, ""),
}
stats["_meta"] = {
"last_backup": datetime.fromtimestamp(self._last_backup).isoformat(),
"mode": "github_only",
"local_files": False,
"cards": "external_microservice",
"telegram": "external_api",
"session_cache_size": len(self._session_cache),
}
return stats
def shutdown(self):
print(" π MemoryDB shutting down...")
total = sum(len(self._data.get(s, {})) for s in self.STORES)
print(f" β οΈ {total} records in memory. Push to GitHub if needed: /backup_db")
print(" β
MemoryDB shutdown complete")
def get_db():
return MemoryDB.get_instance() |