Formalismos. Departamento -> Carrera.
[CLab.git] / include / database.php
blobe0812c077fd7eed97520a82f143be4f8a5775b76
1 <?
2 /**
3 * Database.php
4 *
5 * The Database class is meant to simplify the task of accessing
6 * information from the website's database.
8 * Written by: Jpmaster77 a.k.a. The Grandmaster of C++ (GMC)
9 * Last Updated: August 17, 2004
11 include("constants.php");
13 class MySQLDB
15 var $connection; //The MySQL database connection
16 var $num_active_users; //Number of active users viewing site
17 var $num_active_guests; //Number of active guests viewing site
18 var $num_members; //Number of signed-up users
19 /* Note: call getNumMembers() to access $num_members! */
21 /* Class constructor */
22 function MySQLDB(){
23 /* Make connection to database */
24 $this->connection = mysql_connect(DB_SERVER, DB_USER, DB_PASS) or die(mysql_error());
25 mysql_select_db(DB_NAME, $this->connection) or die(mysql_error());
27 /**
28 * Only query database to find out number of members
29 * when getNumMembers() is called for the first time,
30 * until then, default value set.
32 $this->num_members = -1;
34 if(TRACK_VISITORS){
35 /* Calculate number of users at site */
36 $this->calcNumActiveUsers();
38 /* Calculate number of guests at site */
39 $this->calcNumActiveGuests();
43 /**
44 * confirmUserPass - Checks whether or not the given
45 * username is in the database, if so it checks if the
46 * given password is the same password in the database
47 * for that user. If the user doesn't exist or if the
48 * passwords don't match up, it returns an error code
49 * (1 or 2). On success it returns 0.
51 function confirmUserPass($username, $password){
52 /* Add slashes if necessary (for query) */
53 if(!get_magic_quotes_gpc()) {
54 $username = addslashes($username);
57 /* Verify that user is in database */
58 $q = "SELECT password FROM ".TBL_USERS." WHERE username = '$username'";
59 $result = mysql_query($q, $this->connection);
60 if(!$result || (mysql_numrows($result) < 1)){
61 return 1; //Indicates username failure
64 /* Retrieve password from result, strip slashes */
65 $dbarray = mysql_fetch_array($result);
66 $dbarray['password'] = stripslashes($dbarray['password']);
67 $password = stripslashes($password);
69 /* Validate that password is correct */
70 if($password == $dbarray['password']){
71 return 0; //Success! Username and password confirmed
73 else{
74 return 2; //Indicates password failure
78 /**
79 * confirmUserID - Checks whether or not the given
80 * username is in the database, if so it checks if the
81 * given userid is the same userid in the database
82 * for that user. If the user doesn't exist or if the
83 * userids don't match up, it returns an error code
84 * (1 or 2). On success it returns 0.
86 function confirmUserID($username, $userid){
87 /* Add slashes if necessary (for query) */
88 if(!get_magic_quotes_gpc()) {
89 $username = addslashes($username);
92 /* Verify that user is in database */
93 $q = "SELECT userid FROM ".TBL_USERS." WHERE username = '$username'";
94 $result = mysql_query($q, $this->connection);
95 if(!$result || (mysql_numrows($result) < 1)){
96 return 1; //Indicates username failure
99 /* Retrieve userid from result, strip slashes */
100 $dbarray = mysql_fetch_array($result);
101 $dbarray['userid'] = stripslashes($dbarray['userid']);
102 $userid = stripslashes($userid);
104 /* Validate that userid is correct */
105 if($userid == $dbarray['userid']){
106 return 0; //Success! Username and userid confirmed
108 else{
109 return 2; //Indicates userid invalid
114 * usernameTaken - Returns true if the username has
115 * been taken by another user, false otherwise.
117 function usernameTaken($username){
118 if(!get_magic_quotes_gpc()){
119 $username = addslashes($username);
121 $q = "SELECT username FROM ".TBL_USERS." WHERE username = '$username'";
122 $result = mysql_query($q, $this->connection);
123 return (mysql_numrows($result) > 0);
127 * usernameBanned - Returns true if the username has
128 * been banned by the administrator.
130 function usernameBanned($username){
131 if(!get_magic_quotes_gpc()){
132 $username = addslashes($username);
134 $q = "SELECT username FROM ".TBL_BANNED_USERS." WHERE username = '$username'";
135 $result = mysql_query($q, $this->connection);
136 return (mysql_numrows($result) > 0);
140 * addNewUser - Inserts the given (username, password, email)
141 * info into the database. Appropriate user level is set.
142 * Returns true on success, false otherwise.
144 function addNewUser($username, $password, $email, $nombre, $encargado, $catedratico, $tipo, $departamento){
145 $time = time();
146 /* If admin sign up, give admin user level */
147 if(strcasecmp($username, ADMIN_NAME) == 0){
148 $ulevel = ADMIN_LEVEL;
149 }else{
150 $ulevel = USER_LEVEL;
152 $q = "INSERT INTO ".TBL_USERS." VALUES ('$username', '$password', '0', $ulevel, '$email', $time, '$nombre', '$encargado', '$catedratico','$tipo','$departamento')";
153 return mysql_query($q, $this->connection);
157 * updateUserField - Updates a field, specified by the field
158 * parameter, in the user's row of the database.
160 function updateUserField($username, $field, $value){
161 $q = "UPDATE ".TBL_USERS." SET ".$field." = '$value' WHERE username = '$username'";
162 return mysql_query($q, $this->connection);
166 * getUserInfo - Returns the result array from a mysql
167 * query asking for all information stored regarding
168 * the given username. If query fails, NULL is returned.
170 function getUserInfo($username){
171 $q = "SELECT * FROM ".TBL_USERS." WHERE username = '$username'";
172 $result = mysql_query($q, $this->connection);
173 /* Error occurred, return given name by default */
174 if(!$result || (mysql_numrows($result) < 1)){
175 return NULL;
177 /* Return result array */
178 $dbarray = mysql_fetch_array($result);
179 return $dbarray;
183 * getNumMembers - Returns the number of signed-up users
184 * of the website, banned members not included. The first
185 * time the function is called on page load, the database
186 * is queried, on subsequent calls, the stored result
187 * is returned. This is to improve efficiency, effectively
188 * not querying the database when no call is made.
190 function getNumMembers(){
191 if($this->num_members < 0){
192 $q = "SELECT * FROM ".TBL_USERS;
193 $result = mysql_query($q, $this->connection);
194 $this->num_members = mysql_numrows($result);
196 return $this->num_members;
200 * calcNumActiveUsers - Finds out how many active users
201 * are viewing site and sets class variable accordingly.
203 function calcNumActiveUsers(){
204 /* Calculate number of users at site */
205 $q = "SELECT * FROM ".TBL_ACTIVE_USERS;
206 $result = mysql_query($q, $this->connection);
207 $this->num_active_users = mysql_numrows($result);
211 * calcNumActiveGuests - Finds out how many active guests
212 * are viewing site and sets class variable accordingly.
214 function calcNumActiveGuests(){
215 /* Calculate number of guests at site */
216 $q = "SELECT * FROM ".TBL_ACTIVE_GUESTS;
217 $result = mysql_query($q, $this->connection);
218 $this->num_active_guests = mysql_numrows($result);
222 * addActiveUser - Updates username's last active timestamp
223 * in the database, and also adds him to the table of
224 * active users, or updates timestamp if already there.
226 function addActiveUser($username, $time){
227 $q = "UPDATE ".TBL_USERS." SET timestamp = '$time' WHERE username = '$username'";
228 mysql_query($q, $this->connection);
230 if(!TRACK_VISITORS) return;
231 $q = "REPLACE INTO ".TBL_ACTIVE_USERS." VALUES ('$username', '$time')";
232 mysql_query($q, $this->connection);
233 $this->calcNumActiveUsers();
236 /* addActiveGuest - Adds guest to active guests table */
237 function addActiveGuest($ip, $time){
238 if(!TRACK_VISITORS) return;
239 $q = "REPLACE INTO ".TBL_ACTIVE_GUESTS." VALUES ('$ip', '$time')";
240 mysql_query($q, $this->connection);
241 $this->calcNumActiveGuests();
244 /* These functions are self explanatory, no need for comments */
246 /* removeActiveUser */
247 function removeActiveUser($username){
248 if(!TRACK_VISITORS) return;
249 $q = "DELETE FROM ".TBL_ACTIVE_USERS." WHERE username = '$username'";
250 mysql_query($q, $this->connection);
251 $this->calcNumActiveUsers();
254 /* removeActiveGuest */
255 function removeActiveGuest($ip){
256 if(!TRACK_VISITORS) return;
257 $q = "DELETE FROM ".TBL_ACTIVE_GUESTS." WHERE ip = '$ip'";
258 mysql_query($q, $this->connection);
259 $this->calcNumActiveGuests();
262 /* removeInactiveUsers */
263 function removeInactiveUsers(){
264 if(!TRACK_VISITORS) return;
265 $timeout = time()-USER_TIMEOUT*60;
266 $q = "DELETE FROM ".TBL_ACTIVE_USERS." WHERE timestamp < $timeout";
267 mysql_query($q, $this->connection);
268 $this->calcNumActiveUsers();
271 /* removeInactiveGuests */
272 function removeInactiveGuests(){
273 if(!TRACK_VISITORS) return;
274 $timeout = time()-GUEST_TIMEOUT*60;
275 $q = "DELETE FROM ".TBL_ACTIVE_GUESTS." WHERE timestamp < $timeout";
276 mysql_query($q, $this->connection);
277 $this->calcNumActiveGuests();
281 * query - Performs the given query on the database and
282 * returns the result, which may be false, true or a
283 * resource identifier.
285 function query($query){
286 return mysql_query($query, $this->connection);
290 /* Create database connection */
291 $database = new MySQLDB;