From a04b6a2a21b26ff49b6e9b5d196997faf80e5ccf Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Wed, 2 Jan 2019 11:38:48 +0100 Subject: [PATCH] some client fixes --- client-api/api.php | 7 +++--- client/js/teaforo.ts | 4 +++- shared/js/load.ts | 22 +++++++++++++++++-- .../profiles/identities/TeaForumIdentity.ts | 4 ++++ 4 files changed, 31 insertions(+), 6 deletions(-) diff --git a/client-api/api.php b/client-api/api.php index 044b02fc..174e9103 100644 --- a/client-api/api.php +++ b/client-api/api.php @@ -73,7 +73,7 @@ echo ("type\thash\tpath\tname\n"); foreach (list_dir($UI_RAW_BASE_PATH) as $file) { $type_idx = strrpos($file, "."); - $type = substr($file, $type_idx + 1); + $type = $type_idx > 0 ? substr($file, $type_idx + 1) : ""; if($type == "php") $type = "html"; $name_idx = strrpos($file, "/"); @@ -81,9 +81,10 @@ $path = $name_idx > 0 ? substr($file, 0, $name_idx) : "."; $name_idx = strrpos($name, "."); - $name = substr($name, 0, $name_idx); + if($name_idx > 0) + $name = substr($name, 0, $name_idx); - echo $type . "\t" . sha1_file($UI_RAW_BASE_PATH . $file) . "\t" . $path . "\t" . $name . "." . $type . "\n"; + echo $type . "\t" . sha1_file($UI_RAW_BASE_PATH . $file) . "\t" . $path . "\t" . $name . (strlen($type) > 0 ? "." . $type : "") . "\n"; } die; } else if($_GET["type"] === "file") { diff --git a/client/js/teaforo.ts b/client/js/teaforo.ts index 974dc202..a6f608a8 100644 --- a/client/js/teaforo.ts +++ b/client/js/teaforo.ts @@ -1,9 +1,11 @@ +import TeaForumIdentity = profiles.identities.TeaForumIdentity; + const ipc = require("electron").ipcRenderer; let callback_listener: (() => any)[] = []; ipc.on('teaforo-update', (event, data: forum.UserData) => { console.log("Got data update: %o", data); - forumIdentity = data ? new TeaForumIdentity(data.application_data, data.application_data_sign) : undefined; + profiles.identities.set_static_identity(data ? new TeaForumIdentity(data.application_data, data.application_data_sign) : undefined); try { for(let listener of callback_listener) setImmediate(listener); diff --git a/shared/js/load.ts b/shared/js/load.ts index 67ce17c3..7aebe62f 100644 --- a/shared/js/load.ts +++ b/shared/js/load.ts @@ -56,9 +56,9 @@ namespace loader { }); return; } - const task_array = tasks[stage] || (tasks[stage] = []); + const task_array = tasks[stage] || []; task_array.push(task); - task_array.sort((a, b) => a.priority < b.priority ? 1 : 0); + tasks[stage] = task_array.sort((a, b) => a.priority > b.priority ? 1 : 0); } export async function execute() { @@ -78,6 +78,7 @@ namespace loader { const promises: Promise[] = []; for(const task of current_tasks) { try { + console.debug("Executing loader %s (%d)", task.name, task.priority); promises.push(task.function().catch(error => { errors.push({ task: task, @@ -560,6 +561,23 @@ loader.register_task(loader.Stage.INITIALIZING, { priority: 50 }); +/* TeaClient */ +if(window.require) { + const path = require("path"); + const remote = require('electron').remote; + module.paths.push(path.join(remote.app.getAppPath(), "/modules")); + module.paths.push(path.join(path.dirname(remote.getGlobal("browser-root")), "js")); + + const connector = require("renderer"); + console.log(connector); + + loader.register_task(loader.Stage.INITIALIZING, { + name: "teaclient initialize", + function: connector.initialize, + priority: 40 + }); +} + loader.register_task(loader.Stage.INITIALIZING, { name: "webassembly tester", function: loader_webassembly.test_webassembly, diff --git a/shared/js/profiles/identities/TeaForumIdentity.ts b/shared/js/profiles/identities/TeaForumIdentity.ts index 185c1a29..f8059f39 100644 --- a/shared/js/profiles/identities/TeaForumIdentity.ts +++ b/shared/js/profiles/identities/TeaForumIdentity.ts @@ -87,6 +87,10 @@ namespace profiles.identities { let static_identity: TeaForumIdentity; + export function set_static_identity(identity: TeaForumIdentity) { + static_identity = identity; + } + export function setup_forum() { const user_data = settings.static("forum_user_data") as string; const user_sign = settings.static("forum_user_sign") as string;