mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 14:05:39 +00:00
7ca8468fcc
* Table top mode * Button Colour and tables columns * Bob does regex * Bob does regex2 * Updates from feedback * Stuff * Ensure funnction array being passed correctly * Array to String needed afterall * Cooker Test --------- Co-authored-by: Rekku <rekku@retrodeck.net>
52 lines
1.9 KiB
GDScript
52 lines
1.9 KiB
GDScript
extends Control
|
|
|
|
@onready var http_request: HTTPRequest = HTTPRequest.new()
|
|
|
|
func _ready():
|
|
add_child(http_request)
|
|
http_request.request_completed.connect(_on_request_completed)
|
|
_connect_signals()
|
|
#%backup_user_button.text += " - " + class_functions.rdhome + "/backup"
|
|
|
|
func _connect_signals() -> void:
|
|
%check_conn_button.pressed.connect(check_internet_connection)
|
|
%backup_user_button.pressed.connect(run_function.bind(%backup_user_button, "Start User Backup"))
|
|
|
|
func run_function(button: Button, message: String) -> void:
|
|
class_functions.logger("d",message)
|
|
match button.name:
|
|
"backup_user_button":
|
|
_run_backup(button)
|
|
|
|
func _run_backup(button: Button) -> void:
|
|
var original_txt = button.text
|
|
%progress_bar_backup.visible = true
|
|
button.text = "Backup Running"
|
|
var parameters = ["backup_retrodeck_userdata"]
|
|
var run_result = await class_functions.run_thread_command(class_functions.wrapper_command, parameters, true)
|
|
if run_result["exit_code"] == 0:
|
|
button.text = "Backup Complete - " + class_functions.rdhome + "/backup"
|
|
class_functions.logger("d","User Backup Completed")
|
|
await class_functions.wait(3.0)
|
|
button.text = original_txt
|
|
%progress_bar_backup.visible = false
|
|
else:
|
|
button.text = "Backup Failed"
|
|
class_functions.logger("e","User Backup Failed. " + run_result["exit_code"])
|
|
%progress_bar_backup.visible = false
|
|
|
|
func check_internet_connection():
|
|
class_functions.logger("i","Check Internet Connection")
|
|
%check_conn_button.text = "CHECK CONNECTION"
|
|
http_request.request("https://retrodeck.net/")
|
|
|
|
func _on_request_completed(_result, response_code, _headers, _body):
|
|
if response_code == 200:
|
|
class_functions.logger("i","Internet Connection Succesful")
|
|
%check_conn_button.button_pressed = true
|
|
%check_conn_button.text += " - CONNECTED"
|
|
else:
|
|
class_functions.logger("d","Internet Connection Failed")
|
|
%check_conn_button.button_pressed = false
|
|
%check_conn_button.text += " - NOT CONNECTED: " + str(response_code)
|