/[LeafOK_CVS]/lbbs/src/login.c
ViewVC logotype

Diff of /lbbs/src/login.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.35 by sysadm, Thu May 29 13:17:33 2025 UTC Revision 1.59 by sysadm, Thu Oct 16 10:10:48 2025 UTC
# Line 14  Line 14 
14   *                                                                         *   *                                                                         *
15   ***************************************************************************/   ***************************************************************************/
16    
 #define _POSIX_C_SOURCE 200112L  
   
 #include "login.h"  
17  #include "bbs.h"  #include "bbs.h"
 #include "user_priv.h"  
18  #include "common.h"  #include "common.h"
19  #include "log.h"  #include "database.h"
20  #include "io.h"  #include "io.h"
21    #include "ip_mask.h"
22    #include "log.h"
23    #include "login.h"
24  #include "screen.h"  #include "screen.h"
25  #include "database.h"  #include "user_priv.h"
 #include <errno.h>  
26  #include <ctype.h>  #include <ctype.h>
27    #include <errno.h>
28    #include <stdlib.h>
29  #include <string.h>  #include <string.h>
 #include <mysql.h>  
30  #include <regex.h>  #include <regex.h>
 #include <stdlib.h>  
31  #include <unistd.h>  #include <unistd.h>
32    #include <mysql/mysql.h>
33    #include <sys/param.h>
34    
35  int bbs_login(MYSQL *db)  int bbs_login(void)
36  {  {
37          char username[BBS_username_max_len + 1];          char username[BBS_username_max_len + 1];
38          char password[BBS_password_max_len + 1];          char password[BBS_password_max_len + 1];
39          int count = 0;          int i = 0;
40          int ok = 0;          int ok = 0;
41    
42          for (; !SYS_server_exit && !ok && count < 3; count++)          for (; !SYS_server_exit && !ok && i < BBS_login_retry_times; i++)
43          {          {
44                  prints("\033[1;33m请输入帐号\033[m(试用请输入`\033[1;36mguest\033[m', "                  prints("\033[1;33m璇疯緭鍏ュ笎鍙穃033[m(璇曠敤璇疯緭鍏\033[1;36mguest\033[m', "
45                             "注册请输入`\033[1;31mnew\033[m'): ");                             "娉ㄥ唽璇疯緭鍏\033[1;31mnew\033[m'): ");
46                  iflush();                  iflush();
47    
48                  if (str_input(username, sizeof(username), DOECHO) < 0)                  if (str_input(username, sizeof(username), DOECHO) < 0)
# Line 52  int bbs_login(MYSQL *db) Line 52  int bbs_login(MYSQL *db)
52    
53                  if (strcmp(username, "guest") == 0)                  if (strcmp(username, "guest") == 0)
54                  {                  {
55                          load_guest_info(db);                          load_guest_info();
56    
57                          return 0;                          return 0;
58                  }                  }
59    
60                  if (strcmp(username, "new") == 0)                  if (strcmp(username, "new") == 0)
61                  {                  {
62                          display_file(DATA_REGISTER, 1, 1);                          display_file(DATA_REGISTER, 1);
63    
64                          return 0;                          return -1;
65                  }                  }
66    
67                  if (username[0] != '\0')                  if (username[0] != '\0')
68                  {                  {
69                          prints("\033[1;37m请输入密码\033[m: ");                          prints("\033[1;37m璇疯緭鍏ュ瘑鐮乗033[m: ");
70                          iflush();                          iflush();
71    
72                          if (str_input(password, sizeof(password), NOECHO) < 0)                          if (str_input(password, sizeof(password), NOECHO) < 0)
# Line 74  int bbs_login(MYSQL *db) Line 74  int bbs_login(MYSQL *db)
74                                  continue;                                  continue;
75                          }                          }
76    
77                          ok = (check_user(db, username, password) == 0);                          ok = (check_user(username, password) == 0);
78                          iflush();                          iflush();
79                  }                  }
80          }          }
81    
82          if (!ok)          if (!ok)
83          {          {
84                  display_file(DATA_LOGIN_ERROR, 1, 1);                  display_file(DATA_LOGIN_ERROR, 1);
85                  return -1;                  return -1;
86          }          }
87    
88          log_std("User \"%s\"(%ld) login from %s:%d\n",          log_common("User \"%s\"(%ld) login from %s:%d\n",
89                          BBS_username, BBS_priv.uid, hostaddr_client, port_client);                             BBS_username, BBS_priv.uid, hostaddr_client, port_client);
90    
91          return 0;          return 0;
92  }  }
93    
94  int check_user(MYSQL *db, char *username, char *password)  int check_user(const char *username, const char *password)
95  {  {
96          MYSQL_RES *rs;          MYSQL *db = NULL;
97            MYSQL_RES *rs = NULL;
98          MYSQL_ROW row;          MYSQL_ROW row;
99          char sql[SQL_BUFFER_LEN];          char sql[SQL_BUFFER_LEN];
100          int ret;          int ret = 0;
101          long BBS_uid = 0;          int BBS_uid = 0;
102          char client_addr[IP_ADDR_LEN];          char client_addr[IP_ADDR_LEN];
103          int i;          int i;
104          int ok = 1;          int ok = 1;
105          char user_tz_env[BBS_user_tz_max_len + 2];          char user_tz_env[BBS_user_tz_max_len + 2];
106    
107            db = db_open();
108            if (db == NULL)
109            {
110                    ret = -1;
111                    goto cleanup;
112            }
113    
114          // Verify format          // Verify format
115          for (i = 0; ok && username[i] != '\0'; i++)          for (i = 0; ok && username[i] != '\0'; i++)
116          {          {
# Line 129  int check_user(MYSQL *db, char *username Line 137  int check_user(MYSQL *db, char *username
137    
138          if (!ok)          if (!ok)
139          {          {
140                  prints("\033[1;31m用户名或密码格式错误...\033[m\r\n");                  prints("\033[1;31m鐢ㄦ埛鍚嶆垨瀵嗙爜鏍煎紡閿欒...\033[m\r\n");
141                  return 1;                  ret = 1;
142                    goto cleanup;
143          }          }
144    
145          // Begin transaction          // Begin transaction
146          if (mysql_query(db, "SET autocommit=0") != 0)          if (mysql_query(db, "SET autocommit=0") != 0)
147          {          {
148                  log_error("SET autocommit=0 error: %s\n", mysql_error(db));                  log_error("SET autocommit=0 error: %s\n", mysql_error(db));
149                  return -1;                  ret = -1;
150                    goto cleanup;
151          }          }
152    
153          if (mysql_query(db, "BEGIN") != 0)          if (mysql_query(db, "BEGIN") != 0)
154          {          {
155                  log_error("Begin transaction error: %s\n", mysql_error(db));                  log_error("Begin transaction error: %s\n", mysql_error(db));
156                  return -1;                  ret = -1;
157                    goto cleanup;
158          }          }
159    
160          // Failed login attempts from the same source (subnet /24) during certain time period          // Failed login attempts from the same source (subnet /24) during certain time period
# Line 152  int check_user(MYSQL *db, char *username Line 163  int check_user(MYSQL *db, char *username
163    
164          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
165                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "
166                           "WHERE login_dt >= SUBDATE(NOW(), INTERVAL 10 MINUTE) "                           "WHERE login_dt >= SUBDATE(NOW(), INTERVAL %d MINUTE) "
167                           "AND login_ip LIKE '%s'",                           "AND login_ip LIKE '%s'",
168                             BBS_login_failures_count_interval,
169                           ip_mask(client_addr, 1, '%'));                           ip_mask(client_addr, 1, '%'));
170          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
171          {          {
172                  log_error("Query user_list error: %s\n", mysql_error(db));                  log_error("Query user_list error: %s\n", mysql_error(db));
173                  return -1;                  ret = -1;
174                    goto cleanup;
175          }          }
176          if ((rs = mysql_store_result(db)) == NULL)          if ((rs = mysql_store_result(db)) == NULL)
177          {          {
178                  log_error("Get user_list data failed\n");                  log_error("Get user_list data failed\n");
179                  return -1;                  ret = -1;
180                    goto cleanup;
181          }          }
182          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
183          {          {
184                  if (atoi(row[0]) >= 2)                  if (atoi(row[0]) >= BBS_allowed_login_failures_within_interval)
185                  {                  {
186                          mysql_free_result(rs);                          prints("\033[1;31m鏉ユ簮瀛樺湪澶氭澶辫触鐧婚檰灏濊瘯锛岃绋嶅悗鍐嶈瘯锛屾垨浣跨敤Web鏂瑰紡璁块棶\033[m\r\n");
187                            ret = 1;
188                          prints("\033[1;31m来源存在多次失败登陆尝试,请稍后再试\033[m\r\n");                          goto cleanup;
   
                         return 1;  
189                  }                  }
190          }          }
191          mysql_free_result(rs);          mysql_free_result(rs);
192            rs = NULL;
193    
194          // Failed login attempts against the current username during certain time period          // Failed login attempts against the current username since last successful login
195          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
196                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "
197                           "WHERE username = '%s' AND login_dt >= SUBDATE(NOW(), INTERVAL 1 DAY)",                           "LEFT JOIN user_list ON user_err_login_log.username = user_list.username "
198                             "LEFT JOIN user_pubinfo ON user_list.UID = user_pubinfo.UID "
199                             "WHERE user_err_login_log.username = '%s' "
200                             "AND (user_err_login_log.login_dt >= user_pubinfo.last_login_dt "
201                             "OR user_pubinfo.last_login_dt IS NULL)",
202                           username);                           username);
203          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
204          {          {
205                  log_error("Query user_list error: %s\n", mysql_error(db));                  log_error("Query user_list error: %s\n", mysql_error(db));
206                  return -1;                  ret = -1;
207                    goto cleanup;
208          }          }
209          if ((rs = mysql_store_result(db)) == NULL)          if ((rs = mysql_store_result(db)) == NULL)
210          {          {
211                  log_error("Get user_list data failed\n");                  log_error("Get user_list data failed\n");
212                  return -1;                  ret = -1;
213                    goto cleanup;
214          }          }
215          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
216          {          {
217                  if (atoi(row[0]) >= 5)                  if (atoi(row[0]) >= BBS_allowed_login_failures_per_account)
218                  {                  {
219                          mysql_free_result(rs);                          prints("\033[1;31m璐︽埛瀛樺湪澶氭澶辫触鐧婚檰灏濊瘯锛岃浣跨敤Web鏂瑰紡鐧诲綍瑙i攣\033[m\r\n");
220                            ret = 1;
221                          prints("\033[1;31m账户存在多次失败登陆尝试,请使用Web方式登录\033[m\r\n");                          goto cleanup;
   
                         return 1;  
222                  }                  }
223          }          }
224          mysql_free_result(rs);          mysql_free_result(rs);
225            rs = NULL;
226    
227          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
228                           "SELECT UID, username, p_login FROM user_list "                           "SELECT UID, username, p_login FROM user_list "
# Line 213  int check_user(MYSQL *db, char *username Line 231  int check_user(MYSQL *db, char *username
231          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
232          {          {
233                  log_error("Query user_list error: %s\n", mysql_error(db));                  log_error("Query user_list error: %s\n", mysql_error(db));
234                  return -1;                  ret = -1;
235                    goto cleanup;
236          }          }
237          if ((rs = mysql_store_result(db)) == NULL)          if ((rs = mysql_store_result(db)) == NULL)
238          {          {
239                  log_error("Get user_list data failed\n");                  log_error("Get user_list data failed\n");
240                  return -1;                  ret = -1;
241                    goto cleanup;
242          }          }
243          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
244          {          {
245                  BBS_uid = atol(row[0]);                  BBS_uid = atoi(row[0]);
246                  strncpy(BBS_username, row[1], sizeof(BBS_username) - 1);                  strncpy(BBS_username, row[1], sizeof(BBS_username) - 1);
247                  BBS_username[sizeof(BBS_username) - 1] = '\0';                  BBS_username[sizeof(BBS_username) - 1] = '\0';
248                  int p_login = atoi(row[2]);                  int p_login = atoi(row[2]);
249    
250                  mysql_free_result(rs);                  mysql_free_result(rs);
251                    rs = NULL;
252    
253                  // Add user login log                  // Add user login log
254                  snprintf(sql, sizeof(sql),                  snprintf(sql, sizeof(sql),
255                                   "INSERT INTO user_login_log(UID, login_dt, login_ip) "                                   "INSERT INTO user_login_log(UID, login_dt, login_ip) "
256                                   "VALUES(%ld, NOW(), '%s')",                                   "VALUES(%d, NOW(), '%s')",
257                                   BBS_uid, hostaddr_client);                                   BBS_uid, hostaddr_client);
258                  if (mysql_query(db, sql) != 0)                  if (mysql_query(db, sql) != 0)
259                  {                  {
260                          log_error("Insert into user_login_log error: %s\n", mysql_error(db));                          log_error("Insert into user_login_log error: %s\n", mysql_error(db));
261                          return -1;                          ret = -1;
262                            goto cleanup;
263                  }                  }
264    
265                  // Commit transaction                  // Commit transaction
266                  if (mysql_query(db, "COMMIT") != 0)                  if (mysql_query(db, "COMMIT") != 0)
267                  {                  {
268                          log_error("Commit transaction error: %s\n", mysql_error(db));                          log_error("Commit transaction error: %s\n", mysql_error(db));
269                          return -1;                          ret = -1;
270                            goto cleanup;
271                  }                  }
272    
273                  if (p_login == 0)                  if (p_login == 0)
274                  {                  {
275                          mysql_free_result(rs);                          prints("\033[1;31m鎮ㄧ洰鍓嶆棤鏉冪櫥闄...\033[m\r\n");
276                            ret = 1;
277                          prints("\033[1;31m您目前无权登陆...\033[m\r\n");                          goto cleanup;
                         return 1;  
278                  }                  }
279          }          }
280          else          else
281          {          {
282                  mysql_free_result(rs);                  mysql_free_result(rs);
283                    rs = NULL;
284    
285                  snprintf(sql, sizeof(sql),                  snprintf(sql, sizeof(sql),
286                                   "INSERT INTO user_err_login_log(username, password, login_dt, login_ip) "                                   "INSERT INTO user_err_login_log(username, password, login_dt, login_ip) "
# Line 266  int check_user(MYSQL *db, char *username Line 289  int check_user(MYSQL *db, char *username
289                  if (mysql_query(db, sql) != 0)                  if (mysql_query(db, sql) != 0)
290                  {                  {
291                          log_error("Insert into user_err_login_log error: %s\n", mysql_error(db));                          log_error("Insert into user_err_login_log error: %s\n", mysql_error(db));
292                          return -1;                          ret = -1;
293                            goto cleanup;
294                  }                  }
295    
296                  // Commit transaction                  // Commit transaction
297                  if (mysql_query(db, "COMMIT") != 0)                  if (mysql_query(db, "COMMIT") != 0)
298                  {                  {
299                          log_error("Commit transaction error: %s\n", mysql_error(db));                          log_error("Commit transaction error: %s\n", mysql_error(db));
300                          return -1;                          ret = -1;
301                            goto cleanup;
302                  }                  }
303    
304                  prints("\033[1;31m错误的用户名或密码...\033[m\r\n");                  prints("\033[1;31m閿欒鐨勭敤鎴峰悕鎴栧瘑鐮...\033[m\r\n");
305                  return 1;                  ret = 1;
306                    goto cleanup;
307          }          }
308    
309          // Set AUTOCOMMIT = 1          // Set AUTOCOMMIT = 1
310          if (mysql_query(db, "SET autocommit=1") != 0)          if (mysql_query(db, "SET autocommit=1") != 0)
311          {          {
312                  log_error("SET autocommit=1 error: %s\n", mysql_error(db));                  log_error("SET autocommit=1 error: %s\n", mysql_error(db));
313                  return -1;                  ret = -1;
314                    goto cleanup;
315          }          }
316    
317          ret = load_user_info(db, BBS_uid);          ret = load_user_info(db, BBS_uid);
# Line 294  int check_user(MYSQL *db, char *username Line 321  int check_user(MYSQL *db, char *username
321          case 0: // Login successfully          case 0: // Login successfully
322                  break;                  break;
323          case -1: // Load data error          case -1: // Load data error
324                  prints("\033[1;31m读取用户数据错误...\033[m\r\n");                  prints("\033[1;31m璇诲彇鐢ㄦ埛鏁版嵁閿欒...\033[m\r\n");
325                  return -1;                  ret = -1;
326                    goto cleanup;
327          case -2: // Unused          case -2: // Unused
328                  prints("\033[1;31m请通过Web登录更新用户许可协议...\033[m\r\n");                  prints("\033[1;31m璇烽氳繃Web鐧诲綍鏇存柊鐢ㄦ埛璁稿彲鍗忚...\033[m\r\n");
329                  return 1;                  ret = 1;
330                    goto cleanup;
331          case -3: // Dead          case -3: // Dead
332                  prints("\033[1;31m很遗憾,您已经永远离开了我们的世界!\033[m\r\n");                  prints("\033[1;31m寰堥仐鎲撅紝鎮ㄥ凡缁忔案杩滅寮浜嗘垜浠殑涓栫晫锛乗033[m\r\n");
333                  return 1;                  ret = 1;
334                    goto cleanup;
335          default:          default:
336                  return -2;                  ret = -2;
337                    goto cleanup;
338          }          }
339    
340          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
341                           "UPDATE user_pubinfo SET visit_count = visit_count + 1, "                           "UPDATE user_pubinfo SET visit_count = visit_count + 1, "
342                           "last_login_dt = NOW() WHERE UID = %ld",                           "last_login_dt = NOW() WHERE UID = %d",
343                           BBS_uid);                           BBS_uid);
344          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
345          {          {
346                  log_error("Update user_pubinfo error: %s\n", mysql_error(db));                  log_error("Update user_pubinfo error: %s\n", mysql_error(db));
347                  return -1;                  ret = -1;
348                    goto cleanup;
349          }          }
350    
351          if (user_online_add(db) != 0)          if (user_online_add(db) != 0)
352          {          {
353                  return -1;                  ret = -1;
354                    goto cleanup;
355          }          }
356    
357          BBS_last_access_tm = BBS_login_tm = time(0);          BBS_last_access_tm = BBS_login_tm = time(NULL);
358    
359          // Set user tz to process env          // Set user tz to process env
360          if (BBS_user_tz[0] != '\0')          if (BBS_user_tz[0] != '\0')
# Line 339  int check_user(MYSQL *db, char *username Line 372  int check_user(MYSQL *db, char *username
372                  tzset();                  tzset();
373          }          }
374    
375          return 0;  cleanup:
376            mysql_free_result(rs);
377            mysql_close(db);
378    
379            return ret;
380  }  }
381    
382  int load_user_info(MYSQL *db, long int BBS_uid)  int load_user_info(MYSQL *db, int BBS_uid)
383  {  {
384          MYSQL_RES *rs;          MYSQL_RES *rs = NULL;
385          MYSQL_ROW row;          MYSQL_ROW row;
386          char sql[SQL_BUFFER_LEN];          char sql[SQL_BUFFER_LEN];
387          int life;          int life;
388          time_t last_login_dt;          time_t last_login_dt;
389            int ret = 0;
390    
391          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
392                           "SELECT life, UNIX_TIMESTAMP(last_login_dt), user_timezone "                           "SELECT life, UNIX_TIMESTAMP(last_login_dt), user_timezone, exp, nickname "
393                           "FROM user_pubinfo WHERE UID = %ld",                           "FROM user_pubinfo WHERE UID = %d",
394                           BBS_uid);                           BBS_uid);
395          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
396          {          {
397                  log_error("Query user_pubinfo error: %s\n", mysql_error(db));                  log_error("Query user_pubinfo error: %s\n", mysql_error(db));
398                  return -1;                  ret = -1;
399                    goto cleanup;
400          }          }
401          if ((rs = mysql_store_result(db)) == NULL)          if ((rs = mysql_store_result(db)) == NULL)
402          {          {
403                  log_error("Get user_pubinfo data failed\n");                  log_error("Get user_pubinfo data failed\n");
404                  return -1;                  ret = -1;
405                    goto cleanup;
406          }          }
407          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
408          {          {
# Line 371  int load_user_info(MYSQL *db, long int B Line 411  int load_user_info(MYSQL *db, long int B
411    
412                  strncpy(BBS_user_tz, row[2], sizeof(BBS_user_tz) - 1);                  strncpy(BBS_user_tz, row[2], sizeof(BBS_user_tz) - 1);
413                  BBS_user_tz[sizeof(BBS_user_tz) - 1] = '\0';                  BBS_user_tz[sizeof(BBS_user_tz) - 1] = '\0';
414    
415                    BBS_user_exp = atoi(row[3]);
416    
417                    strncpy(BBS_nickname, row[4], sizeof(BBS_nickname));
418                    BBS_nickname[sizeof(BBS_nickname) - 1] = '\0';
419          }          }
420          else          else
421          {          {
422                  mysql_free_result(rs);                  ret = -1; // Data not found
423                  return -1; // Data not found                  goto cleanup;
424          }          }
425          mysql_free_result(rs);          mysql_free_result(rs);
426            rs = NULL;
427    
428          if (life != 333 && life != 365 && life != 666 && life != 999 && // Not immortal          if (life != 333 && life != 365 && life != 666 && life != 999 && // Not immortal
429                  time(0) - last_login_dt > 60 * 60 * 24 * life)                  time(NULL) - last_login_dt > 60 * 60 * 24 * life)
430          {          {
431                  return -3; // Dead                  ret = -3; // Dead
432                    goto cleanup;
433          }          }
434    
435          if (load_priv(db, &BBS_priv, BBS_uid) != 0)          if (load_priv(db, &BBS_priv, BBS_uid) != 0)
436          {          {
437                  return -1;                  ret = -1;
438                    goto cleanup;
439          }          }
440    
441          return 0;  cleanup:
442            mysql_free_result(rs);
443    
444            return ret;
445  }  }
446    
447  int load_guest_info(MYSQL *db)  int load_guest_info(void)
448  {  {
449            MYSQL *db = NULL;
450            int ret = 0;
451    
452            db = db_open();
453            if (db == NULL)
454            {
455                    ret = -1;
456                    goto cleanup;
457            }
458    
459          strncpy(BBS_username, "guest", sizeof(BBS_username) - 1);          strncpy(BBS_username, "guest", sizeof(BBS_username) - 1);
460          BBS_username[sizeof(BBS_username) - 1] = '\0';          BBS_username[sizeof(BBS_username) - 1] = '\0';
461    
462            BBS_user_exp = 0;
463    
464            strncpy(BBS_nickname, "Guest", sizeof(BBS_nickname));
465            BBS_nickname[sizeof(BBS_nickname) - 1] = '\0';
466    
467          if (load_priv(db, &BBS_priv, 0) != 0)          if (load_priv(db, &BBS_priv, 0) != 0)
468          {          {
469                  return -1;                  ret = -1;
470                    goto cleanup;
471          }          }
472    
473          if (user_online_add(db) != 0)          if (user_online_add(db) != 0)
474          {          {
475                  return -1;                  ret = -1;
476                    goto cleanup;
477          }          }
478    
479          BBS_last_access_tm = BBS_login_tm = time(0);          BBS_last_access_tm = BBS_login_tm = time(NULL);
480    
481          return 0;  cleanup:
482            mysql_close(db);
483    
484            return ret;
485  }  }
486    
487  int user_online_add(MYSQL *db)  int user_online_add(MYSQL *db)
# Line 424  int user_online_add(MYSQL *db) Line 495  int user_online_add(MYSQL *db)
495    
496          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
497                           "INSERT INTO user_online(SID, UID, ip, login_tm, last_tm) "                           "INSERT INTO user_online(SID, UID, ip, login_tm, last_tm) "
498                           "VALUES('Telnet_Process_%d', %ld, '%s', NOW(), NOW())",                           "VALUES('Telnet_Process_%d', %d, '%s', NOW(), NOW())",
499                           getpid(), BBS_priv.uid, hostaddr_client);                           getpid(), BBS_priv.uid, hostaddr_client);
500          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
501          {          {
# Line 450  int user_online_del(MYSQL *db) Line 521  int user_online_del(MYSQL *db)
521    
522          return 0;          return 0;
523  }  }
524    
525    int user_online_exp(MYSQL *db)
526    {
527            char sql[SQL_BUFFER_LEN];
528    
529            // +1 exp for every 5 minutes online since last logout
530            // but at most 24 hours worth of exp can be gained in Telnet session
531            snprintf(sql, sizeof(sql),
532                            "UPDATE user_pubinfo SET exp = exp + FLOOR(LEAST(TIMESTAMPDIFF("
533                            "SECOND, GREATEST(last_login_dt, IF(last_logout_dt IS NULL, last_login_dt, last_logout_dt)), NOW()"
534                            ") / 60 / 5, 12 * 24)), last_logout_dt = NOW() "
535                            "WHERE UID = %d",
536                            BBS_priv.uid);
537            if (mysql_query(db, sql) != 0)
538            {
539                    log_error("Update user_pubinfo error: %s\n", mysql_error(db));
540                    return -1;
541            }
542    
543            return 0;
544    }
545    
546    int user_online_update(const char *action)
547    {
548            MYSQL *db = NULL;
549            char sql[SQL_BUFFER_LEN];
550    
551            if ((action == NULL || strcmp(BBS_current_action, action) == 0) &&
552                    time(NULL) - BBS_current_action_tm < BBS_current_action_refresh_interval) // No change
553            {
554                    return 0;
555            }
556    
557            if (action != NULL)
558            {
559                    strncpy(BBS_current_action, action, sizeof(BBS_current_action) - 1);
560                    BBS_current_action[sizeof(BBS_current_action) - 1] = '\0';
561            }
562    
563            BBS_current_action_tm = time(NULL);
564    
565            db = db_open();
566            if (db == NULL)
567            {
568                    log_error("db_open() error: %s\n", mysql_error(db));
569                    return -1;
570            }
571    
572            snprintf(sql, sizeof(sql),
573                             "UPDATE user_online SET current_action = '%s', last_tm=NOW() "
574                             "WHERE SID = 'Telnet_Process_%d'",
575                             BBS_current_action, getpid());
576            if (mysql_query(db, sql) != 0)
577            {
578                    log_error("Update user_online error: %s\n", mysql_error(db));
579                    return -2;
580            }
581    
582            mysql_close(db);
583    
584            return 1;
585    }


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1