add license, move folders

This commit is contained in:
Nordup 2024-05-04 00:14:24 +04:00
parent 185cc74060
commit 271c4a46a1
132 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,25 @@
extends Node
@export var api: ApiSettings
@export var gate_events: GateEvents
func _ready() -> void:
gate_events.gate_config_loaded.connect(send_discover_gate)
func send_discover_gate(c_url: String, c_gate: ConfigGate) -> void:
var body = {}
body.url = c_url
body.title = c_gate.title
body.description = c_gate.description
body.image = c_gate.image_url
body.resource_pack = c_gate.resource_pack_url
body.libraries = c_gate.libraries
var url = api.discover_gate
var callback = func(_result, code, _headers, _body):
if code != 200: Debug.logclr("Request send_discover_gate failed. Code " + str(code), Color.RED)
var err = await Backend.request(url, callback, body, HTTPClient.METHOD_POST)
if err != HTTPRequest.RESULT_SUCCESS: Debug.logclr("Cannot send request send_discover_gate", Color.RED)