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

Diff of /lbbs/src/bbs_main.c

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

Revision 1.65 by sysadm, Sat Jun 7 08:33:08 2025 UTC Revision 1.92 by sysadm, Sun Oct 19 01:30:38 2025 UTC
# Line 14  Line 14 
14   *                                                                         *   *                                                                         *
15   ***************************************************************************/   ***************************************************************************/
16    
17  #include "bbs_main.h"  #include "article_favor.h"
18    #include "article_view_log.h"
19  #include "bbs.h"  #include "bbs.h"
20  #include "login.h"  #include "bbs_cmd.h"
21  #include "user_priv.h"  #include "bbs_main.h"
22  #include "common.h"  #include "common.h"
23  #include "database.h"  #include "database.h"
24  #include "log.h"  #include "editor.h"
25  #include "io.h"  #include "io.h"
26  #include "screen.h"  #include "log.h"
27    #include "login.h"
28  #include "menu.h"  #include "menu.h"
29  #include "bbs_cmd.h"  #include "screen.h"
30  #include "section_list.h"  #include "section_list.h"
31  #include "trie_dict.h"  #include "trie_dict.h"
32  #include <unistd.h>  #include "user_priv.h"
33  #include <time.h>  #include <errno.h>
34  #include <string.h>  #include <signal.h>
35  #include <stdlib.h>  #include <stdlib.h>
36    #include <string.h>
37    #include <time.h>
38    #include <unistd.h>
39    
40  int bbs_info()  int bbs_info()
41  {  {
42          prints("ӭ \033[1;33m%s \033[32m[%s]  \033[37m( %s )\r\n",          prints("欢迎光临 \033[1;33m%s \033[32m[%s]  \033[37m( %s )\033[m\r\n",
43                     BBS_name, BBS_server, APP_NAME_VER);                     BBS_name, BBS_server, APP_INFO);
44    
45          return iflush();          return iflush();
46  }  }
# Line 47  int bbs_welcome(void) Line 52  int bbs_welcome(void)
52          u_int32_t u_online = 0;          u_int32_t u_online = 0;
53          u_int32_t u_anonymous = 0;          u_int32_t u_anonymous = 0;
54          u_int32_t u_total = 0;          u_int32_t u_total = 0;
         u_int32_t max_u_online = 0;  
55          u_int32_t u_login_count = 0;          u_int32_t u_login_count = 0;
56    
57          MYSQL *db;          MYSQL *db;
# Line 146  int bbs_welcome(void) Line 150  int bbs_welcome(void)
150    
151          mysql_close(db);          mysql_close(db);
152    
         // Log max user_online  
         FILE *fin, *fout;  
         if ((fin = fopen(VAR_MAX_USER_ONLINE, "r")) != NULL)  
         {  
                 fscanf(fin, "%d", &max_u_online);  
                 fclose(fin);  
         }  
         if (u_online > max_u_online)  
         {  
                 max_u_online = u_online;  
                 if ((fout = fopen(VAR_MAX_USER_ONLINE, "w")) == NULL)  
                 {  
                         log_error("Open max_user_online.dat failed\n");  
                         return -3;  
                 }  
                 fprintf(fout, "%d\n", max_u_online);  
                 fclose(fout);  
         }  
   
