Merge branch 'dev'
All checks were successful
Build Docker / Build Image (push) Successful in 41s

This commit is contained in:
Nathan Woodburn 2024-11-21 19:35:56 +11:00
commit aa92220756
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1
4 changed files with 95 additions and 19 deletions

2
.gitignore vendored
View File

@ -10,3 +10,5 @@ ignore/
plugins/signatures.json plugins/signatures.json
.venv/ .venv/
user_data/

View File

@ -1040,6 +1040,9 @@ def settings():
if success == None: if success == None:
success = "" success = ""
if not os.path.exists(".git"):
return render_template("settings.html", account=account,sync=account_module.getNodeSync(),
error=error,success=success,version="Error")
info = gitinfo.get_git_info() info = gitinfo.get_git_info()
branch = info['refs'] branch = info['refs']
if branch != "main": if branch != "main":

View File

@ -5,7 +5,6 @@ import sys
import hashlib import hashlib
def listPlugins(): def listPlugins():
plugins = [] plugins = []
for file in os.listdir("plugins"): for file in os.listdir("plugins"):
@ -45,6 +44,7 @@ def pluginExists(plugin: str):
return True return True
return False return False
def verifyPlugin(plugin: str): def verifyPlugin(plugin: str):
signatures = [] signatures = []
try: try:
@ -75,12 +75,6 @@ def hashPlugin(plugin: str):
return sha256.hexdigest() return sha256.hexdigest()
def getPluginData(pluginStr: str): def getPluginData(pluginStr: str):
plugin = importlib.import_module("plugins."+pluginStr) plugin = importlib.import_module("plugins."+pluginStr)
@ -104,10 +98,12 @@ def getPluginData(pluginStr: str):
return info return info
def getPluginFunctions(plugin: str): def getPluginFunctions(plugin: str):
plugin = importlib.import_module("plugins."+plugin) plugin = importlib.import_module("plugins."+plugin)
return plugin.functions return plugin.functions
def runPluginFunction(plugin: str, function: str, params: dict, authentication: str): def runPluginFunction(plugin: str, function: str, params: dict, authentication: str):
plugin_module = importlib.import_module("plugins."+plugin) plugin_module = importlib.import_module("plugins."+plugin)
if function not in plugin_module.functions: if function not in plugin_module.functions:
@ -134,7 +130,6 @@ def runPluginFunction(plugin: str, function: str, params: dict, authentication:
if pluginHash not in signatures: if pluginHash not in signatures:
return {"error": "Plugin not verified"} return {"error": "Plugin not verified"}
# Call the function with provided parameters # Call the function with provided parameters
try: try:
result = plugin_function(params, authentication) result = plugin_function(params, authentication)
@ -144,14 +139,17 @@ def runPluginFunction(plugin: str, function: str, params: dict, authentication:
return {"error": str(e)} return {"error": str(e)}
# return plugin.runFunction(function, params, authentication) # return plugin.runFunction(function, params, authentication)
def getPluginFunctionInputs(plugin: str, function: str): def getPluginFunctionInputs(plugin: str, function: str):
plugin = importlib.import_module("plugins."+plugin) plugin = importlib.import_module("plugins."+plugin)
return plugin.functions[function]["params"] return plugin.functions[function]["params"]
def getPluginFunctionReturns(plugin: str, function: str): def getPluginFunctionReturns(plugin: str, function: str):
plugin = importlib.import_module("plugins."+plugin) plugin = importlib.import_module("plugins."+plugin)
return plugin.functions[function]["returns"] return plugin.functions[function]["returns"]
def getDomainFunctions(): def getDomainFunctions():
plugins = listPlugins() plugins = listPlugins()
domainFunctions = [] domainFunctions = []
@ -166,6 +164,7 @@ def getDomainFunctions():
}) })
return domainFunctions return domainFunctions
def getSearchFunctions(): def getSearchFunctions():
plugins = listPlugins() plugins = listPlugins()
searchFunctions = [] searchFunctions = []
@ -180,6 +179,7 @@ def getSearchFunctions():
}) })
return searchFunctions return searchFunctions
def getDashboardFunctions(): def getDashboardFunctions():
plugins = listPlugins() plugins = listPlugins()
dashboardFunctions = [] dashboardFunctions = []

View File

@ -34,6 +34,45 @@ functions = {
"type": "text" "type": "text"
} }
} }
},
"disable":{
"name": "Disable Automations",
"type": "default",
"description": "Disable Automations for this wallet",
"params": {},
"returns": {
"Status":
{
"name": "Status",
"type": "text"
}
}
},
"enable":{
"name": "Enable Automations",
"type": "default",
"description": "Enable Automations for this wallet",
"params": {},
"returns": {
"Status":
{
"name": "Status",
"type": "text"
}
}
},
"list":{
"name": "List Disabled Wallets",
"type": "default",
"description": "List wallets with automations disabled",
"params": {},
"returns": {
"wallets":
{
"name": "List of wallets",
"type": "list"
}
}
} }
} }
@ -43,16 +82,43 @@ started = False
def automation(params, authentication): def automation(params, authentication):
global started global started
wallet = authentication.split(":")[0]
if os.path.exists(f"user_data/{wallet}.autoRenew"):
return {"Status": "Automations disabled"}
if started: if started:
return {"Status": "Auto Renews running"} return {"Status": "Automations running"}
started = True started = True
threading.Thread(target=automations_background, args=(authentication,)).start() threading.Thread(target=automations_background, args=(authentication,)).start()
return {"Status": "Started Auto Renews"} return {"Status": "Starting Automations..."}
def disable(params, authentication):
# Create walletname file in user_data
wallet = authentication.split(":")[0]
with open(f"user_data/{wallet}.autoRenew", "w") as f:
f.write(f"This file is used to disable automations for '{wallet}' wallet.\nDelete this file to enable automations.")
return {"Status": "Disabled Automations"}
def enable(params, authentication):
# Delete walletname file in user_data
wallet = authentication.split(":")[0]
if os.path.exists(f"user_data/{wallet}.autoRenew"):
os.remove(f"user_data/{wallet}.autoRenew")
return {"Status": "Enabled Automations"}
def list(params, authentication):
wallets = []
for file in os.listdir("user_data"):
if file.endswith(".autoRenew"):
wallets.append(file[:-10])
return {"wallets": wallets}
# Background function to run the automations # Background function to run the automations
def automations_background(authentication): def automations_background(authentication):
while True: while True:
print("Running automations")
# Get account details # Get account details
account_name = account.check_account(authentication) account_name = account.check_account(authentication)
password = ":".join(authentication.split(":")[1:]) password = ":".join(authentication.split(":")[1:])
@ -64,12 +130,17 @@ def automations_background(authentication):
} }
} }
if os.path.exists(f"user_data/{account_name}.autoRenew"):
print("Skipping Automations")
time.sleep(300)
continue
print("Running automations")
try: try:
# Try to select and login to the wallet # Try to select and login to the wallet
response = account.hsw.rpc_selectWallet(account_name) response = account.hsw.rpc_selectWallet(account_name)
if response['error'] is not None: if response['error'] is not None:
return return
response = account.hsw.rpc_walletPassphrase(password,10) response = account.hsw.rpc_walletPassphrase(password,30)
if response['error'] is not None: if response['error'] is not None:
return return
# Try to send the batch of all renew, reveal and redeem actions # Try to send the batch of all renew, reveal and redeem actions