/[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.63 by sysadm, Mon Nov 3 02:32:11 2025 UTC Revision 1.66 by sysadm, Mon Nov 3 07:14:25 2025 UTC
# Line 33  Line 33 
33  #include "user_info_display.h"  #include "user_info_display.h"
34  #include "user_list_display.h"  #include "user_list_display.h"
35  #include "user_priv.h"  #include "user_priv.h"
36    #include <ctype.h>
37  #include <errno.h>  #include <errno.h>
38  #include <string.h>  #include <string.h>
39  #include <time.h>  #include <time.h>
40  #include <sys/param.h>  #include <sys/param.h>
41    
42    #define TITLE_SEARCH_MAX_LEN 60
43    
44  static int32_t section_aid_locations[BBS_max_section] = {0};  static int32_t section_aid_locations[BBS_max_section] = {0};
45  static int section_topic_view_mode = 0;  static int section_topic_view_mode = 0;
46  static int section_topic_view_tid = -1;  static int section_topic_view_tid = -1;
# Line 59  enum select_cmd_t Line 62  enum select_cmd_t
62          FIRST_TOPIC_ARTICLE,          FIRST_TOPIC_ARTICLE,
63          LAST_TOPIC_ARTICLE,          LAST_TOPIC_ARTICLE,
64          SCAN_NEW_ARTICLE,          SCAN_NEW_ARTICLE,
65            SCAN_ARTICLE_BACKWARD_BY_USER,
66            SCAN_ARTICLE_FORWARD_BY_USER,
67            SCAN_ARTICLE_BACKWARD_BY_TITLE,
68            SCAN_ARTICLE_FORWARD_BY_TITLE,
69          VIEW_EX_DIR,          VIEW_EX_DIR,
70          SHOW_TOP10,          SHOW_TOP10,
71          SEARCH_USER,          SEARCH_USER,
# Line 409  static enum select_cmd_t section_list_se Line 416  static enum select_cmd_t section_list_se
416                                  return SCAN_NEW_ARTICLE;                                  return SCAN_NEW_ARTICLE;
417                          }                          }
418                          break;                          break;
419                    case 'A':
420                            if (item_count > 0)
421                            {
422                                    return SCAN_ARTICLE_BACKWARD_BY_USER;
423                            }
424                            break;
425                    case 'a':
426                            if (item_count > 0)
427                            {
428                                    return SCAN_ARTICLE_FORWARD_BY_USER;
429                            }
430                            break;
431                    case '?':
432                            if (item_count > 0)
433                            {
434                                    return SCAN_ARTICLE_BACKWARD_BY_TITLE;
435                            }
436                            break;
437                    case '/':
438                            if (item_count > 0)
439                            {
440                                    return SCAN_ARTICLE_FORWARD_BY_TITLE;
441                            }
442                            break;
443                  case 'u':                  case 'u':
444                          return SEARCH_USER;                          return SEARCH_USER;
445                  case 'h':                  case 'h':
# Line 563  int section_list_display(const char *sna Line 594  int section_list_display(const char *sna
594          int page_id_cur;          int page_id_cur;
595          const ARTICLE *p_article_locate;          const ARTICLE *p_article_locate;
596          USER_INFO user_info;          USER_INFO user_info;
597          char user_intro[BBS_user_intro_max_len];          char user_intro[BBS_user_intro_max_len + 1];
598            char username[BBS_username_max_len + 1];
599            char username_list[1][BBS_username_max_len + 1];
600            int32_t uid;
601            int i;
602            int ok;
603            char title[BBS_article_title_max_len + 1] = "\0";
604    
605          p_section = section_list_find_by_name(sname);          p_section = section_list_find_by_name(sname);
606          if (p_section == NULL)          if (p_section == NULL)
# Line 1036  int section_list_display(const char *sna Line 1073  int section_list_display(const char *sna
1073                          page_id_cur = page_id;                          page_id_cur = page_id;
1074                          ret = locate_article_in_section(p_section, p_article_locate, 0, 0,                          ret = locate_article_in_section(p_section, p_article_locate, 0, 0,
1075                                                                                          &page_id, &selected_index, &article_count);                                                                                          &page_id, &selected_index, &article_count);
1076                            if (ret < 0)
1077                            {
1078                                    log_error("locate_article_in_section(sid=%d, aid=%d, direction=0, step=0) error\n",
1079                                                      p_section->sid, p_article_locate->aid);
1080                                    return -3;
1081                            }
1082                            else if (ret > 0 && page_id != page_id_cur) // found and page changed
1083                            {
1084                                    ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
1085                                    if (ret < 0)
1086                                    {
1087                                            log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
1088                                            return -3;
1089                                    }
1090                            }
1091                            break;
1092                    case SCAN_ARTICLE_BACKWARD_BY_USER:
1093                    case SCAN_ARTICLE_FORWARD_BY_USER:
1094                            direction = (ret == SCAN_ARTICLE_FORWARD_BY_USER ? 1 : -1);
1095                            strncpy(username, p_articles[selected_index]->username, sizeof(username) - 1);
1096                            username[sizeof(username) - 1] = '\0';
1097                            uid = 0;
1098    
1099                            moveto(SCREEN_ROWS, 1);
1100                            clrtoeol();
1101                            get_data(SCREEN_ROWS, 1,
1102                                             (direction == 1 ? "向下搜寻作者: " : "向上搜寻作者: "),
1103                                             username, sizeof(username), BBS_username_max_len);
1104    
1105                            if (username[0] == '\0')
1106                            {
1107                                    break;
1108                            }
1109    
1110                            // Verify format
1111                            for (i = 0, ok = 1; ok && username[i] != '\0'; i++)
1112                            {
1113                                    if (!(isalpha(username[i]) || (i > 0 && (isdigit(username[i]) || username[i] == '_'))))
1114                                    {
1115                                            ok = 0;
1116                                    }
1117                            }
1118                            if (ok && i > BBS_username_max_len)
1119                            {
1120                                    ok = 0;
1121                            }
1122                            if (!ok)
1123                            {
1124                                    break;
1125                            }
1126    
1127                            ret = query_user_info_by_username(username, 1, &uid, username_list);
1128                            if (ret < 0)
1129                            {
1130                                    log_error("query_user_info_by_username(%s) error\n", username);
1131                                    break;
1132                            }
1133    
1134                            if (uid > 0)
1135                            {
1136                                    ret = scan_article_in_section_by_uid(p_section, p_articles[selected_index],
1137                                                                                                             direction, uid, &p_article_locate);
1138                                    if (ret < 0)
1139                                    {
1140                                            log_error("scan_article_in_section_by_uid(sid=%d, aid=%d, direction=%d, uid=%d) error\n",
1141                                                              p_section->sid, p_articles[selected_index]->aid, direction, uid);
1142                                            return -3;
1143                                    }
1144                                    else if (ret == 0) // not found
1145                                    {
1146                                            break;
1147                                    }
1148                            }
1149                            else // uid == 0
1150                            {
1151                                    ret = scan_article_in_section_by_username(p_section, p_articles[selected_index],
1152                                                                                                                      direction, username, &p_article_locate);
1153                                    if (ret < 0)
1154                                    {
1155                                            log_error("scan_article_in_section_by_username(sid=%d, aid=%d, direction=%d, username=%s) error\n",
1156                                                              p_section->sid, p_articles[selected_index]->aid, direction, username);
1157                                            return -3;
1158                                    }
1159                                    else if (ret == 0) // not found
1160                                    {
1161                                            break;
1162                                    }
1163                            }
1164    
1165                            page_id_cur = page_id;
1166                            ret = locate_article_in_section(p_section, p_article_locate, 0, 0,
1167                                                                                            &page_id, &selected_index, &article_count);
1168                            if (ret < 0)
1169                            {
1170                                    log_error("locate_article_in_section(sid=%d, aid=%d, direction=0, step=0) error\n",
1171                                                      p_section->sid, p_article_locate->aid);
1172                                    return -3;
1173                            }
1174                            else if (ret > 0 && page_id != page_id_cur) // found and page changed
1175                            {
1176                                    ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
1177                                    if (ret < 0)
1178                                    {
1179                                            log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
1180                                            return -3;
1181                                    }
1182                            }
1183                            break;
1184                    case SCAN_ARTICLE_BACKWARD_BY_TITLE:
1185                    case SCAN_ARTICLE_FORWARD_BY_TITLE:
1186                            direction = (ret == SCAN_ARTICLE_FORWARD_BY_TITLE ? 1 : -1);
1187    
1188                            moveto(SCREEN_ROWS, 1);
1189                            clrtoeol();
1190                            get_data(SCREEN_ROWS, 1,
1191                                             (direction == 1 ? "向下搜寻标题: " : "向上搜寻标题: "),
1192                                             title, sizeof(title), TITLE_SEARCH_MAX_LEN);
1193    
1194                            if (title[0] == '\0')
1195                            {
1196                                    break;
1197                            }
1198    
1199                            ret = scan_article_in_section_by_title(p_section, p_articles[selected_index],
1200                                                                                                       direction, title, &p_article_locate);
1201                            if (ret < 0)
1202                            {
1203                                    log_error("scan_article_in_section_by_title(sid=%d, aid=%d, direction=%d, title=%s) error\n",
1204                                                      p_section->sid, p_articles[selected_index]->aid, direction, title);
1205                                    return -3;
1206                            }
1207                            else if (ret == 0) // not found
1208                            {
1209                                    break;
1210                            }
1211    
1212                            page_id_cur = page_id;
1213                            ret = locate_article_in_section(p_section, p_article_locate, 0, 0,
1214                                                                                            &page_id, &selected_index, &article_count);
1215                          if (ret < 0)                          if (ret < 0)
1216                          {                          {
1217                                  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",


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

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