153          // Count current user before login          // Count current user before login
154          u_online++;          u_online++;
155          u_anonymous++;          u_anonymous++;
156    
157          // Display logo          // Display logo
158          display_file(DATA_WELCOME, 1, 2);          display_file(DATA_WELCOME, 2);
159    
160          // Display welcome message          // Display welcome message
161          prints("\r\033[1;35mӭ\033[33m %s \033[35mBBS\r\n"          prints("\r\033[1;35m欢迎光临\033[33m 【 %s 】 \033[35mBBS\r\n"
162                     "\033[32mĿǰվ [\033[36m%d/%d\033[32m] "                     "\033[32m目前上站人数 [\033[36m%d/%d\033[32m] "
163                     "ο[\033[36m%d\033[32m] "                     "匿名游客[\033[36m%d\033[32m] "
164                     "עû[\033[36m%d/%d\033[32m]\r\n"                     "注册用户数[\033[36m%d/%d\033[32m]\r\n"
165                     " [\033[36m%s\033[32m] ¼"                     "从 [\033[36m%s\033[32m] 起,累计访问人次:[\033[36m%d\033[32m]\033[m\r\n",
                    "[\033[36m%d\033[32m]ۼƷ˴Σ[\033[36m%d\033[32m]\033[m\r\n",  
166                     BBS_name, u_online, BBS_max_client, u_anonymous, u_total,                     BBS_name, u_online, BBS_max_client, u_anonymous, u_total,
167                     BBS_max_user, BBS_start_dt, max_u_online, u_login_count);                     BBS_max_user, BBS_start_dt, u_login_count);
168    
169          iflush();          iflush();
170    
# Line 197  int bbs_logout(void) Line 181  int bbs_logout(void)
181                  return -1;                  return -1;
182          }          }
183    
184          if (user_online_del(db) < 0)          if (user_online_exp(db) < 0)
185          {          {
186                  return -2;                  return -2;
187          }          }
188    
189            if (user_online_del(db) < 0)
190            {
191                    return -3;
192            }
193    
194          mysql_close(db);          mysql_close(db);
195    
196          display_file(DATA_GOODBYE, 1, 1);          display_file(DATA_GOODBYE, 1);
197    
198          log_common("User logout\n");          log_common("User [%s] logout, idle for %ld seconds since last input\n", BBS_username, time(NULL) - BBS_last_access_tm);
199    
200          return 0;          return 0;
201  }  }
# Line 216  int bbs_center() Line 205  int bbs_center()
205          int ch;          int ch;
206          time_t t_last_action;          time_t t_last_action;
207    
208          BBS_last_access_tm = t_last_action = time(0);          BBS_last_access_tm = t_last_action = time(NULL);
209    
210          clearscr();          clearscr();
211    
212          show_top("", BBS_name, "");          show_top("", BBS_name, "");
213          show_active_board();          show_active_board();
214          show_bottom("");          show_bottom("");
215          display_menu(p_bbs_menu);          display_menu(&bbs_menu);
216          iflush();          iflush();
217    
218          while (!SYS_server_exit)          while (!SYS_server_exit)
219          {          {
220                  ch = igetch(100);                  ch = igetch(100);
221    
222                  if (p_bbs_menu->choose_step == 0 && time(0) - t_last_action >= 10)                  if (ch != KEY_NULL && ch != KEY_TIMEOUT)
223                    {
224                            BBS_last_access_tm = time(NULL);
225                    }
226    
227                    if (bbs_menu.choose_step == 0 && time(NULL) - t_last_action >= 10)
228                  {                  {
229                          t_last_action = time(0);                          t_last_action = time(NULL);
230    
231                          show_active_board();                          show_active_board();
232                          show_bottom("");                          show_bottom("");
233                          display_menu_cursor(p_bbs_menu, 1);                          display_menu_cursor(&bbs_menu, 1);
234                          iflush();                          iflush();
235                  }                  }
236    
237                    if (user_online_update("MENU") < 0)
238                    {
239                            log_error("user_online_update(MENU) error\n");
240                    }
241    
242                  switch (ch)                  switch (ch)
243                  {                  {
244                  case KEY_NULL: // broken pipe                  case KEY_NULL: // broken pipe
245                            log_error("KEY_NULL\n");
246                          return 0;                          return 0;
247                  case KEY_TIMEOUT:                  case KEY_TIMEOUT:
248                          if (time(0) - BBS_last_access_tm >= MAX_DELAY_TIME)                          if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME)
249                          {                          {
250                                    log_error("User input timeout\n");
251                                  return 0;                                  return 0;
252                          }                          }
253                          continue;                          continue;
254                  case CR:                  case CR:
                         igetch_reset();  
255                  default:                  default:
256                          switch (menu_control(p_bbs_menu, ch))                          switch (menu_control(&bbs_menu, ch))
257                          {                          {
258                          case EXITBBS:                          case EXITBBS:
259                            case EXITMENU:
260                                  return 0;                                  return 0;
261                          case REDRAW:                          case REDRAW:
262                                  t_last_action = time(0);                                  t_last_action = time(NULL);
263                                  clearscr();                                  clearscr();
264                                  show_top("", BBS_name, "");                                  show_top("", BBS_name, "");
265                                  show_active_board();                                  show_active_board();
266                                  show_bottom("");                                  show_bottom("");
267                                  display_menu(p_bbs_menu);                                  display_menu(&bbs_menu);
268                                  break;                                  break;
269                          case NOREDRAW:                          case NOREDRAW:
270                          case UNKNOWN_CMD:                          case UNKNOWN_CMD:
# Line 272  int bbs_center() Line 273  int bbs_center()
273                          }                          }
274                          iflush();                          iflush();
275                  }                  }
276            }
277    
278            return 0;
279    }
280    
281                  BBS_last_access_tm = time(0);  int bbs_charset_select()
282    {
283            char msg[LINE_BUFFER_LEN];
284            int ch;
285    
286            snprintf(msg, sizeof(msg),
287                             "\rChoose character set in 5 seconds [UTF-8, GBK]: [U/g]");
288    
289            while (!SYS_server_exit)
290            {
291                    ch = press_any_key_ex(msg, 5);
292                    switch (ch)
293                    {
294                    case KEY_NULL:
295                            return -1;
296                    case KEY_TIMEOUT:
297                    case CR:
298                    case 'u':
299                    case 'U':
300                            return 0;
301                    case 'g':
302                    case 'G':
303                            if (io_conv_init("GBK") < 0)
304                            {
305                                    log_error("io_conv_init(%s) error\n", "GBK");
306                                    return -1;
307                            }
308                            return 0;
309                    default:
310                            continue;
311                    }
312          }          }
313    
314          return 0;          return 0;
# Line 281  int bbs_center() Line 316  int bbs_center()
316    
317  int bbs_main()  int bbs_main()
318  {  {
319            struct sigaction act = {0};
320            char msg[LINE_BUFFER_LEN];
321    
322            // Set signal handler
323            act.sa_handler = SIG_IGN;
324            if (sigaction(SIGHUP, &act, NULL) == -1)
325            {
326                    log_error("set signal action of SIGHUP error: %d\n", errno);
327                    goto cleanup;
328            }
329            act.sa_handler = SIG_DFL;
330            if (sigaction(SIGCHLD, &act, NULL) == -1)
331            {
332                    log_error("set signal action of SIGCHLD error: %d\n", errno);
333                    goto cleanup;
334            }
335    
336          // Set data pools in shared memory readonly          // Set data pools in shared memory readonly
337          if (set_trie_dict_shm_readonly() < 0)          if (set_trie_dict_shm_readonly() < 0)
338          {          {
# Line 296  int bbs_main() Line 348  int bbs_main()
348          }          }
349    
350          // Load menu in shared memory          // Load menu in shared memory
351          if (set_menu_shm_readonly(p_bbs_menu) < 0)          if (set_menu_shm_readonly(&bbs_menu) < 0)
352            {
353                    goto cleanup;
354            }
355    
356            // Set default charset
357            if (io_conv_init(BBS_DEFAULT_CHARSET) < 0)
358          {          {
359                    log_error("io_conv_init(%s) error\n", BBS_DEFAULT_CHARSET);
360                  goto cleanup;                  goto cleanup;
361          }          }
362    
363          set_input_echo(0);          set_input_echo(0);
364    
365            // Set user charset
366            bbs_charset_select();
367    
368          // System info          // System info
369          if (bbs_info() < 0)          if (bbs_info() < 0)
370          {          {
# Line 318  int bbs_main() Line 380  int bbs_main()
380          // User login          // User login
381          if (SSH_v2)          if (SSH_v2)
382          {          {
383                  prints("\033[1m%s ӭʹsshʽ \033[1;33m...\033[m", BBS_username);                  snprintf(msg, sizeof(msg), "\033[1m%s 欢迎使用ssh方式访问 \033[1;33m按任意键继续...\033[m", BBS_username);
384                  iflush();                  press_any_key_ex(msg, 60);
                 igetch_t(MAX_DELAY_TIME);  
385          }          }
386          else if (bbs_login() < 0)          else if (bbs_login() < 0)
387          {          {
388                  goto cleanup;                  goto cleanup;
389          }          }
390            log_common("User [%s] login\n", BBS_username);
391    
392            // Load article view log
393            if (article_view_log_load(BBS_priv.uid, &BBS_article_view_log, 0) < 0)
394            {
395                    log_error("article_view_log_load() error\n");
396                    goto cleanup;
397            }
398    
399          // Load article_view_log          // Load article favorite
400            if (article_favor_load(BBS_priv.uid, &BBS_article_favor, 0) < 0)
401            {
402                    log_error("article_favor_load() error\n");
403                    goto cleanup;
404            }
405    
406            // Init editor memory pool
407            if (editor_memory_pool_init() < 0)
408            {
409                    log_error("editor_memory_pool_init() error\n");
410                    goto cleanup;
411            }
412    
413          clearscr();          clearscr();
414    
415          // BBS Top 10          // BBS Top 10
416          display_file(VAR_BBS_TOP, 1, 1);          display_file(VAR_BBS_TOP, 1);
417    
418          // Main          // Main
419          bbs_center();          bbs_center();
# Line 340  int bbs_main() Line 421  int bbs_main()
421          // Logout          // Logout
422          bbs_logout();          bbs_logout();
423    
424            // Save incremental article view log
425            if (article_view_log_save_inc(&BBS_article_view_log) < 0)
426            {
427                    log_error("article_view_log_save_inc() error\n");
428            }
429    
430            // Save incremental article favorite
431            if (article_favor_save_inc(&BBS_article_favor) < 0)
432            {
433                    log_error("article_favor_save_inc() error\n");
434            }
435    
436  cleanup:  cleanup:
437            // Cleanup iconv
438            io_conv_cleanup();
439    
440            // Cleanup editor memory pool
441            editor_memory_pool_cleanup();
442    
443            // Unload article view log
444            article_view_log_unload(&BBS_article_view_log);
445    
446            // Unload article favor
447            article_favor_unload(&BBS_article_favor);
448    
449          // Detach menu in shared memory          // Detach menu in shared memory
450          detach_menu_shm(p_bbs_menu);          detach_menu_shm(&bbs_menu);
451          free(p_bbs_menu);          detach_menu_shm(&top10_menu);
         p_bbs_menu = NULL;  
452    
453          // Detach data pools shm          // Detach data pools shm
454          detach_section_list_shm();          detach_section_list_shm();


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

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