2020-08-06 05:52:36 +00:00
|
|
|
import logging
|
2020-08-06 20:40:03 +00:00
|
|
|
from functools import wraps
|
2020-08-06 05:52:36 +00:00
|
|
|
from tipbot import wownero
|
|
|
|
from tipbot import db
|
2020-08-06 20:40:03 +00:00
|
|
|
from tipbot import config
|
|
|
|
from tipbot.helpers.utils import is_tg_admin
|
|
|
|
|
2020-08-06 05:52:36 +00:00
|
|
|
|
2020-08-06 20:40:03 +00:00
|
|
|
def check_debug(f):
|
|
|
|
@wraps(f)
|
|
|
|
def decorated_function(*args, **kwargs):
|
|
|
|
msg = args[0].message
|
|
|
|
is_admin = is_tg_admin(msg.from_user["id"])
|
|
|
|
is_debug = getattr(config, 'DEBUG', True) == True
|
|
|
|
if is_debug:
|
|
|
|
if not is_admin:
|
|
|
|
msg.reply_text('I am in debug mode by my admin. Commands are disabled at the moment. Try again later.')
|
|
|
|
return False
|
|
|
|
return f(*args, **kwargs)
|
|
|
|
return decorated_function
|
2020-08-06 05:52:36 +00:00
|
|
|
|
|
|
|
def log_event(f):
|
|
|
|
@wraps(f)
|
|
|
|
def decorated_function(*args, **kwargs):
|
|
|
|
msg = args[0].message
|
|
|
|
logging.info(f'"{f.__name__}" invoked from {msg.from_user["id"]} ({msg.from_user["first_name"]}) - Full command: "{msg.text}"')
|
|
|
|
return f(*args, **kwargs)
|
|
|
|
return decorated_function
|
|
|
|
|
|
|
|
def wallet_rpc_required(f):
|
|
|
|
@wraps(f)
|
|
|
|
def decorated_function(*args, **kwargs):
|
|
|
|
wallet = wownero.Wallet()
|
|
|
|
if not wallet.connected:
|
|
|
|
logging.error(f'Wallet RPC interface is not available: {args[0].message}')
|
|
|
|
args[0].message.reply_text('Wallet RPC interface is not available right now. Try again later.')
|
|
|
|
return False
|
|
|
|
return f(*args, **kwargs)
|
|
|
|
return decorated_function
|
|
|
|
|
|
|
|
def registration_required(f):
|
|
|
|
@wraps(f)
|
|
|
|
def decorated_function(*args, **kwargs):
|
|
|
|
wallet = wownero.Wallet()
|
|
|
|
if not db.User.filter(telegram_id=args[0].message.from_user['id']):
|
|
|
|
args[0].message.reply_text('You are not yet registered. Issue the /register command.')
|
|
|
|
return False
|
|
|
|
return f(*args, **kwargs)
|
|
|
|
return decorated_function
|