mirror of
https://github.com/aljazceru/nostrdvm.git
synced 2025-12-19 23:14:20 +01:00
68 lines
2.3 KiB
Python
68 lines
2.3 KiB
Python
# ADMINISTRARIVE DB MANAGEMENT
|
|
import time
|
|
|
|
from nostr_sdk import Keys, EventBuilder, PublicKey
|
|
|
|
from utils.database_utils import get_from_sql_table, list_db, clear_db, delete_from_sql_table, update_sql_table, \
|
|
get_or_add_user, update_user_metadata
|
|
from utils.nip89_utils import nip89_announce_tasks
|
|
from utils.nostr_utils import send_event
|
|
|
|
|
|
def admin_make_database_updates(config=None, client=None):
|
|
# This is called on start of Server, Admin function to manually whitelist/blacklist/add balance/delete users
|
|
dvmconfig = config
|
|
|
|
rebroadcast_nip89 = False
|
|
cleardb = False
|
|
listdatabase = False
|
|
deleteuser = False
|
|
whitelistuser = False
|
|
unwhitelistuser = False
|
|
blacklistuser = False
|
|
addbalance = False
|
|
additional_balance = 50
|
|
|
|
# publickey = PublicKey.from_bech32("npub1...").to_hex()
|
|
# use this if you have the npub
|
|
publickey = "asd123"
|
|
#use this if you have hex
|
|
|
|
if whitelistuser:
|
|
user = get_or_add_user(publickey)
|
|
update_sql_table(user[0], user[1], True, False, user[4], user[5], user[6], user[7])
|
|
user = get_from_sql_table(publickey)
|
|
print(str(user[6]) + " is whitelisted: " + str(user[2]))
|
|
|
|
if unwhitelistuser:
|
|
user = get_from_sql_table(publickey)
|
|
update_sql_table(user[0], user[1], False, False, user[4], user[5], user[6], user[7])
|
|
|
|
if blacklistuser:
|
|
user = get_from_sql_table(publickey)
|
|
update_sql_table(user[0], user[1], False, True, user[4], user[5], user[6], user[7])
|
|
|
|
if addbalance:
|
|
user = get_from_sql_table(publickey)
|
|
update_sql_table(user[0], (int(user[1]) + additional_balance), user[2], user[3], user[4], user[5], user[6],
|
|
user[7])
|
|
time.sleep(1.0)
|
|
message = str(additional_balance) + " Sats have been added to your balance. Your new balance is " + str(
|
|
(int(user[1]) + additional_balance)) + " Sats."
|
|
keys = Keys.from_sk_str(config.PRIVATE_KEY)
|
|
evt = EventBuilder.new_encrypted_direct_msg(keys, PublicKey.from_hex(publickey), message,
|
|
None).to_event(keys)
|
|
send_event(evt, key=keys)
|
|
|
|
if deleteuser:
|
|
delete_from_sql_table(publickey)
|
|
|
|
if cleardb:
|
|
clear_db()
|
|
|
|
if listdatabase:
|
|
list_db()
|
|
|
|
if rebroadcast_nip89:
|
|
nip89_announce_tasks(dvmconfig)
|