pluto/handler/commands.py

215 lines
6.7 KiB
Python
Raw Normal View History

2021-12-28 12:50:19 +00:00
# Other library imports
from json import dumps
class IRCCommands(object):
class trades(object):
name = "trades"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
"""
Get details of open trades and post on IRC.
"""
trades = agora.dashboard(send_irc=False, formatted=True)
2021-12-28 14:10:05 +00:00
if trades is False:
msg("Error getting trades.")
return
2021-12-28 12:50:19 +00:00
if not trades:
msg("No open trades.")
2021-12-28 14:10:05 +00:00
return
2021-12-28 12:50:19 +00:00
for trade_id in trades:
msg(trade_id)
class create(object):
name = "create"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
"""
Post an ad on AgoraDesk with the given country and currency code.
"""
posted = agora.create_ad(spl[1], spl[2])
if posted["success"]:
msg(f"{posted['response']['data']['message']}: {posted['response']['data']['ad_id']}")
else:
msg(posted["response"]["data"]["message"])
class messages(object):
name = "messages"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
"""
Get all messages for all open trades or a given trade.
"""
if length == 1:
2021-12-28 13:41:48 +00:00
messages = agora.get_all_messages(send_irc=False)
2021-12-28 14:10:05 +00:00
if messages is False:
msg("Error getting messages.")
return
2021-12-28 12:50:19 +00:00
if not messages:
msg("No messages.")
2021-12-28 14:10:05 +00:00
return
2021-12-28 12:50:19 +00:00
for message_id in messages:
for message in messages[message_id]:
msg(f"{message_id}: {message}")
msg("---")
elif length == 2:
messages = agora.get_messages(spl[1], send_irc=False)
if not messages:
msg("No messages.")
for message in messages:
msg(f"{spl[1]}: {message}")
class dist(object):
name = "dist"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
# Distribute out our ad to all countries in the config
2021-12-29 19:21:27 +00:00
for x in agora.dist_countries():
msg(dumps(x))
2021-12-28 12:50:19 +00:00
class find(object):
name = "find"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
"""
Find a transaction received by Revolut with the given reference and amount.
"""
try:
int(spl[2])
except ValueError:
msg("Amount is not an integer.")
rtrn = tx.find_tx(spl[1], spl[2])
if rtrn == "AMOUNT_INVALID":
msg("Reference found but amount invalid.")
elif not rtrn:
msg("Reference not found.")
else:
return dumps(rtrn)
class accounts(object):
name = "accounts"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
accounts = revolut.accounts()
2021-12-28 14:10:05 +00:00
accounts_posted = 0
if accounts is None:
msg("Error getting accounts.")
2021-12-28 12:50:19 +00:00
for account in accounts:
if account["balance"] > 0:
if "name" in account:
name = account["name"]
else:
name = "not_set"
msg(f"{name} {account['currency']}: {account['balance']}")
2021-12-28 14:10:05 +00:00
accounts_posted += 1
if accounts_posted == 0:
msg("No accounts with balances.")
2021-12-28 12:50:19 +00:00
class total(object):
name = "total"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
total_usd = revolut.get_total_usd()
2021-12-28 15:28:56 +00:00
if total_usd is False:
2021-12-28 12:50:19 +00:00
msg("Error getting total balance.")
msg(f"Total: {round(total_usd, 2)}USD")
class ping(object):
name = "ping"
authed = False
@staticmethod
def run(cmd, spl, length, authed, msg):
msg("Pong!")
2021-12-28 13:41:48 +00:00
class release_url(object):
name = "release_url"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
trades = agora.dashboard_release_urls()
if not trades:
msg("No trades.")
for trade in trades:
msg(trade)
2021-12-28 15:28:56 +00:00
class message(object):
name = "msg"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
if length > 2:
full_msg = " ".join(spl[2:])
2021-12-29 14:49:29 +00:00
reference = tx.ref_to_tx(spl[1])
if not reference:
msg(f"No such reference: {spl[1]}")
return
rtrn = agora.agora.contact_message_post(reference, full_msg)
msg(f"Sent {full_msg} to {reference}: {rtrn}")
2021-12-28 23:57:25 +00:00
class refs(object):
name = "refs"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
msg(f"References: {', '.join(tx.get_refs())}")
class ref(object):
name = "ref"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
if length == 2:
ref_data = tx.get_ref(spl[1])
if not ref_data:
2021-12-29 14:49:29 +00:00
msg(f"No such reference: {spl[1]}")
return
2021-12-28 23:57:25 +00:00
msg(f"{spl[1]}: {dumps(ref_data)}")
class delete(object):
name = "del"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
if length == 2:
ref_data = tx.get_ref(spl[1])
if not ref_data:
msg(f"No such reference: {spl[1]}")
return
tx.del_ref(spl[1])
msg(f"Deleted reference: {spl[1]}")
2021-12-29 19:21:27 +00:00
class release(object):
name = "release"
authed = True
@staticmethod
def run(cmd, spl, length, authed, msg, agora, revolut, tx):
if length == 2:
tx = tx.ref_to_tx(spl[1])
if not tx:
msg(f"No such reference: {spl[1]}")
return
rtrn = agora.release_funds(tx)
msg(dumps(rtrn))