/[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.55 by sysadm, Fri Oct 17 01:25:08 2025 UTC Revision 1.63 by sysadm, Mon Nov 3 02:32:11 2025 UTC
# Line 30  Line 30 
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_list_display.h"
35  #include "user_priv.h"  #include "user_priv.h"
36    #include <errno.h>
37  #include <string.h>  #include <string.h>
38  #include <time.h>  #include <time.h>
39  #include <sys/param.h>  #include <sys/param.h>
40    
41  static int section_aid_locations[BBS_max_section] = {0};  static int32_t section_aid_locations[BBS_max_section] = {0};
42  static int section_topic_view_mode = 0;  static int section_topic_view_mode = 0;
43  static int section_topic_view_tid = -1;  static int section_topic_view_tid = -1;
44    
# Line 50  enum select_cmd_t Line 53  enum select_cmd_t
53          EDIT_ARTICLE,          EDIT_ARTICLE,
54          DELETE_ARTICLE,          DELETE_ARTICLE,
55          QUERY_ARTICLE,          QUERY_ARTICLE,
56            QUERY_USER,
57          SET_FAVOR_ARTICLE,          SET_FAVOR_ARTICLE,
58          UNSET_FAVOR_ARTICLE,          UNSET_FAVOR_ARTICLE,
59          FIRST_TOPIC_ARTICLE,          FIRST_TOPIC_ARTICLE,
# Line 57  enum select_cmd_t Line 61  enum select_cmd_t
61          SCAN_NEW_ARTICLE,          SCAN_NEW_ARTICLE,
62          VIEW_EX_DIR,          VIEW_EX_DIR,
63          SHOW_TOP10,          SHOW_TOP10,
64            SEARCH_USER,
65  };  };
66    
67  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 262  static enum select_cmd_t section_list_se Line 267  static enum select_cmd_t section_list_se
267    
268                  switch (ch)                  switch (ch)
269                  {                  {
270                  case KEY_NULL:                   // broken pipe                  case KEY_NULL: // broken pipe
271                          log_error("KEY_NULL\n");                          log_error("KEY_NULL\n");
272                          return EXIT_SECTION;                          return EXIT_SECTION;
273                  case KEY_TIMEOUT:                  case KEY_TIMEOUT:
# Line 305  static enum select_cmd_t section_list_se Line 310  static enum select_cmd_t section_list_se
310                                  return QUERY_ARTICLE;                                  return QUERY_ARTICLE;
311                          }                          }
312                          break;                          break;
313                    case Ctrl('A'):
314                            if (item_count > 0)
315                            {
316                                    return QUERY_USER;
317                            }
318                            break;
319                  case 'F':                  case 'F':
320                          if (item_count > 0)                          if (item_count > 0)
321                          {                          {
# Line 398  static enum select_cmd_t section_list_se Line 409  static enum select_cmd_t section_list_se
409                                  return SCAN_NEW_ARTICLE;                                  return SCAN_NEW_ARTICLE;
410                          }                          }
411                          break;                          break;
412                    case 'u':
413                            return SEARCH_USER;
414                  case 'h':                  case 'h':
415                          return SHOW_HELP;                          return SHOW_HELP;
416                  case 'x':                  case 'x':
# Line 405  static enum select_cmd_t section_list_se Line 418  static enum select_cmd_t section_list_se
418                  case 'H':                  case 'H':
419                          return SHOW_TOP10;                          return SHOW_TOP10;
420                  default:                  default:
421                            break;
422                  }                  }
423    
424                  if (old_page_id != *p_page_id)                  if (old_page_id != *p_page_id)
# Line 548  int section_list_display(const char *sna Line 562  int section_list_display(const char *sna
562          ARTICLE article_new;          ARTICLE article_new;
563          int page_id_cur;          int page_id_cur;
564          const ARTICLE *p_article_locate;          const ARTICLE *p_article_locate;
565            USER_INFO user_info;
566            char user_intro[BBS_user_intro_max_len];
567    
568          p_section = section_list_find_by_name(sname);          p_section = section_list_find_by_name(sname);
569          if (p_section == NULL)          if (p_section == NULL)
# Line 565  int section_list_display(const char *sna Line 581  int section_list_display(const char *sna
581    
582          section_index = get_section_index(p_section);          section_index = get_section_index(p_section);
583    
584          if ((ret = section_list_rd_lock(p_section)) < 0)          if (get_section_info(p_section, NULL, stitle, master_list) < 0)
585          {          {
586                  log_error("section_list_rd_lock(sid = 0) error\n");                  log_error("get_section_info(sid=%d) error\n", p_section->sid);
587                  return -2;                  return -4;
         }  
   
         strncpy(stitle, p_section->stitle, sizeof(stitle) - 1);  
         stitle[sizeof(stitle) - 1] = '\0';  
         strncpy(master_list, p_section->master_list, sizeof(master_list) - 1);  
         master_list[sizeof(master_list) - 1] = '\0';  
   
         if ((ret = section_list_rd_unlock(p_section)) < 0)  
         {  
                 log_error("section_list_rd_unlock(sid = 0) error\n");  
                 return -2;  
588          }          }
589    
590          if (aid == 0)          if (aid == 0)
# Line 661  int section_list_display(const char *sna Line 666  int section_list_display(const char *sna
666                  }                  }
667    
668                  ret = section_list_select(page_count, article_count, &page_id, &selected_index);                  ret = section_list_select(page_count, article_count, &page_id, &selected_index);
669    
670                  switch (ret)                  switch (ret)
671                  {                  {
672                  case EXIT_SECTION:                  case EXIT_SECTION:
673                            // Update current aid location
674                            if (p_articles[selected_index] != NULL)
675                            {
676                                    section_aid_locations[section_index] = p_articles[selected_index]->aid;
677                            }
678                            else
679                            {
680                                    log_error("p_articles[selected_index=%d] is NULL when exit section [%s]\n", selected_index, sname);
681                            }
682                          return 0;                          return 0;
683                  case CHANGE_PAGE:                  case CHANGE_PAGE:
684                          ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);                          ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
# Line 842  int section_list_display(const char *sna Line 857  int section_list_display(const char *sna
857                          // Update current topic                          // Update current topic
858                          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);
859    
                         // Update current aid location  
                         section_aid_locations[section_index] = p_articles[selected_index]->aid;  
   
