3 * brisk - dbase_pgsql.phh
5 * Copyright (C) 2006-2011 Matteo Nastasi
6 * mailto: nastasi@alternativeoutput.it
7 * matteo.nastasi@milug.org
8 * web: http://www.alternativeoutput.it
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details. You should have received a
19 * copy of the GNU General Public License along with this program; if
20 * not, write to the Free Software Foundation, Inc, 59 Temple Place -
21 * Suite 330, Boston, MA 02111-1307, USA.
25 require_once("${G_base}Obj/dbase_base.phh");
27 $escsql_from = array( "\\", "'" );
28 $escsql_to = array( "\\\\", "\\'" );
32 GLOBAL $escsql_from, $escsql_to;
34 return str_replace($escsql_from, $escsql_to, $s);
39 static $dbcnnx = FALSE;
46 if (DBConn::$dbcnnx == FALSE) {
47 if (!(DBConn::$dbcnnx = @pg_connect ($G_dbauth))) {
48 echo "DB connection failed.";
52 $this->db = DBConn::$dbcnnx;
70 GLOBAL $DOCUMENT_ROOT, $G_dbpfx, $G_false;
71 log_main("BriskDB create:start");
73 $this->dbconn = new DBConn();
75 log_main("BriskDB create:end");
82 function login_exists($login)
86 /* check the existence of the nick in the BriskDB */
87 log_main("login_exists: ".$login);
89 $user_sql = sprintf("SELECT * FROM %susers WHERE login = lower('%s') AND (type & CAST (X'%08x' as integer)) = 0;",
90 $G_dbpfx, escsql($login), USER_FLAG_TY_DISABLE);
91 if (($user_pg = pg_query($this->dbconn->db(), $user_sql)) != FALSE)
92 if (pg_numrows($user_pg) == 1)
98 function &getrecord_bylogin($login) {
99 GLOBAL $G_false, $G_dbpfx;
101 $user_sql = sprintf("SELECT * FROM %susers WHERE login = lower('%s') AND (type & CAST (X'%08x' as integer)) = 0;", $G_dbpfx, escsql($login), USER_FLAG_TY_DISABLE);
102 if (($user_pg = pg_query($this->dbconn->db(), $user_sql)) == FALSE)
105 if (pg_numrows($user_pg) != 1)
108 $user_obj = pg_fetch_object($user_pg, 0);
115 function &login_verify($login, $pass)
117 GLOBAL $G_dbpfx, $G_false;
121 log_main("login_verify: ".$login);
124 //O /* check the existence of the nick in the BriskDB */
125 //O for ($i = 0 ; $i < $this->item_n ; $i++) {
126 //O log_main("login_verify: BEGIN");
128 if (($user_obj = $this->getrecord_bylogin($login)) == FALSE)
131 log_main("login[".$user_obj->code."]: ".$user_obj->login);
133 /* if it exists check for a valid challenge */
134 if (($a_sem = Challenges::lock_data()) != FALSE) {
135 if (($chals = &Challenges::load_data()) != FALSE) {
136 for ($e = 0 ; $e < $chals->item_n ; $e++) {
138 log_main("challenge[".$e."]: ".$chals->item[$e]->login);
139 if (strcmp($login, $chals->item[$e]->login) == 0) {
140 log_main("login_verify [".$pass."] with [".md5($chals->item[$e]->token.$user_obj->pass)."]");
142 if (strcmp($pass, md5($chals->item[$e]->token.$user_obj->pass)) == 0) {
143 log_main("login_verify SUCCESS for ".$login);
146 $ret = LoginDBItem::LoginDBItemFromRecord($user_obj);
150 } // end for ($e = 0 ...
153 if ($chals->ismod()) {
154 Challenges::save_data(&$chals);
157 Challenges::unlock_data($a_sem);
160 // O } // if (strcasecmp($this->item[$i]->login, ...
166 function &getitem_bylogin($login, &$id) {
172 log_main("getitem_bylogin: ".$login);
174 if (($user_obj = $this->getrecord_bylogin($login)) == FALSE)
177 $id = $user_obj->code;
178 return (LoginDBItem::LoginDBItemFromRecord($user_obj));
182 function getmail($login)
186 if (($ret = $this->getrecord_bylogin($login)) == FALSE)
189 return ($ret->email);
192 function addusers_from_olddb($olddb, &$cont)
196 for ($i = 0 ; $i < $olddb->count() ; $i++) {
197 $user_sql = sprintf("INSERT INTO %susers ( login, pass, email, type) VALUES ('%s', '%s', '%s', %d);",
198 $G_dbpfx, escsql(strtolower($olddb->item[$i]->login)), escsql($olddb->item[$i]->pass),
199 escsql($olddb->item[$i]->email), $olddb->item[$i]->type & USER_FLAG_TY_ALL);
201 // if ( ! (($user_pg = pg_exec($dbconn,$order_add_sql)) != FALSE && pg_affected_rows($order_pg) == 1) ) {
203 if ( ! (($user_pg = pg_query($this->dbconn->db(), $user_sql)) != FALSE && pg_affected_rows($user_pg) == 1) ) {
204 $cont .= sprintf("ERROR IN LINE: %s\n", eschtml($user_sql));
212 function &getdbconn()
214 $ret = $this->dbconn;
220 function bin5_points_save($date, $ttok, $tidx, $ucodes, $pts)
228 /* check the existence of the nick in the BriskDB */
229 log_main("bin5_points_save: ");
232 if (pg_query($this->dbconn->db(), "BEGIN") == FALSE) {
240 $mtc_sql = sprintf("SELECT * FROM %sbin5_matches WHERE ttok = '%s';", $G_dbpfx, escsql($ttok));
241 if (($mtc_pg = pg_query($this->dbconn->db(), $mtc_sql)) == FALSE || pg_numrows($mtc_pg) != 1) {
242 // match not exists, insert it
243 $mtc_sql = sprintf("INSERT INTO %sbin5_matches (ttok, tidx) VALUES ('%s', %d) RETURNING *;",
244 $G_dbpfx, escsql($ttok), $tidx);
245 if ( ! (($mtc_pg = pg_query($this->dbconn->db(), $mtc_sql)) != FALSE &&
246 pg_affected_rows($mtc_pg) == 1) ) {
247 log_crit(sprintf("bin5_points_save: failed at insert match [%s]", $mtc_sql));
251 $mtc_obj = pg_fetch_object($mtc_pg,0);
256 $gam_sql = sprintf("INSERT INTO %sbin5_games (mcode, tstamp)
257 VALUES (%d, to_timestamp(%d)) RETURNING *;",
258 $G_dbpfx, $mtc_obj->code, $date);
259 if ( ! (($gam_pg = pg_query($this->dbconn->db(), $gam_sql)) != FALSE &&
260 pg_affected_rows($gam_pg) == 1) ) {
261 log_crit(sprintf("bin5_points_save: failed at insert game [%s]", $gam_sql));
265 $gam_obj = pg_fetch_object($gam_pg,0);
270 for ($i = 0 ; $i < $n ; $i++) {
272 $pts_sql = sprintf("INSERT INTO %sbin5_points (gcode, ucode, pts)
273 VALUES (%d, %d, %d);",
274 $G_dbpfx, $gam_obj->code, $ucodes[$i], $pts[$i]);
275 if ( ! (($pts_pg = pg_query($this->dbconn->db(), $pts_sql)) != FALSE &&
276 pg_affected_rows($pts_pg) == 1) ) {
277 log_crit(sprintf("bin5_points_save: failed at insert point [%s]", $pts_sql));
285 if (pg_query($this->dbconn->db(), "COMMIT") == FALSE) {
295 pg_query($this->dbconn-db(), "ROLLBACK");
300 } // End class BriskDB
307 function LoginDBOld($filename)
309 GLOBAL $DOCUMENT_ROOT;
310 log_main("LoginDBOld create:start");
312 if (file_exists("$DOCUMENT_ROOT/Etc/".$filename)) {
313 require("$DOCUMENT_ROOT/Etc/".$filename);
318 $this->item_n = count($this->item);
319 log_main("LoginDBOld create:end");
324 return ($this->item_n);
327 } // End class LoginDBOld