prefix_path="/brisk/"
brisk_conf="brisk_spu.conf.pho"
web_only="FALSE"
-
+test_add="FALSE"
#
# functions
function usage () {
echo "$1 -h"
echo "$1 chk - run lintian on all ph* files."
echo "$1 pkg - build brisk packages."
- echo "$1 [-W] [-n 3|5] [-c 3|8] [-t <(n>=4)>] [-T <auth_tab>] [-A <apache-conf>] [-a <auth_file_name>] [-f <conffile>] [-p <outconf>] [-U <usock_path>] [-u <sys_user>] [-d <TRUE|FALSE>] [-w <web_dir>] [-k <ftok_dir>] [-l <legal_path>] [-y <proxy_path>] [-P <prefix_path>]"
+ echo "$1 [-W] [-n 3|5] [-c 3|8] [-t <(n>=4)>] [-T <auth_tab>] [-A <apache-conf>] [-a <auth_file_name>] [-f <conffile>] [-p <outconf>] [-U <usock_path>] [-u <sys_user>] [-d <TRUE|FALSE>] [-w <web_dir>] [-k <ftok_dir>] [-l <legal_path>] [-y <proxy_path>] [-P <prefix_path>] [-x]"
echo " -h this help"
echo " -f use this config file"
echo " -p save preferences in the file"
echo " -C config filename - def. \"$brisk_conf\""
echo " -U unix socket path - def. \"$usock_path\""
echo " -u system user to run brisk dae - def. \"$sys_user\""
+ echo " -x copy tests as normal php - def. \"$test_add\""
echo
}
-u*) sys_user="$(get_param "-u" "$1" "$2")"; sh=$?;;
system) action=system;;
-W) web_only="TRUE";;
+ -x) test_add="TRUE";;
-h) usage $0; exit 0;;
*) usage $0; exit 1;;
esac
echo " usock_path: \"$usock_path\""
echo " sys_user: \"$sys_user\""
echo " web_only: \"$web_only\""
+echo " test_add: \"$test_add\""
if [ ! -z "$outconf" ]; then
(
echo "usock_path=\"$usock_path\""
echo "sys_user=\"$sys_user\""
echo "web_only=\"$web_only\""
+ echo "test_add=\"$test_add\""
) > "$outconf"
fi
for i in $(find web -name '.htaccess' -o -name '*.php' -o -name '*.phh' -o -name '*.pho' -o -name '*.css' -o -name '*.js' -o -name '*.mp3' -o -name '*.swf' -o -name 'terms-of-service*' | sed 's/^....//g'); do
install -m 644 "web/$i" "${web_path}__/$i"
done
+if [ "$test_add" = "TRUE" ]; then
+ for i in $(find webtest -name '.htaccess' -o -name '*.php' -o -name '*.phh' -o -name '*.pho' -o -name '*.css' -o -name '*.js' -o -name '*.mp3' -o -name '*.swf' -o -name 'terms-of-service*' | sed 's/^........//g'); do
+ install -m 644 "webtest/$i" "${web_path}__/$i"
+ done
+fi
+
chmod 755 "${web_path}__/spush/brisk-spush.php"
prefix_path_len=$(echo -n "$prefix_path" | wc -c)
return ($user_obj);
}
+ function user_add($login, $pass, $email, $type, $disa_reas, $guar_code) {
+ GLOBAL $G_dbpfx;
+
+ $usr_sql = sprintf("INSERT INTO %susers (login, pass, email, type, disa_reas, guar_code)
+ VALUES ('%s', '%s', '%s', %d, %d, %d) RETURNING *;",
+ $G_dbpfx, escsql(strtolower($login)), escsql($pass), escsql($email),
+ $type, $disa_reas, $guar_code);
+
+ if ( ! (($usr_pg = $this->query($usr_sql)) != FALSE && pg_affected_rows($usr_pg) == 1) ) {
+ return FALSE;
+ }
+ $usr_obj = pg_fetch_object($usr_pg, 0);
+
+ return $usr_obj;
+ }
+
+ function transaction($cmd) {
+ if ($cmd != "BEGIN" && $cmd != "COMMIT" && $cmd != "ROLLBACK")
+ return FALSE;
+
+ $trans_sql = sprintf("%s;", $cmd);
+ if (($trans_pg = $this->query($trans_sql)) == FALSE) {
+ return FALSE;
+ }
+
+ return (TRUE);
+ }
+
+ function mail_reserve_code() {
+ GLOBAL $G_dbpfx;
+
+ $mail_sql = sprintf("SELECT nextval('%smails_code_seq'::regclass) AS nextval;", $G_dbpfx);
+ if (($mail_pg = $this->query($mail_sql)) == FALSE) {
+ return FALSE;
+ }
+ if (pg_numrows($mail_pg) != 1)
+ return FALSE;
+
+ $mail_obj = pg_fetch_object($mail_pg, 0);
+
+ return ($mail_obj->nextval);
+ }
+
+ function check_record_by_login_or_email($login, $email) {
+ GLOBAL $G_dbpfx;
+
+ $arr_fie = array('login', 'email');
+ $arr_val = array($login, $email);
+
+ for ($i = 0 ; $i < 2 ; $i++) {
+ $user_sql = sprintf("SELECT * FROM %susers WHERE %s = lower('%s');",
+ $G_dbpfx, $arr_fie[$i], escsql($arr_val[$i]));
+ if (($user_pg = $this->query($user_sql)) == FALSE) {
+ fprintf(STDERR, "QUERY [%s]_ FALSE", $user_sql);
+ return (3);
+ }
+ if (pg_numrows($user_pg) == 1) {
+ return ($i + 1);
+ }
+ }
+
+ return (0);
+ }
+
function getrecord_bycode($code) {
GLOBAL $G_dbpfx;
/*
* brisk - index_wr.php
*
- * Copyright (C) 2006-2012 Matteo Nastasi
+ * Copyright (C) 2006-2014 Matteo Nastasi
* mailto: nastasi@alternativeoutput.it
* matteo.nastasi@milug.org
* web: http://www.alternativeoutput.it
*
*/
-// require_once("Obj/brisk.phh");
-// require_once("Obj/auth.phh");
-// require_once("Obj/proxyscan.phh");
-
-// Use of proxies isn't allowed.
-// if (is_proxy()) {
-// sleep(5);
-// exit;
-// }
-
$mlang_indwr = array( 'btn_backtotab' => array( 'it' => 'Torna ai tavoli.',
'en' => 'Back to tables.' ),
'warrrepl' => array( 'it' => '<br>Il nominativo è stato inoltrato all\'amministratore.<br><br>Nell\'arco di pochi giorni verrà<br><br>notificata al garantito l\'avvenuta registrazione.',
'badsit_a' => array( 'it' => '<br>Tu o qualcuno col tuo stesso indirizzo IP si è alzato da un tavolo senza il consenso degli altri giocatori.<br><br>Dovrai aspettare ancora ',
'en' => '<br>You or someone with your same IP address is standing up from a table without the permission of the other players <br><br>You will wait '),
'badsit_b' => array( 'it' => ' prima di poterti sedere nuovamente.<br><br>Se non sei stato tu ad alzarti e possiedi un login con password, autenticandoti con quello, potrai accedere.',
- 'en' => ' before you can sit down again. If you don\'t leave the table and you have a login with a password, authenticating with this one you will access')
+ 'en' => ' before you can sit down again. If you don\'t leave the table and you have a login with a password, authenticating with this one you will access'),
+ 'nu_msubj' => array( 'it' => 'Brisk: verifica email',
+ 'en' => 'Brisk: email verification'),
+ 'nu_mtext' => array( 'it' =>
+'Ciao, sono l\' amministratore del sito di Brisk.
+
+L\' utente \'%s\' ha garantito per te
+con accesso \'%s\' e password \'%s\',
+vai al link: %s/mailmgr.php?id=%s
+per confermare il tuo indirizzo di posta elettronica.
+
+Una volta verificato ti sarà possibile accedere al sito.
+
+Saluti e buone partite, mop.',
+ 'en' => 'EN mtext %s %s %s'),
+ 'nu_mhtml' => array( 'it' => 'Ciao, sono l\' amministratore del sito di Brisk.<br><br>
+L\' utente \'%s\' ha garantito per te<br>
+con accesso \'%s\' e password \'%s\'<br>
+<a href="%s/mailmgr.php?id=%s">clicca qui</a> per confermare il tuo indirizzo di posta elettronica.<br><br>
+Una volta verificato ti sarà possibile accedere al sito.<br><br>
+Saluti e buone partite, mop.<br>',
+ 'en' => 'EN mhtml %s %s %s %s'),
+ 'nu_gtext' => array( 'it' =>
+'Ciao %s, sono l\' amministratore del sito di Brisk.
+
+Ti volevo avvisare che ho attivato i login di \'%s\' che hai
+garantito.
+
+Ti ricordo che i login vanno dati a persone di fiducia, se 3
+di quelli che hai autenticato verranno segnati come molestatori
+verrà sospeso anche il tuo accesso.
+
+Grazie dell\' impegno, mop.',
+ 'en' => ''),
+
+ 'nu_ghtml' => array( 'it' =>
+'Ciao %s, sono l\' amministratore del sito di Brisk.<br><br>
+Ti volevo avvisare che ho attivato i login di \'%s\' che hai
+garantito.<br><br>
+Ti ricordo che i login vanno dati a persone di fiducia, se 3
+di quelli che hai autenticato verranno segnati come molestatori
+verrà sospeso anche il tuo accesso.<br><br>
+Grazie dell\' impegno, mop.',
+ 'en' => '')
);
define('LICMGR_CHO_ACCEPT', 0);
function index_wr_main(&$brisk, $remote_addr_full, $get, $post, $cookie)
{
- GLOBAL $G_shutdown, $G_black_list, $G_lang, $G_room_help, $G_room_about, $G_room_passwdhowto, $mlang_indwr;
+ GLOBAL $G_shutdown, $G_black_list, $G_lang, $G_room_help, $G_room_about;
+ GLOBAL $G_mail_seed, $G_mail_domain, $G_room_passwdhowto, $mlang_indwr;
GLOBAL $G_tos_vers;
$remote_addr = addrtoipv4($remote_addr_full);
log_wr("INFO:SKIP:argz == warranty name: [".$cli_name."] AUTH: ".($user->flags & USER_FLAG_AUTH));
if ($user->flags & USER_FLAG_AUTH) {
- if (($wa_lock = Warrant::lock_data(TRUE)) != FALSE) {
- if (($fp = @fopen(LEGAL_PATH."/warrant.txt", 'a')) != FALSE) {
- /* Unix time | session | nickname | IP | where was | mesg */
- fwrite($fp, sprintf("%ld|%s|%s|%s|\n", $curtime, xcapelt($user->name), xcapelt(urldecode($cli_name)), xcapelt(urldecode($cli_email))));
- fclose($fp);
+ if (0 == 1) {
+ if (($wa_lock = Warrant::lock_data(TRUE)) != FALSE) {
+ if (($fp = @fopen(LEGAL_PATH."/warrant.txt", 'a')) != FALSE) {
+ /* Unix time | session | nickname | IP | where was | mesg */
+ fwrite($fp, sprintf("%ld|%s|%s|%s|\n", $curtime, xcapelt($user->name), xcapelt(urldecode($cli_name)), xcapelt(urldecode($cli_email))));
+ fclose($fp);
+ }
+ Warrant::unlock_data($wa_lock);
+ $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
+ /* MLANG: "<br>Il nominativo è stato inoltrato all\'amministratore.<br><br>Nell\'arco di pochi giorni vi verrà<br><br>notificata l\'avvenuta registrazione." */
+ $user->comm[$user->step % COMM_N] .= show_notify($mlang_indwr['warrrepl'][$G_lang], 0, $mlang_indwr['btn_close'][$G_lang], 400, 150);
+ $user->step_inc();
+ echo "1";
}
- Warrant::unlock_data($wa_lock);
- $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
- /* MLANG: "<br>Il nominativo è stato inoltrato all\'amministratore.<br><br>Nell\'arco di pochi giorni vi verrà<br><br>notificata l\'avvenuta registrazione." */
- $user->comm[$user->step % COMM_N] .= show_notify($mlang_indwr['warrrepl'][$G_lang], 0, $mlang_indwr['btn_close'][$G_lang], 400, 150);
- $user->step_inc();
- echo "1";
- }
+ else {
+ /* MLANG: "<b>E\' occorso un errore durante il salvataggio, riprova o contatta l\'amministratore.</b>" */
+ $mesg_to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_indwr['commerr'][$G_lang]);
+ }
+ } // 0 == 1
else {
- /* MLANG: "<b>E\' occorso un errore durante il salvataggio, riprova o contatta l\'amministratore.</b>" */
- $mesg_to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_indwr['commerr'][$G_lang]);
+ // check existence of username or email
+ $is_trans = FALSE;
+ do {
+ if (($bdb = BriskDB::create()) == FALSE)
+ break;
+
+ $cli_name = urldecode($cli_name);
+ $cli_email = urldecode($cli_email);
+
+ // check for already used fields
+ if (($idret = $bdb->check_record_by_login_or_email($cli_name, $cli_email)) != 0) {
+ $mesg_to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV,
+ ($idret == 1 ? "login già in uso" :
+ ($idret == 2 ? "email già utilizzata" : "errore sconosciuto"))
+ );
+ break;
+ }
+ // insert the new user disabled with reason NU_MAILED
+ if (($usr_obj = $bdb->user_add($cli_name, $the_pass, $cli_email,
+ USER_FLAG_TY_DISABLE,
+ USER_DIS_REA_NU_TOBECHK, $user->code)) == FALSE) {
+ fprintf(STDERR, "user_add FAILED\n");
+ break;
+ }
+
+ $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
+ /* MLANG: "<br>Il nominativo è stato inoltrato all\'amministratore.<br><br>Nell\'arco di pochi giorni vi verrà<br><br>notificata l\'avvenuta registrazione." */
+ $user->comm[$user->step % COMM_N] .= show_notify($mlang_indwr['warrrepl'][$G_lang], 0, $mlang_indwr['btn_close'][$G_lang], 400, 150);
+ $user->step_inc();
+ echo "1";
+ } while(FALSE);
}
}