elements.py/cli.py

115 lines
3.0 KiB
Python
Raw Normal View History

import os
2023-11-09 16:14:57 +00:00
import json
import subprocess
import sys
from src.help import help
2023-11-09 16:14:57 +00:00
2023-11-09 17:10:46 +00:00
2023-11-09 16:29:15 +00:00
def clear_console():
# Clear console based on the operating system
2023-11-09 17:10:46 +00:00
if os.name == "nt": # For Windows
os.system("cls")
2023-11-09 16:29:15 +00:00
else: # For Unix/Linux/Mac
2023-11-09 17:10:46 +00:00
os.system("clear")
2023-11-09 16:29:15 +00:00
2023-11-09 16:14:57 +00:00
def check_python_installation():
try:
python_version = subprocess.check_output(
["python", "--version"], stderr=subprocess.STDOUT, universal_newlines=True
)
print(f"Python is already installed ({python_version})")
return True
except FileNotFoundError:
return False
2023-11-09 17:10:46 +00:00
2023-11-09 16:14:57 +00:00
def install_python():
print("Python is not installed. Please download and install it from:")
print("https://www.python.org/downloads/")
input("Press Enter to continue after installing Python...")
sys.exit(1)
2023-11-09 17:10:46 +00:00
2023-11-09 16:14:57 +00:00
def check_rpc_config():
if os.path.exists("rpc_config.json"):
return True
return False
2023-11-09 17:10:46 +00:00
2023-11-09 16:14:57 +00:00
def get_rpc_config():
rpc_host = input("Enter the RPC host: ")
rpc_port = input("Enter the RPC port: ")
rpc_user = input("Enter the RPC user: ")
rpc_password = input("Enter the RPC password: ")
rpc_config = {
"rpc_host": rpc_host,
"rpc_port": rpc_port,
"rpc_user": rpc_user,
"rpc_password": rpc_password,
}
with open("rpc_config.json", "w") as config_file:
json.dump(rpc_config, config_file)
2023-11-09 17:10:46 +00:00
def run_script(script_name):
script_path = os.path.join("src", f"{script_name}.py")
2023-11-09 16:14:57 +00:00
if os.path.exists(script_path):
2023-11-09 17:10:46 +00:00
# print(f"Running {script_name}...")
os.system(f"python {script_path}")
else:
print(f"Error: {script_name} not found!")
2023-11-09 17:10:46 +00:00
def main():
setup_completed = False
2023-11-09 16:14:57 +00:00
while not check_python_installation():
install_python()
subprocess.run(["pip", "install", "-r", "requirements.txt"])
while not check_rpc_config():
2023-11-09 16:29:15 +00:00
clear_console()
2023-11-09 16:14:57 +00:00
print("RPC config file not found.")
user_input = input(
"Do you have credentials for your Elements node RPC (yes/no)? "
).lower()
if user_input in ["no", "n"]:
print(
"Please follow the instructions to set up an Elements node: [https://docs.liquid.net/docs/building-on-liquid]"
)
input("Press Enter to continue after setting up the Elements node...")
elif user_input in ["yes", "y"]:
get_rpc_config()
else:
print("Invalid input. Please enter 'y' or 'n'.")
setup_completed = True
2023-11-09 16:14:57 +00:00
print("You are ready to proceed.")
clear_console()
2023-11-09 16:14:57 +00:00
print("\nElements Python Command Line Interface")
help()
2023-11-09 16:29:15 +00:00
while True:
2023-11-09 15:12:11 +00:00
user_input = input("Enter a command: ")
2023-11-09 17:10:46 +00:00
if user_input.lower() == "exit":
2023-11-09 15:12:11 +00:00
break
2023-11-09 17:10:46 +00:00
if user_input.lower() == "help":
2023-11-09 15:12:11 +00:00
help()
if setup_completed:
run_script(user_input)
2023-11-09 15:12:11 +00:00
else:
print("Error: Setup not completed. Use 'help' to see available commands.")
2023-11-09 17:10:46 +00:00
if __name__ == "__main__":
main()