|
|
|
@ -11,7 +11,8 @@ from tipbot.helpers.decorators import wallet_rpc_required, log_event, registrati
|
|
|
|
|
@check_debug
|
|
|
|
|
def tip(update, context):
|
|
|
|
|
if len(context.args) < 2:
|
|
|
|
|
update.message.reply_text('Not enough arguments passed.')
|
|
|
|
|
update.message.from_user.send_message('Not enough arguments passed.')
|
|
|
|
|
update.message.delete()
|
|
|
|
|
return False
|
|
|
|
|
elif len(context.args) == 2:
|
|
|
|
|
message = ""
|
|
|
|
@ -25,7 +26,8 @@ def tip(update, context):
|
|
|
|
|
target_un = context.args[0]
|
|
|
|
|
|
|
|
|
|
if target_un == update.message.from_user['first_name']:
|
|
|
|
|
update.message.reply_text('You cannot tip yourself!')
|
|
|
|
|
update.message.from_user.send_message('You cannot tip yourself!')
|
|
|
|
|
update.message.delete()
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
if not db.User.filter(telegram_user=target_un):
|
|
|
|
@ -33,24 +35,28 @@ def tip(update, context):
|
|
|
|
|
'That user has not registered and cannot receive tips yet.',
|
|
|
|
|
'If they would like to receive a tip, have them /register with the bot.'
|
|
|
|
|
]
|
|
|
|
|
update.message.reply_text(' '.join(reply_text))
|
|
|
|
|
update.message.from_user.send_message(' '.join(reply_text))
|
|
|
|
|
update.message.delete()
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
# validate amount
|
|
|
|
|
try:
|
|
|
|
|
amount = Decimal(context.args[1])
|
|
|
|
|
except:
|
|
|
|
|
update.message.reply_text(f'Bad Wownero amount specified; not a valid number.')
|
|
|
|
|
update.message.from_user.send_message(f'Bad Wownero amount specified; not a valid number.')
|
|
|
|
|
update.message.delete()
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
if amount < 1:
|
|
|
|
|
update.message.reply_text('Bad Wownero amount specified. Provide only positive integers or decimals greater than or equal to 1.')
|
|
|
|
|
update.message.from_user.send_message('Bad Wownero amount specified. Provide only positive integers or decimals greater than or equal to 1.')
|
|
|
|
|
update.message.delete()
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
tipper = db.User.get(telegram_id=update.message.from_user['id'])
|
|
|
|
|
tipper_balances = wownero.Wallet().balances(account=tipper.account_index)
|
|
|
|
|
if amount >= tipper_balances[1]:
|
|
|
|
|
update.message.reply_text(f'You do not have sufficient funds to send {amount} WOW. Check your /balance')
|
|
|
|
|
update.message.from_user.send_message(f'You do not have sufficient funds to send {amount} WOW. Check your /balance')
|
|
|
|
|
update.message.delete()
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
# get target user details
|
|
|
|
@ -63,10 +69,13 @@ def tip(update, context):
|
|
|
|
|
if 'tx_hash' in tx:
|
|
|
|
|
h = tx['tx_hash']
|
|
|
|
|
msg = f'Tipped @{target_un} {amount} WOW! Tx: {h}'
|
|
|
|
|
update.message.reply_text(msg)
|
|
|
|
|
update.message.from_user.send_message(msg)
|
|
|
|
|
update.message.delete()
|
|
|
|
|
else:
|
|
|
|
|
logging.error(f'Transaction failure details for {tipper.telegram_user} ({tipper.telegram_id}): {tx}')
|
|
|
|
|
update.message.reply_text(f'Failed to send a tip. Reason: "{tx["message"]}"')
|
|
|
|
|
update.message.from_user.send_message(f'Failed to send a tip. Reason: "{tx["message"]}"')
|
|
|
|
|
update.message.delete()
|
|
|
|
|
except Exception as e:
|
|
|
|
|
logging.error(f'Unable to send transfer: {e}. Debug: {update.message}')
|
|
|
|
|
update.message.reply_text('Failed to send a tip. Ask for help.')
|
|
|
|
|
update.message.from_user.send_message('Failed to send a tip. Ask for help.')
|
|
|
|
|
update.message.delete()
|
|
|
|
|