860                          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)                          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
861                          {                          {
862                                  log_error("section_list_draw_screen() error\n");                                  log_error("section_list_draw_screen() error\n");
# Line 942  int section_list_display(const char *sna Line 954  int section_list_display(const char *sna
954                                  return -2;                                  return -2;
955                          }                          }
956                          break;                          break;
957                    case QUERY_USER:
958                            if ((ret = query_user_info_by_uid(p_articles[selected_index]->uid, &user_info, user_intro, sizeof(user_intro))) < 0)
959                            {
960                                    log_error("query_user_info_by_uid(uid=%d) error\n", p_articles[selected_index]->uid);
961                                    return -2;
962                            }
963                            else if (ret == 0)
964                            {
965                                    clearscr();
966                                    prints("该用户已升天");
967                                    press_any_key();
968                            }
969                            else if (user_info_display(&user_info) < 0) // && ret > 0
970                            {
971                                    log_error("user_info_display(uid=%d) error\n", p_articles[selected_index]->uid);
972                            }
973    
974                            if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
975                            {
976                                    log_error("section_list_draw_screen() error\n");
977                                    return -2;
978                            }
979                            break;
980                  case SET_FAVOR_ARTICLE:                  case SET_FAVOR_ARTICLE:
981                          ret = article_favor_set(p_articles[selected_index]->tid == 0                          ret = article_favor_set(p_articles[selected_index]->tid == 0
982                                                                                  ? p_articles[selected_index]->aid                                                                                  ? p_articles[selected_index]->aid
# Line 1017  int section_list_display(const char *sna Line 1052  int section_list_display(const char *sna
1052                                  }                                  }
1053                          }                          }
1054                          break;                          break;
1055                    case SEARCH_USER:
1056                            user_list_search();
1057                            if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
1058                            {
1059                                    log_error("section_list_draw_screen() error\n");
1060                                    return -2;
1061                            }
1062                            break;
1063                  case SHOW_HELP:                  case SHOW_HELP:
1064                          // Display help information                          // Display help information
1065                          display_file(DATA_READ_HELP, 1);                          display_file(DATA_READ_HELP, 1);
# Line 1141  int section_list_ex_dir_display(SECTION_ Line 1184  int section_list_ex_dir_display(SECTION_
1184    
1185          return 0;          return 0;
1186  }  }
1187    
1188    int section_aid_locations_save(int uid)
1189    {
1190            char filename[FILE_PATH_LEN];
1191            FILE *fp;
1192            int i;
1193            int ret = 0;
1194    
1195            snprintf(filename, sizeof(filename), "%s/%d", VAR_SECTION_AID_LOC_DIR, uid);
1196    
1197            if ((fp = fopen(filename, "wb")) == NULL)
1198            {
1199                    log_error("fopen(%s, wb) error: %d\n", filename, errno);
1200                    return -1;
1201            }
1202    
1203            for (i = 0; i < p_section_list_pool->section_count; i++)
1204            {
1205                    if (fwrite(&(p_section_list_pool->sections[i].sid), sizeof(p_section_list_pool->sections[i].sid), 1, fp) != 1)
1206                    {
1207                            log_error("fwrite(%s, sid) error\n", filename);
1208                            ret = -2;
1209                            break;
1210                    }
1211    
1212                    if (fwrite(&(section_aid_locations[i]), sizeof(section_aid_locations[i]), 1, fp) != 1)
1213                    {
1214                            log_error("fwrite(%s, aid) error\n", filename);
1215                            ret = -2;
1216                            break;
1217                    }
1218            }
1219    
1220            if (fclose(fp) < 0)
1221            {
1222                    log_error("fclose(%s) error: %d\n", filename, errno);
1223                    ret = -1;
1224            }
1225    
1226            return ret;
1227    }
1228    
1229    int section_aid_locations_load(int uid)
1230    {
1231            char filename[FILE_PATH_LEN];
1232            FILE *fp;
1233            int i;
1234            int32_t sid;
1235            int32_t aid;
1236            SECTION_LIST *p_section;
1237            int ret = 0;
1238    
1239            snprintf(filename, sizeof(filename), "%s/%d", VAR_SECTION_AID_LOC_DIR, uid);
1240    
1241            if ((fp = fopen(filename, "rb")) == NULL)
1242            {
1243                    if (errno == ENOENT) // file not exist
1244                    {
1245                            return 0;
1246                    }
1247                    log_error("fopen(%s, rb) error: %d\n", filename, errno);
1248                    return -1;
1249            }
1250    
1251            while (!feof(fp))
1252            {
1253                    if (fread(&sid, sizeof(sid), 1, fp) != 1)
1254                    {
1255                            if (ferror(fp) == 0)
1256                            {
1257                                    break;
1258                            }
1259                            log_error("fread(%s, sid) error: %d\n", filename, ferror(fp));
1260                            ret = -2;
1261                            break;
1262                    }
1263    
1264                    if (fread(&aid, sizeof(aid), 1, fp) != 1)
1265                    {
1266                            if (ferror(fp) == 0)
1267                            {
1268                                    break;
1269                            }
1270                            log_error("fread(%s, aid) error: %d\n", filename, ferror(fp));
1271                            ret = -2;
1272                            break;
1273                    }
1274    
1275                    p_section = section_list_find_by_sid(sid);
1276                    if (p_section == NULL)
1277                    {
1278                            continue; // skip section no longer exist
1279                    }
1280    
1281                    i = get_section_index(p_section);
1282                    if (i < 0)
1283                    {
1284                            log_error("get_section_index(sid=%d) error\n", sid);
1285                            ret = -3;
1286                            break;
1287                    }
1288                    section_aid_locations[i] = aid;
1289            }
1290    
1291            if (fclose(fp) < 0)
1292            {
1293                    log_error("fclose(%s) error: %d\n", filename, errno);
1294                    ret = -1;
1295            }
1296    
1297            return ret;
1298    }


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

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