From 6d8db1ee47d3c0bb14133d3ab2e0a6bdc7ed60a0 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Thu, 22 Oct 2015 07:34:22 +0200 Subject: [PATCH] replaced guar with info command and add user double click to obtain the same result --- TODO.txt | 1 + web/Obj/brisk.phh | 60 ++++++++++++++++++++++++----------------------- web/commons.js | 7 +++++- web/room.js | 20 ++++++++++++++-- 4 files changed, 56 insertions(+), 32 deletions(-) diff --git a/TODO.txt b/TODO.txt index eebcac9..d107f29 100644 --- a/TODO.txt +++ b/TODO.txt @@ -17,6 +17,7 @@ WIP - new info system WIP - click management - show user info (RO) + - require command/info Phase2 - match counters (part 2) diff --git a/web/Obj/brisk.phh b/web/Obj/brisk.phh index 5fe56c6..a171273 100644 --- a/web/Obj/brisk.phh +++ b/web/Obj/brisk.phh @@ -140,15 +140,13 @@ $mlang_brisk = array( 'btn_backstand'=> array( 'it' => 'torna in piedi', 'en' => 'Connection to the database failed
All authentications are suspended temporarly, you login as normal user.
We are about the limitation'), 'tos_old' => array( 'it' => '%s ha sottoscritto dei Termini del Servizio antecedenti a quelli necessari per poter richiedere questa funzionalità.', - 'en' => 'EN %s ha sottoscritto dei Termini del Servizio antecedenti a quelli necessari per poter richiedere questa funzionalità.'), - 'gua_nfd' => array( 'it' => 'Non è stato trovato un garante per %s.', + 'en' => 'EN %s ha sottoscritto dei Termini del Servizio antecedenti a quelli necessarig per poter richiedere questa funzionalità.'), + 'inf_self' => array( 'it' => 'Non puoi informarti su te stesso.', + 'en' => 'EN Non puoi informarti su te stesso.'), + 'inf_nfd' => array( 'it' => 'Non è stato trovato un garante per %s.', 'en' => 'EN Non è stato trovato un garante per %s.'), - 'gua_self' => array( 'it' => '%s si è auto-garantito.', - 'en' => 'EN %s si è auto-garantito.'), - 'gua_info' => array( 'it' => 'Il garante di %s è %s.', - 'en' => 'EN Il garante di %s è %s.'), - 'gua_err' => array( 'it' => 'Error %d. Utilizzo: /guar <login>.', - 'en' => 'Error %d. Usage: /guar <login>.') + 'inf_err' => array( 'it' => 'Error %d. Utilizzo: /info <login>.', + 'en' => 'Error %d. Usage: /info <login>.') ); $G_lng = langtolng($G_lang); @@ -187,7 +185,7 @@ Dopo che è iniziata una partita per uscirne dovete chiedere agli altri gi
/tav <frase di invito> - invito per gli altri giocatori al tavolo dove si è seduti
/st <stato> - cambia l\'icona associata al tuo user; stato può valere: \\"normale\\", \\"fuori\\", \\"pausa\\", \\"cibo\\", \\"cane\\", \\"lavoro\\", \\"presente\\" oppure \\"sigaretta\\"
/cont <id partita> - quando si è a un tavolo per garantiti, permette di proseguire una partita giocata in precedenza con gli stessi giocatori -
/guar <login> - mostra il garante dell\'utente con il login passato come argomento +
/info <login> - mostra lo stato corrente dell\'utente passato come argomento e in che relazione siete
/authreq - se si è autenticati permette di garantire per un utente fidato
/mesgtoadm - se si è autenticati permette di lasciare un messaggio all\'amministratore del sito
/listen <all or auth> - se si è autenticati permette leggere solo i messaggi degli altri autenticati (auth) o di tutti (all) @@ -220,7 +218,7 @@ Dopo che è iniziata una partita per uscirne dovete chiedere agli altri gi
/tav <frase di invito> - invito per gli altri giocatori al tavolo dove si è seduti
/st <stato> - cambia l\'icona associata al tuo user; stato può valere: \\"normale\\", \\"fuori\\", \\"pausa\\", \\"cibo\\", \\"cane\\", \\"lavoro\\", \\"presente\\" oppure \\"sigaretta\\"
/cont <id partita> - quando si è a un tavolo per garantiti, permette di proseguire una partita giocata in precedenza con gli stessi giocatori -
/guar <login> - mostra il garante dell\'utente con il login passato come argomento +
/info <login> - mostra lo stato corrente dell\'utente passato come argomento e in che relazione siete
/authreq - se si è autenticati permette di garantire per un utente fidato
/mesgtoadm - se si è autenticati permette di lasciare un messaggio all\'amministratore del sito
/listen <all or auth> - se si è autenticati permette leggere solo i messaggi degli altri autenticati (auth) o di tutti (all) @@ -1454,7 +1452,6 @@ class Brisk return ($ret); } - function room_wakeup($user) { $table_idx = $user->table; @@ -1497,7 +1494,6 @@ class Brisk $remove_wagon = TRUE; } - /* aggiorna l'array dei giocatori al tavolo. */ $table->user_rem($this, $user); @@ -1647,10 +1643,11 @@ class Brisk } } - function guarantee_show($user, $user_login, $dt) + function info_show($user, $user_login, $dt) { GLOBAL $G_lang, $mlang_brisk, $G_base; + $mesg = ""; $user_code = -1; $ret = 0; @@ -1667,6 +1664,11 @@ class Brisk $ret = 3; break; } + if ($user_login == $user->name) { + $ret = 4; + $mesg = sprintf($mlang_brisk['inf_self'][$G_lang]); + break; + } if (($guar_item = $bdb->getitem_bycode($user_item->guar_code_get())) != FALSE) { $guar_login = $guar_item->login_get(); } @@ -1676,28 +1678,25 @@ class Brisk $user_tos_vers = $user_item->tos_vers_get(); if (versions_cmp($user_tos_vers, "1.2") < 0) { - $mesg = nickserv_msg($dt, sprintf($mlang_brisk['tos_old'][$G_lang], xcape($user_login))); + $mesg = sprintf($mlang_brisk['tos_old'][$G_lang], xcape($user_login)); } else if ($guar_login == "") { - $mesg = nickserv_msg($dt, sprintf($mlang_brisk['gua_nfd'][$G_lang], xcape($user_login))); - } - else if ($guar_login == $user_login) { - $mesg = nickserv_msg($dt, sprintf($mlang_brisk['gua_self'][$G_lang], xcape($user_login))); - } - else { - $mesg = nickserv_msg($dt, sprintf($mlang_brisk['gua_info'][$G_lang], - xcape($user_login), xcape($guar_login))); + $mesg = sprintf($mlang_brisk['inf_nfd'][$G_lang], xcape($user_login)); } } while (0); - if ($ret > 0) { - $mesg = nickserv_msg($dt, sprintf($mlang_brisk['gua_err'][$G_lang], $ret)); + if ($ret > 0 && $mesg == "") { + $mesg = sprintf($mlang_brisk['inf_err'][$G_lang], $ret); } - $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ".$mesg; - $user->step_inc(); + if ($ret != 0) { + $jret = json_encode(array("ret" => $ret, "mesg" => $mesg)); + } + else { + $jret = json_encode(array("ret" => 0, "mesg" => "", "guar" => $guar_login)); + } - return TRUE; + return $jret; } function room_outstandup($user) @@ -1851,6 +1850,8 @@ class Brisk GLOBAL $G_base, $G_alarm_passwd, $mlang_brisk, $G_lang; $only_you = FALSE; + fprintf(STDERR, "WE ARE HERE: [%s]\n", $mesg); + // common settings $msg = mb_substr($mesg, 6, 128, "UTF-8"); $curtime = time(); @@ -2057,10 +2058,11 @@ class Brisk $update_room = TRUE; } while (0); } // nick chat command - else if (strncmp($msg, "/guar ", 6) == 0 || $msg == "/guar") { + else if (strncmp($msg, "/info ", 6) == 0) { $guar_user = substr($msg, 6); - $this->guarantee_show($user, $guar_user, $dt); + error_log("here [" . $guar_user."]"); + echo $this->info_show($user, $guar_user, $dt); } else if (strncmp($msg, "/st ", 4) == 0) { log_main("chatt_send BEGIN"); diff --git a/web/commons.js b/web/commons.js index c42fc7b..b3c6138 100644 --- a/web/commons.js +++ b/web/commons.js @@ -358,7 +358,12 @@ function chatt_checksend(obj,e) } function act_chatt(value) { - send_mesg("chatt|"+encodeURIComponent(value)); + if (value.substring(0, 6) == "/info ") { + show_user_info(value.substring(6)); + } + else { + send_mesg("chatt|"+encodeURIComponent(value)); + } /* obj.disabled = true; obj.value = ""; diff --git a/web/room.js b/web/room.js index 4222b1e..c7efc62 100644 --- a/web/room.js +++ b/web/room.js @@ -437,10 +437,26 @@ function esco_cb() { act_logout(0); }; +var g_user_info_target = ""; + +function info_show(username) +{ + // ret = server_request('mesg', 'prefs|save','__POST__', 'prefs', JSON.stringify(g_prefs)); + var udata = server_request('mesg', 'chatt|/info ' + username); + + // FIXME: just to be finished + console.log(udata); +} + function click_update_cb(e) { - console.log("qui"); - console.log(e.target.innerHTML); + if (g_user_info_target == e.target.innerHTML) { + g_user_info_target = ""; + info_show(e.target.innerHTML); + } + else { + g_user_info_target = e.target.innerHTML; + } } function j_tab_cont(table_idx, data) -- 2.17.1