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

Diff of /lbbs/src/section_list_display.c

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

Revision 1.45 by sysadm, Sat Oct 4 03:21:59 2025 UTC Revision 1.57 by sysadm, Sat Oct 25 13:09:42 2025 UTC
# Line 15  Line 15 
15   ***************************************************************************/   ***************************************************************************/
16    
17  #include "article_cache.h"  #include "article_cache.h"
18    #include "article_favor.h"
19  #include "article_op.h"  #include "article_op.h"
20  #include "article_post.h"  #include "article_post.h"
21  #include "article_view_log.h"  #include "article_view_log.h"
# Line 24  Line 25 
25  #include "log.h"  #include "log.h"
26  #include "login.h"  #include "login.h"
27  #include "menu.h"  #include "menu.h"
28    #include "menu_proc.h"
29  #include "section_list_display.h"  #include "section_list_display.h"
30  #include "section_list_loader.h"  #include "section_list_loader.h"
31  #include "screen.h"  #include "screen.h"
32  #include "str_process.h"  #include "str_process.h"
33    #include "user_info_display.h"
34  #include "user_priv.h"  #include "user_priv.h"
35  #include <string.h>  #include <string.h>
36  #include <time.h>  #include <time.h>
37  #include <sys/param.h>  #include <sys/param.h>
38    
39    static int section_aid_locations[BBS_max_section] = {0};
40  static int section_topic_view_mode = 0;  static int section_topic_view_mode = 0;
41  static int section_topic_view_tid = -1;  static int section_topic_view_tid = -1;
42    
# Line 47  enum select_cmd_t Line 51  enum select_cmd_t
51          EDIT_ARTICLE,          EDIT_ARTICLE,
52          DELETE_ARTICLE,          DELETE_ARTICLE,
53          QUERY_ARTICLE,          QUERY_ARTICLE,
54            QUERY_USER,
55            SET_FAVOR_ARTICLE,
56            UNSET_FAVOR_ARTICLE,
57          FIRST_TOPIC_ARTICLE,          FIRST_TOPIC_ARTICLE,
58          LAST_TOPIC_ARTICLE,          LAST_TOPIC_ARTICLE,
59          SCAN_NEW_ARTICLE,          SCAN_NEW_ARTICLE,
60          VIEW_EX_DIR,          VIEW_EX_DIR,
61            SHOW_TOP10,
62  };  };
63    
64  static int section_list_draw_items(int page_id, ARTICLE *p_articles[], int article_count, int display_nickname, int ontop_start_offset)  static int section_list_draw_items(int page_id, ARTICLE *p_articles[], int article_count, int display_nickname, int ontop_start_offset)
# Line 65  static int section_list_draw_items(int p Line 73  static int section_list_draw_items(int p
73          size_t j;          size_t j;
74          char article_flag;          char article_flag;
75          int is_viewed;          int is_viewed;
76            int is_favor;
77          time_t tm_now;          time_t tm_now;
78    
79          time(&tm_now);          time(&tm_now);
# Line 87  static int section_list_draw_items(int p Line 96  static int section_list_draw_items(int p
96                          }                          }
97                  }                  }
98    
99                    if (p_articles[i]->tid == 0)
100                    {
101                            is_favor = article_favor_check(p_articles[i]->aid, &BBS_article_favor);
102                            if (is_favor < 0)
103                            {
104                                    log_error("article_favor_check(aid=%d) error\n", p_articles[i]->aid);
105                                    is_favor = 0;
106                            }
107                    }
108                    else
109                    {
110                            is_favor = 0;
111                    }
112    
113                  if (p_articles[i]->excerption)                  if (p_articles[i]->excerption)
114                  {                  {
115                          article_flag = (is_viewed ? 'm' : 'M');                          article_flag = (is_viewed ? 'm' : 'M');
# Line 133  static int section_list_draw_items(int p Line 156  static int section_list_draw_items(int p
156                  }                  }
157                  strncat(title_f, p_articles[i]->title + j, sizeof(title_f) - 1 - strnlen(title_f, sizeof(title_f)));                  strncat(title_f, p_articles[i]->title + j, sizeof(title_f) - 1 - strnlen(title_f, sizeof(title_f)));
158    
159                  len = split_line(title_f, 47 - (display_nickname ? 8 : 0), &eol, &title_f_len, 1);                  len = split_line(title_f, 59 - (display_nickname ? BBS_nickname_max_len / 2 : BBS_username_max_len), &eol, &title_f_len, 1);
160                  if (title_f[len] != '\0')                  if (title_f[len] != '\0')
161                  {                  {
162                          title_f[len] = '\0';                          title_f[len] = '\0';
# Line 142  static int section_list_draw_items(int p Line 165  static int section_list_draw_items(int p
165                  moveto(4 + i, 1);                  moveto(4 + i, 1);
166                  if (i >= ontop_start_offset)                  if (i >= ontop_start_offset)
167                  {                  {
168                          prints("   \033[1;33m[提示]\033[m %c %s%*s %s %s%s\033[m",                          prints("   \033[1;33m[提示]\033[m%c%c %s%*s %s %s%s\033[m",
169                                       (is_favor ? '@' : ' '),
170                                     article_flag,                                     article_flag,
171                                     (display_nickname ? p_articles[i]->nickname : p_articles[i]->username),                                     (display_nickname ? p_articles[i]->nickname : p_articles[i]->username),
172                                     (display_nickname ? BBS_nickname_max_len / 2 - str_length(p_articles[i]->nickname, 1)                                     (display_nickname ? BBS_nickname_max_len / 2 - str_length(p_articles[i]->nickname, 1)
# Line 158  static int section_list_draw_items(int p Line 182  static int section_list_draw_items(int p
182                  }                  }
183                  else                  else
184                  {                  {
185                          prints("  %s%7d\033[m %c %s%*s %s %s%s\033[m",                          prints("  %s%7d\033[m%c%c %s%*s %s %s%s\033[m",
186                                     (p_articles[i]->aid == section_topic_view_tid                                     (p_articles[i]->aid == section_topic_view_tid
187                                                  ? "\033[1;33m"                                                  ? "\033[1;33m"
188                                                  : (p_articles[i]->tid == section_topic_view_tid                                                  : (p_articles[i]->tid == section_topic_view_tid
189                                                             ? "\033[1;36m"                                                             ? "\033[1;36m"
190                                                             : "")),                                                             : "")),
191                                     p_articles[i]->aid,                                     p_articles[i]->aid,
192                                       (is_favor ? '@' : ' '),
193                                     article_flag,                                     article_flag,
194                                     (display_nickname ? p_articles[i]->nickname : p_articles[i]->username),                                     (display_nickname ? p_articles[i]->nickname : p_articles[i]->username),
195                                     (display_nickname ? BBS_nickname_max_len / 2 - str_length(p_articles[i]->nickname, 1)                                     (display_nickname ? BBS_nickname_max_len / 2 - str_length(p_articles[i]->nickname, 1)
# Line 232  static enum select_cmd_t section_list_se Line 257  static enum select_cmd_t section_list_se
257          {          {
258                  ch = igetch(100);                  ch = igetch(100);
259    
260                  switch (ch)                  if (ch != KEY_NULL && ch != KEY_TIMEOUT)
261                  {                  {
                 case KEY_ESC:  
                 case KEY_LEFT:  
262                          BBS_last_access_tm = time(NULL);                          BBS_last_access_tm = time(NULL);
263                  case KEY_NULL:                   // broken pipe                  }
264                          return EXIT_SECTION; // exit section  
265                    switch (ch)
266                    {
267                    case KEY_NULL: // broken pipe
268                            log_error("KEY_NULL\n");
269                            return EXIT_SECTION;
270                  case KEY_TIMEOUT:                  case KEY_TIMEOUT:
271                          if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME)                          if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME)
272                          {                          {
273                                  return EXIT_SECTION; // exit section                                  log_error("User input timeout\n");
274                                    return EXIT_SECTION;
275                          }                          }
276                          continue;                          continue;
277                    case KEY_ESC:
278                    case KEY_LEFT:
279                            return EXIT_SECTION;
280                  case 'n':                  case 'n':
                         BBS_last_access_tm = time(NULL);  
281                          return CHANGE_NAME_DISPLAY;                          return CHANGE_NAME_DISPLAY;
282                  case CR:                  case CR:
                         igetch_reset();  
283                  case 'r':                  case 'r':
284                  case KEY_RIGHT:                  case KEY_RIGHT:
285                          if (item_count > 0)                          if (item_count > 0)
286                          {                          {
                                 BBS_last_access_tm = time(NULL);  
287                                  return VIEW_ARTICLE;                                  return VIEW_ARTICLE;
288                          }                          }
289                          break;                          break;
# Line 278  static enum select_cmd_t section_list_se Line 307  static enum select_cmd_t section_list_se
307                                  return QUERY_ARTICLE;                                  return QUERY_ARTICLE;
308                          }                          }
309                          break;                          break;
310                    case Ctrl('A'):
311                            if (item_count > 0)
312                            {
313                                    return QUERY_USER;
314                            }
315                            break;
316                    case 'F':
317                            if (item_count > 0)
318                            {
319                                    return SET_FAVOR_ARTICLE;
320                            }
321                            break;
322                    case '-':
323                            if (item_count > 0)
324                            {
325                                    return UNSET_FAVOR_ARTICLE;
326                            }
327                            break;
328                  case KEY_HOME:                  case KEY_HOME:
329                          *p_page_id = 0;                          *p_page_id = 0;
330                  case 'P':                  case 'P':
# Line 363  static enum select_cmd_t section_list_se Line 410  static enum select_cmd_t section_list_se
410                          return SHOW_HELP;                          return SHOW_HELP;
411                  case 'x':                  case 'x':
412                          return VIEW_EX_DIR;                          return VIEW_EX_DIR;
413                    case 'H':
414                            return SHOW_TOP10;
415                  default:                  default:
416                            break;
417                  }                  }
418    
419                  if (old_page_id != *p_page_id)                  if (old_page_id != *p_page_id)
# Line 388  static enum select_cmd_t section_list_se Line 438  static enum select_cmd_t section_list_se
438                          old_selected_index = *p_selected_index;                          old_selected_index = *p_selected_index;
439                  }                  }
440    
                 BBS_last_access_tm = time(NULL);  
441                  if (BBS_last_access_tm - last_refresh_tm >= BBS_section_list_load_interval)                  if (BBS_last_access_tm - last_refresh_tm >= BBS_section_list_load_interval)
442                  {                  {
443                          return CHANGE_PAGE; // force section list refresh                          return CHANGE_PAGE; // force section list refresh
# Line 485  static int display_article_key_handler(i Line 534  static int display_article_key_handler(i
534          return 0;          return 0;
535  }  }
536    
537  int section_list_display(const char *sname)  int section_list_display(const char *sname, int32_t aid)
538  {  {
539          static int display_nickname = 0;          static int display_nickname = 0;
540    
541          SECTION_LIST *p_section;          SECTION_LIST *p_section;
542            int64_t section_index;
543            int32_t aid_location;
544          char stitle[BBS_section_title_max_len + 1];          char stitle[BBS_section_title_max_len + 1];
545          char master_list[(BBS_username_max_len + 1) * 3 + 1];          char master_list[(BBS_username_max_len + 1) * 3 + 1];
546          char page_info_str[LINE_BUFFER_LEN];          char page_info_str[LINE_BUFFER_LEN];
# Line 505  int section_list_display(const char *sna Line 556  int section_list_display(const char *sna
556          int direction;          int direction;
557          ARTICLE article_new;          ARTICLE article_new;
558          int page_id_cur;          int page_id_cur;
559          const ARTICLE *p_article_unread;          const ARTICLE *p_article_locate;
560            USER_INFO user_info;
561    
562          p_section = section_list_find_by_name(sname);          p_section = section_list_find_by_name(sname);
563          if (p_section == NULL)          if (p_section == NULL)
# Line 514  int section_list_display(const char *sna Line 566  int section_list_display(const char *sna
566                  return -1;                  return -1;
567          }          }
568    
569            if (!checkpriv(&BBS_priv, p_section->sid, S_LIST))
570            {
571                    log_error("Forbid access to unauthorized section, sid=%d, uid=%d\n",
572                                      p_section->sid, BBS_priv.uid);
573                    return -1;
574            }
575    
576            section_index = get_section_index(p_section);
577    
578          if ((ret = section_list_rd_lock(p_section)) < 0)          if ((ret = section_list_rd_lock(p_section)) < 0)
579          {          {
580                  log_error("section_list_rd_lock(sid = 0) error\n");                  log_error("section_list_rd_lock(sid = 0) error\n");
# Line 531  int section_list_display(const char *sna Line 592  int section_list_display(const char *sna
592                  return -2;                  return -2;
593          }          }
594    
595            if (aid == 0)
596            {
597                    aid_location = section_aid_locations[section_index];
598            }
599            else
600            {
601                    aid_location = aid;
602            }
603    
604            // Locate at article with aid_locate
605            if (aid_location > 0)
606            {
607                    p_article_locate = article_block_find_by_aid(aid_location);
608                    if (p_article_locate == NULL)
609                    {
610                            log_error("article_block_find_by_aid(%d) error\n", aid_location);
611                            return -3;
612                    }
613    
614                    ret = locate_article_in_section(p_section, p_article_locate, 0, 0,
615                                                                                    &page_id, &selected_index, &article_count);
616                    if (ret < 0)
617                    {
618                            log_error("locate_article_in_section(sid=%d, aid=%d, direction=0, step=0) error\n",
619                                              p_section->sid, p_article_locate->aid);
620                            return -3;
621                    }
622            }
623    
624          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
625          {          {
626                  log_error("section_list_draw_screen() error\n");                  log_error("section_list_draw_screen() error\n");
# Line 544  int section_list_display(const char *sna Line 634  int section_list_display(const char *sna
634                  return -3;                  return -3;
635          }          }
636    
637            section_topic_view_tid = -1;
638    
639          if (article_count == 0) // empty section          if (article_count == 0) // empty section
640          {          {
641                  selected_index = 0;                  selected_index = 0;
642          }          }
643            else if (aid > 0)
644            {
645                    // Update current topic
646                    section_topic_view_tid = (p_articles[selected_index]->tid == 0 ? p_articles[selected_index]->aid : p_articles[selected_index]->tid);
647    
648                    // Update current aid location
649                    section_aid_locations[section_index] = p_articles[selected_index]->aid;
650            }
651    
652          while (!SYS_server_exit)          while (!SYS_server_exit)
653          {          {
# Line 752  int section_list_display(const char *sna Line 852  int section_list_display(const char *sna
852                          // Update current topic                          // Update current topic
853                          section_topic_view_tid = (p_articles[selected_index]->tid == 0 ? p_articles[selected_index]->aid : p_articles[selected_index]->tid);                          section_topic_view_tid = (p_articles[selected_index]->tid == 0 ? p_articles[selected_index]->aid : p_articles[selected_index]->tid);
854    
855                            // Update current aid location
856                            section_aid_locations[section_index] = p_articles[selected_index]->aid;
857    
858                          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)                          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
859                          {                          {
860                                  log_error("section_list_draw_screen() error\n");                                  log_error("section_list_draw_screen() error\n");
# Line 849  int section_list_display(const char *sna Line 952  int section_list_display(const char *sna
952                                  return -2;                                  return -2;
953                          }                          }
954                          break;                          break;
955                    case QUERY_USER:
956                            if ((ret = query_user_info_by_uid(p_articles[selected_index]->uid, &user_info)) < 0)
957                            {
958                                    log_error("query_user_info_by_uid(uid=%d) error\n", p_articles[selected_index]->uid);
959                                    return -2;
960                            }
961                            else if (ret == 0)
962                            {
963                                    clearscr();
964                                    prints("该用户已升天");
965                                    press_any_key();
966                            }
967                            else if (user_info_display(&user_info) < 0) // && ret > 0
968                            {
969                                    log_error("user_info_display(uid=%d) error\n", p_articles[selected_index]->uid);
970                            }
971    
972                            if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
973                            {
974                                    log_error("section_list_draw_screen() error\n");
975                                    return -2;
976                            }
977                            break;
978                    case SET_FAVOR_ARTICLE:
979                            ret = article_favor_set(p_articles[selected_index]->tid == 0
980                                                                                    ? p_articles[selected_index]->aid
981                                                                                    : p_articles[selected_index]->tid,
982                                                                            &BBS_article_favor, 1);
983                            if (ret < 0)
984                            {
985                                    log_error("article_favor_set(aid=%d, 1) error\n",
986                                                      p_articles[selected_index]->tid == 0 ? p_articles[selected_index]->aid : p_articles[selected_index]->tid);
987                            }
988                            break;
989                    case UNSET_FAVOR_ARTICLE:
990                            ret = article_favor_set(p_articles[selected_index]->tid == 0
991                                                                                    ? p_articles[selected_index]->aid
992                                                                                    : p_articles[selected_index]->tid,
993                                                                            &BBS_article_favor, 0);
994                            if (ret < 0)
995                            {
996                                    log_error("article_favor_set(aid=%d, 0) error\n",
997                                                      p_articles[selected_index]->tid == 0 ? p_articles[selected_index]->aid : p_articles[selected_index]->tid);
998                            }
999                            break;
1000                  case FIRST_TOPIC_ARTICLE:                  case FIRST_TOPIC_ARTICLE:
1001                  case LAST_TOPIC_ARTICLE:                  case LAST_TOPIC_ARTICLE:
1002                          page_id_cur = page_id;                          page_id_cur = page_id;
# Line 872  int section_list_display(const char *sna Line 1020  int section_list_display(const char *sna
1020                          }                          }
1021                          break;                          break;
1022                  case SCAN_NEW_ARTICLE:                  case SCAN_NEW_ARTICLE:
1023                          ret = scan_unread_article_in_section(p_section, p_articles[selected_index], &p_article_unread);                          ret = scan_unread_article_in_section(p_section, p_articles[selected_index], &p_article_locate);
1024                          if (ret < 0)                          if (ret < 0)
1025                          {                          {
1026                                  log_error("scan_unread_article_in_section(sid=%d, aid=%d) error\n",                                  log_error("scan_unread_article_in_section(sid=%d, aid=%d) error\n",
# Line 884  int section_list_display(const char *sna Line 1032  int section_list_display(const char *sna
1032                                  break;                                  break;
1033                          }                          }
1034                          page_id_cur = page_id;                          page_id_cur = page_id;
1035                          ret = locate_article_in_section(p_section, p_article_unread, 0, 0,                          ret = locate_article_in_section(p_section, p_article_locate, 0, 0,
1036                                                                                          &page_id, &selected_index, &article_count);                                                                                          &page_id, &selected_index, &article_count);
1037                          if (ret < 0)                          if (ret < 0)
1038                          {                          {
1039                                  log_error("locate_article_in_section(sid=%d, aid=%d, direction=0, step=0) error\n",                                  log_error("locate_article_in_section(sid=%d, aid=%d, direction=0, step=0) error\n",
1040                                                    p_section->sid, p_article_unread->aid);                                                    p_section->sid, p_article_locate->aid);
1041                                  return -3;                                  return -3;
1042                          }                          }
1043                          else if (ret > 0 && page_id != page_id_cur) // found and page changed                          else if (ret > 0 && page_id != page_id_cur) // found and page changed
# Line 922  int section_list_display(const char *sna Line 1070  int section_list_display(const char *sna
1070                                  return -2;                                  return -2;
1071                          }                          }
1072                          break;                          break;
1073                    case SHOW_TOP10:
1074                            show_top10_menu(NULL);
1075                            if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
1076                            {
1077                                    log_error("section_list_draw_screen() error\n");
1078                                    return -2;
1079                            }
1080                            break;
1081                  default:                  default:
1082                          log_error("Unknown command %d\n", ret);                          log_error("Unknown command %d\n", ret);
1083                  }                  }
# Line 970  int section_list_ex_dir_display(SECTION_ Line 1126  int section_list_ex_dir_display(SECTION_
1126                  {                  {
1127                          iflush();                          iflush();
1128                          ch = igetch(100);                          ch = igetch(100);
1129    
1130                            if (ch != KEY_NULL && ch != KEY_TIMEOUT)
1131                            {
1132                                    BBS_last_access_tm = time(NULL);
1133                            }
1134    
1135                          switch (ch)                          switch (ch)
1136                          {                          {
1137                          case KEY_NULL: // broken pipe                          case KEY_NULL: // broken pipe
1138                                    log_error("KEY_NULL\n");
1139                                  return 0;                                  return 0;
1140                          case KEY_TIMEOUT:                          case KEY_TIMEOUT:
1141                                  if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME)                                  if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME)
1142                                  {                                  {
1143                                            log_error("User input timeout\n");
1144                                          return 0;                                          return 0;
1145                                  }                                  }
1146                                  continue;                                  continue;
1147                          case CR:                          case CR:
                                 igetch_reset();  
1148                          default:                          default:
1149                                  switch (menu_control(&ex_menu_set, ch))                                  switch (menu_control(&ex_menu_set, ch))
1150                                  {                                  {
# Line 1000  int section_list_ex_dir_display(SECTION_ Line 1163  int section_list_ex_dir_display(SECTION_
1163                                  }                                  }
1164                          }                          }
1165    
                         BBS_last_access_tm = time(NULL);  
   
1166                          if (ch == EXITMENU)                          if (ch == EXITMENU)
1167                          {                          {
1168                                  break;                                  break;


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

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