/[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.20 by sysadm, Thu Jun 12 12:14:28 2025 UTC Revision 1.52 by sysadm, Tue Oct 14 06:28:54 2025 UTC
# Line 14  Line 14 
14   *                                                                         *   *                                                                         *
15   ***************************************************************************/   ***************************************************************************/
16    
 #include "section_list_display.h"  
 #include "section_list_loader.h"  
17  #include "article_cache.h"  #include "article_cache.h"
18    #include "article_op.h"
19  #include "article_post.h"  #include "article_post.h"
20    #include "article_view_log.h"
21    #include "article_del.h"
22  #include "common.h"  #include "common.h"
23  #include "io.h"  #include "io.h"
 #include "screen.h"  
24  #include "log.h"  #include "log.h"
25  #include "user_priv.h"  #include "login.h"
26  #include "article_view_log.h"  #include "menu.h"
27    #include "menu_proc.h"
28    #include "section_list_display.h"
29    #include "section_list_loader.h"
30    #include "screen.h"
31  #include "str_process.h"  #include "str_process.h"
32    #include "user_priv.h"
33    #include <string.h>
34  #include <time.h>  #include <time.h>
35  #include <sys/param.h>  #include <sys/param.h>
 #define _POSIX_C_SOURCE 200809L  
 #include <string.h>  
36    
37    static int section_aid_locations[BBS_max_section] = {0};
38  static int section_topic_view_mode = 0;  static int section_topic_view_mode = 0;
39  static int section_topic_view_tid = -1;  static int section_topic_view_tid = -1;
40    
41  enum select_cmd_t  enum select_cmd_t
42  {  {
43          EXIT_SECTION = 0,          EXIT_SECTION = 0,
44          VIEW_ARTICLE = 1,          VIEW_ARTICLE,
45          CHANGE_PAGE = 2,          CHANGE_PAGE,
46          REFRESH_SCREEN = 3,          SHOW_HELP,
47          CHANGE_NAME_DISPLAY = 4,          CHANGE_NAME_DISPLAY,
48          POST_ARTICLE = 5,          POST_ARTICLE,
49          EDIT_ARTICLE = 6,          EDIT_ARTICLE,
50            DELETE_ARTICLE,
51            QUERY_ARTICLE,
52            FIRST_TOPIC_ARTICLE,
53            LAST_TOPIC_ARTICLE,
54            SCAN_NEW_ARTICLE,
55            VIEW_EX_DIR,
56            SHOW_TOP10,
57  };  };
58    
59  static int section_list_draw_items(int page_id, ARTICLE *p_articles[], int article_count, int display_nickname)  static int section_list_draw_items(int page_id, ARTICLE *p_articles[], int article_count, int display_nickname, int ontop_start_offset)
60  {  {
61          char str_time[LINE_BUFFER_LEN];          char str_time[LINE_BUFFER_LEN];
62          struct tm tm_sub;          struct tm tm_sub;
# Line 53  static int section_list_draw_items(int p Line 65  static int section_list_draw_items(int p
65          int eol;          int eol;
66          int len;          int len;
67          int i;          int i;
68            size_t j;
69          char article_flag;          char article_flag;
70          int is_viewed;          int is_viewed;
71          time_t tm_now;          time_t tm_now;
# Line 77  static int section_list_draw_items(int p Line 90  static int section_list_draw_items(int p
90                          }                          }
91                  }                  }
92    
                 article_flag = (is_viewed ? ' ' : 'N');  
   
93                  if (p_articles[i]->excerption)                  if (p_articles[i]->excerption)
94                  {                  {
95                          article_flag = (is_viewed ? 'm' : 'M');                          article_flag = (is_viewed ? 'm' : 'M');
# Line 87  static int section_list_draw_items(int p Line 98  static int section_list_draw_items(int p
98                  {                  {
99                          article_flag = 'x';                          article_flag = 'x';
100                  }                  }
101                    else
102                    {
103                            article_flag = (is_viewed ? ' ' : 'N');
104                    }
105    
106                  localtime_r(&p_articles[i]->sub_dt, &tm_sub);                  localtime_r(&p_articles[i]->sub_dt, &tm_sub);
107                  if (tm_now - p_articles[i]->sub_dt < 3600 * 24 * 365)                  if (tm_now - p_articles[i]->sub_dt < 3600 * 24 * 365)
# Line 98  static int section_list_draw_items(int p Line 113  static int section_list_draw_items(int p
113                          strftime(str_time, sizeof(str_time), "%m/%Y", &tm_sub);                          strftime(str_time, sizeof(str_time), "%m/%Y", &tm_sub);
114                  }                  }
115    
116                  strncpy(title_f, (p_articles[i]->tid == 0 ? " " : ""), sizeof(title_f) - 1);                  strncpy(title_f, (p_articles[i]->tid == 0 ? "● " : ""), sizeof(title_f) - 1);
117                  title_f[sizeof(title_f) - 1] = '\0';                  title_f[sizeof(title_f) - 1] = '\0';
118                  strncat(title_f, (p_articles[i]->transship ? "[ת]" : ""), sizeof(title_f) - 1 - strnlen(title_f, sizeof(title_f)));                  strncat(title_f, (p_articles[i]->transship ? "[转载]" : ""), sizeof(title_f) - 1 - strnlen(title_f, sizeof(title_f)));
119                  strncat(title_f, p_articles[i]->title, sizeof(title_f) - 1 - strnlen(title_f, sizeof(title_f)));  
120                  len = split_line(title_f, 47 - (display_nickname ? 8 : 0), &eol, &title_f_len);                  // Rewrite title with "Re: Re: " prefix into "Re: ... "
121                    j = 0;
122                    if (p_articles[i]->tid != 0)
123                    {
124                            while (strncmp(p_articles[i]->title + j, "Re: ", strlen("Re: ")) == 0)
125                            {
126                                    j += strlen("Re: ");
127                            }
128                            if (j >= strlen("Re: Re: "))
129                            {
130                                    strncat(title_f, "Re: ... ", sizeof(title_f) - 1 - strnlen(title_f, sizeof(title_f)));
131                            }
132                            else
133                            {
134                                    j = 0;
135                            }
136                    }
137                    strncat(title_f, p_articles[i]->title + j, sizeof(title_f) - 1 - strnlen(title_f, sizeof(title_f)));
138    
139                    len = split_line(title_f, 59 - (display_nickname ? BBS_nickname_max_len / 2 : BBS_username_max_len), &eol, &title_f_len, 1);
140                  if (title_f[len] != '\0')                  if (title_f[len] != '\0')
141                  {                  {
142                          title_f[len] = '\0';                          title_f[len] = '\0';
143                  }                  }
144    
145                  moveto(4 + i, 1);                  moveto(4 + i, 1);
146                  prints("  %s%7d\033[m %c %s%*s %s %s%s\033[m",                  if (i >= ontop_start_offset)
147                             (p_articles[i]->aid == section_topic_view_tid ? "\033[1;33m" : (p_articles[i]->tid == section_topic_view_tid ? "\033[1;36m" : "")),                  {
148                             p_articles[i]->aid,                          prints("   \033[1;33m[提示]\033[m %c %s%*s %s %s%s\033[m",
149                             article_flag,                                     article_flag,
150                             (display_nickname ? p_articles[i]->nickname : p_articles[i]->username),                                     (display_nickname ? p_articles[i]->nickname : p_articles[i]->username),
151                             (display_nickname ? BBS_nickname_max_len - (int)strnlen(p_articles[i]->nickname, sizeof(p_articles[i]->nickname))                                     (display_nickname ? BBS_nickname_max_len / 2 - str_length(p_articles[i]->nickname, 1)
152                                                                   : BBS_username_max_len - (int)strnlen(p_articles[i]->username, sizeof(p_articles[i]->username))),                                                                           : BBS_username_max_len - str_length(p_articles[i]->username, 1)),
153                             "",                                     "",
154                             str_time,                                     str_time,
155                             (p_articles[i]->aid == section_topic_view_tid ? "\033[1;33m" : (p_articles[i]->tid == section_topic_view_tid ? "\033[1;36m" : "")),                                     (p_articles[i]->aid == section_topic_view_tid
156                             title_f);                                                  ? "\033[1;33m"
157                                                    : (p_articles[i]->tid == section_topic_view_tid
158                                                               ? "\033[1;36m"
159                                                               : "")),
160                                       title_f);
161                    }
162                    else
163                    {
164                            prints("  %s%7d\033[m %c %s%*s %s %s%s\033[m",
165                                       (p_articles[i]->aid == section_topic_view_tid
166                                                    ? "\033[1;33m"
167                                                    : (p_articles[i]->tid == section_topic_view_tid
168                                                               ? "\033[1;36m"
169                                                               : "")),
170                                       p_articles[i]->aid,
171                                       article_flag,
172                                       (display_nickname ? p_articles[i]->nickname : p_articles[i]->username),
173                                       (display_nickname ? BBS_nickname_max_len / 2 - str_length(p_articles[i]->nickname, 1)
174                                                                             : BBS_username_max_len - str_length(p_articles[i]->username, 1)),
175                                       "",
176                                       str_time,
177                                       (p_articles[i]->aid == section_topic_view_tid
178                                                    ? "\033[1;33m"
179                                                    : (p_articles[i]->tid == section_topic_view_tid
180                                                               ? "\033[1;36m"
181                                                               : "")),
182                                       title_f);
183                    }
184          }          }
185    
186          return 0;          return 0;
# Line 127  static int section_list_draw_items(int p Line 188  static int section_list_draw_items(int p
188    
189  static int section_list_draw_screen(const char *sname, const char *stitle, const char *master_list, int display_nickname)  static int section_list_draw_screen(const char *sname, const char *stitle, const char *master_list, int display_nickname)
190  {  {
191          char str_section_master[LINE_BUFFER_LEN] = "";          char str_section_master[LINE_BUFFER_LEN] = "诚征版主中";
192          char str_section_name[LINE_BUFFER_LEN];          char str_section_name[LINE_BUFFER_LEN];
193    
194          if (master_list[0] != '\0')          if (master_list[0] != '\0')
195          {          {
196                  snprintf(str_section_master, sizeof(str_section_master), "%s", master_list);                  snprintf(str_section_master, sizeof(str_section_master), "版主:%s", master_list);
197          }          }
198          snprintf(str_section_name, sizeof(str_section_name), " [%s]", sname);          snprintf(str_section_name, sizeof(str_section_name), "讨论区 [%s]", sname);
199    
200          clearscr();          clearscr();
201          show_top(str_section_master, stitle, str_section_name);          show_top(str_section_master, stitle, str_section_name);
202          moveto(2, 0);          moveto(2, 0);
203          prints("[\033[1;32m\033[0;37m,\033[1;32mESC\033[0;37m] ѡ[\033[1;32m\033[0;37m,\033[1;32m\033[0;37m] "          prints("返回[\033[1;32m←\033[0;37m,\033[1;32mESC\033[0;37m] 选择[\033[1;32m↑\033[0;37m,\033[1;32m↓\033[0;37m] "
204                     "Ķ[\033[1;32m\033[0;37m,\033[1;32mENTER\033[0;37m]\033[m %s[\033[1;32mn\033[0;37m]\033[m",                     "阅读[\033[1;32m→\033[0;37m,\033[1;32mENTER\033[0;37m] 发表[\033[1;32mCtrl-P\033[0;37m] "
205                     (display_nickname ? "ʾû" : "ʾdz"));                     "%s[\033[1;32mn\033[0;37m] 精华区[\033[1;32mx\033[0;37m] 帮助[\033[1;32mh\033[0;37m]\033[m",
206                       (display_nickname ? "用户名" : "昵称"));
207          moveto(3, 0);          moveto(3, 0);
208          if (display_nickname)          if (display_nickname)
209          {          {
210                  prints("\033[44;37m  \033[1;37m     dz              ±                               \033[m");                  prints("\033[44;37m  \033[1;37m 编  号   发布者昵称           日  期  文章标题                               \033[m");
211          }          }
212          else          else
213          {          {
214                  prints("\033[44;37m  \033[1;37m            ±                                       \033[m");                  prints("\033[44;37m  \033[1;37m 编  号   发 布 者     日  期  文章标题                                       \033[m");
215          }          }
216    
217          return 0;          return 0;
# Line 160  static enum select_cmd_t section_list_se Line 222  static enum select_cmd_t section_list_se
222          int old_page_id = *p_page_id;          int old_page_id = *p_page_id;
223          int old_selected_index = *p_selected_index;          int old_selected_index = *p_selected_index;
224          int ch;          int ch;
225            time_t last_refresh_tm = time(NULL);
         BBS_last_access_tm = time(0);  
226    
227          if (item_count > 0 && *p_selected_index >= 0)          if (item_count > 0 && *p_selected_index >= 0)
228          {          {
# Line 176  static enum select_cmd_t section_list_se Line 237  static enum select_cmd_t section_list_se
237    
238                  switch (ch)                  switch (ch)
239                  {                  {
                 case KEY_NULL: // broken pipe  
240                  case KEY_ESC:                  case KEY_ESC:
241                  case KEY_LEFT:                  case KEY_LEFT:
242                            BBS_last_access_tm = time(NULL);
243                    case KEY_NULL:                   // broken pipe
244                          return EXIT_SECTION; // exit section                          return EXIT_SECTION; // exit section
245                  case KEY_TIMEOUT:                  case KEY_TIMEOUT:
246                          if (time(0) - BBS_last_access_tm >= MAX_DELAY_TIME)                          if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME)
247                          {                          {
248                                  return EXIT_SECTION; // exit section                                  return EXIT_SECTION; // exit section
249                          }                          }
250                          continue;                          continue;
251                  case 'n':                  case 'n':
252                            BBS_last_access_tm = time(NULL);
253                          return CHANGE_NAME_DISPLAY;                          return CHANGE_NAME_DISPLAY;
254                  case CR:                  case CR:
255                          igetch_reset();                          igetch_reset();
256                    case 'r':
257                  case KEY_RIGHT:                  case KEY_RIGHT:
258                          if (item_count > 0)                          if (item_count > 0)
259                          {                          {
260                                    BBS_last_access_tm = time(NULL);
261                                  return VIEW_ARTICLE;                                  return VIEW_ARTICLE;
262                          }                          }
263                          break;                          break;
264                  case Ctrl('P'):                  case Ctrl('P'):
265                          return POST_ARTICLE;                          return POST_ARTICLE;
266                  case 'E':                  case 'E':
267                          return EDIT_ARTICLE;                          if (item_count > 0)
268                            {
269                                    return EDIT_ARTICLE;
270                            }
271                            break;
272                    case 'd':
273                            if (item_count > 0)
274                            {
275                                    return DELETE_ARTICLE;
276                            }
277                            break;
278                    case Ctrl('Q'):
279                            if (item_count > 0)
280                            {
281                                    return QUERY_ARTICLE;
282                            }
283                            break;
284                  case KEY_HOME:                  case KEY_HOME:
285                          *p_page_id = 0;                          *p_page_id = 0;
286                    case 'P':
287                  case KEY_PGUP:                  case KEY_PGUP:
288                          *p_selected_index = 0;                          *p_selected_index = 0;
289                    case 'k':
290                  case KEY_UP:                  case KEY_UP:
291                          if (*p_selected_index <= 0)                          if (*p_selected_index <= 0)
292                          {                          {
# Line 212  static enum select_cmd_t section_list_se Line 295  static enum select_cmd_t section_list_se
295                                          (*p_page_id)--;                                          (*p_page_id)--;
296                                          *p_selected_index = BBS_article_limit_per_page - 1;                                          *p_selected_index = BBS_article_limit_per_page - 1;
297                                  }                                  }
298                                    else if (ch == KEY_UP || ch == 'k') // Rotate to the tail of section list
299                                    {
300                                            if (total_page > 0)
301                                            {
302                                                    *p_page_id = total_page - 1;
303                                            }
304                                            if (item_count > 0)
305                                            {
306                                                    *p_selected_index = item_count - 1;
307                                            }
308                                    }
309                          }                          }
310                          else                          else
311                          {                          {
312                                  (*p_selected_index)--;                                  (*p_selected_index)--;
313                          }                          }
314                          break;                          break;
315                    case '$':
316                  case KEY_END:                  case KEY_END:
317                          if (total_page > 0)                          if (total_page > 0)
318                          {                          {
319                                  *p_page_id = total_page - 1;                                  *p_page_id = total_page - 1;
320                          }                          }
321                    case 'N':
322                  case KEY_PGDN:                  case KEY_PGDN:
323                          if (item_count > 0)                          if (item_count > 0)
324                          {                          {
325                                  *p_selected_index = item_count - 1;                                  *p_selected_index = item_count - 1;
326                          }                          }
327                    case 'j':
328                  case KEY_DOWN:                  case KEY_DOWN:
329                          if (*p_selected_index + 1 >= item_count) // next page                          if (*p_selected_index + 1 >= item_count) // next page
330                          {                          {
# Line 236  static enum select_cmd_t section_list_se Line 333  static enum select_cmd_t section_list_se
333                                          (*p_page_id)++;                                          (*p_page_id)++;
334                                          *p_selected_index = 0;                                          *p_selected_index = 0;
335                                  }                                  }
336                                    else if (ch == KEY_DOWN || ch == 'j') // Rotate to the head of section list
337                                    {
338                                            *p_page_id = 0;
339                                            *p_selected_index = 0;
340                                    }
341                          }                          }
342                          else                          else
343                          {                          {
344                                  (*p_selected_index)++;                                  (*p_selected_index)++;
345                          }                          }
346                          break;                          break;
347                    case '=':
348                            if (item_count > 0)
349                            {
350                                    return FIRST_TOPIC_ARTICLE;
351                            }
352                            break;
353                    case '\\':
354                            if (item_count > 0)
355                            {
356                                    return LAST_TOPIC_ARTICLE;
357                            }
358                            break;
359                    case 'S':
360                            if (item_count > 0)
361                            {
362                                    return SCAN_NEW_ARTICLE;
363                            }
364                            break;
365                    case 'h':
366                            return SHOW_HELP;
367                    case 'x':
368                            return VIEW_EX_DIR;
369                    case 'H':
370                            return SHOW_TOP10;
371                  default:                  default:
372                  }                  }
373    
# Line 267  static enum select_cmd_t section_list_se Line 393  static enum select_cmd_t section_list_se
393                          old_selected_index = *p_selected_index;                          old_selected_index = *p_selected_index;
394                  }                  }
395    
396                  BBS_last_access_tm = time(0);                  BBS_last_access_tm = time(NULL);
397                    if (BBS_last_access_tm - last_refresh_tm >= BBS_section_list_load_interval)
398                    {
399                            return CHANGE_PAGE; // force section list refresh
400                    }
401          }          }
402    
403          return EXIT_SECTION;          return EXIT_SECTION;
# Line 278  static int display_article_key_handler(i Line 408  static int display_article_key_handler(i
408          switch (*p_key)          switch (*p_key)
409          {          {
410          case 'p':          case 'p':
411            case Ctrl('X'):
412                  section_topic_view_mode = !section_topic_view_mode;                  section_topic_view_mode = !section_topic_view_mode;
413          case 0: // Set msg          case 0: // Set msg
414                  if (section_topic_view_mode)                  if (section_topic_view_mode)
415                  {                  {
416                          snprintf(p_ctx->msg, sizeof(p_ctx->msg),                          snprintf(p_ctx->msg, sizeof(p_ctx->msg),
417                                           "| [\033[32m\033[33m,\033[32mESC\033[33m] | "                                           "| 返回[\033[32m←\033[33m,\033[32mESC\033[33m] "
418                                           "ͬĶ[\033[32m\033[33m/\033[32m\033[33m] | "                                           "同主题阅读[\033[32m↑\033[33m/\033[32m↓\033[33m] "
419                                           "ģʽ[\033[32mp\033[33m] | [\033[32mh\033[33m] |");                                           "切换[\033[32mp\033[33m] 回复[\033[32mr\033[33m] 帮助[\033[32mh\033[33m] |");
420                  }                  }
421                  else                  else
422                  {                  {
423                          snprintf(p_ctx->msg, sizeof(p_ctx->msg),                          snprintf(p_ctx->msg, sizeof(p_ctx->msg),
424                                           "| [\033[32m\033[33m,\033[32mESC\033[33m] | "                                           "| 返回[\033[32m←\033[33m,\033[32mESC\033[33m] "
425                                           "ƶ[\033[32m\033[33m/\033[32m\033[33m/\033[32mPgUp\033[33m/\033[32mPgDn\033[33m] | "                                           "移动[\033[32m↑\033[33m/\033[32m↓\033[33m/\033[32mPgUp\033[33m/\033[32mPgDn\033[33m] "
426                                           "ģʽ[\033[32mp\033[33m] | [\033[32mh\033[33m] |");                                           "切换[\033[32mp\033[33m] 回复[\033[32mr\033[33m] 帮助[\033[32mh\033[33m] |");
427                  }                  }
428                  *p_key = 0;                  *p_key = 0;
429                  break;                  break;
430          case 'r': // Reply article          case 'r': // Reply article
431                  return 1;                  return 1;
432            case '=': // First topic article
433                    return 1;
434            case '\\': // Last topic article
435                    return 1;
436          case KEY_UP:          case KEY_UP:
437          case KEY_PGUP:          case KEY_PGUP:
438          case KEY_HOME:          case KEY_HOME:
# Line 314  static int display_article_key_handler(i Line 449  static int display_article_key_handler(i
449                          return 1;                          return 1;
450                  }                  }
451                  break;                  break;
452            case 'k':
453                    if (section_topic_view_mode)
454                    {
455                            *p_key = KEY_PGUP;
456                    }
457                    else
458                    {
459                            *p_key = KEY_UP;
460                    }
461                    return 1;
462          case KEY_DOWN:          case KEY_DOWN:
463          case KEY_PGDN:          case KEY_PGDN:
464          case KEY_END:          case KEY_END:
# Line 330  static int display_article_key_handler(i Line 475  static int display_article_key_handler(i
475                          return 1;                          return 1;
476                  }                  }
477                  break;                  break;
478            case 'j':
479                    if (section_topic_view_mode)
480                    {
481                            *p_key = KEY_PGDN;
482                    }
483                    else
484                    {
485                            *p_key = KEY_DOWN;
486                    }
487                    return 1;
488          }          }
489    
490          return 0;          return 0;
491  }  }
492    
493  int section_list_display(const char *sname)  int section_list_display(const char *sname, int32_t aid)
494  {  {
495          static int display_nickname = 0;          static int display_nickname = 0;
496    
497          SECTION_LIST *p_section;          SECTION_LIST *p_section;
498            int64_t section_index;
499            int32_t aid_location;
500          char stitle[BBS_section_title_max_len + 1];          char stitle[BBS_section_title_max_len + 1];
501          char master_list[(BBS_username_max_len + 1) * 3 + 1];          char master_list[(BBS_username_max_len + 1) * 3 + 1];
502          char page_info_str[LINE_BUFFER_LEN];          char page_info_str[LINE_BUFFER_LEN];
503          ARTICLE *p_articles[BBS_article_limit_per_page];          ARTICLE *p_articles[BBS_article_limit_per_page];
504          int article_count;          int article_count;
505          int page_count;          int page_count;
506            int ontop_start_offset;
507          int page_id = 0;          int page_id = 0;
508          int selected_index = 0;          int selected_index = 0;
509          ARTICLE_CACHE cache;          ARTICLE_CACHE cache;
510          int ret;          int ret;
511          int loop;          int loop;
512          int direction;          int direction;
513            ARTICLE article_new;
514            int page_id_cur;
515            const ARTICLE *p_article_locate;
516    
517          p_section = section_list_find_by_name(sname);          p_section = section_list_find_by_name(sname);
518          if (p_section == NULL)          if (p_section == NULL)
# Line 360  int section_list_display(const char *sna Line 521  int section_list_display(const char *sna
521                  return -1;                  return -1;
522          }          }
523    
524            if (!checkpriv(&BBS_priv, p_section->sid, S_LIST))
525            {
526                    log_error("Forbid access to unauthorized section, sid=%d, uid=%d\n",
527                                      p_section->sid, BBS_priv.uid);
528                    return -1;
529            }
530    
531            section_index = get_section_index(p_section);
532    
533          if ((ret = section_list_rd_lock(p_section)) < 0)          if ((ret = section_list_rd_lock(p_section)) < 0)
534          {          {
535                  log_error("section_list_rd_lock(sid = 0) error\n");                  log_error("section_list_rd_lock(sid = 0) error\n");
# Line 377  int section_list_display(const char *sna Line 547  int section_list_display(const char *sna
547                  return -2;                  return -2;
548          }          }
549    
550            if (aid == 0)
551            {
552                    aid_location = section_aid_locations[section_index];
553            }
554            else
555            {
556                    aid_location = aid;
557            }
558    
559            // Locate at article with aid_locate
560            if (aid_location > 0)
561            {
562                    p_article_locate = article_block_find_by_aid(aid_location);
563                    if (p_article_locate == NULL)
564                    {
565                            log_error("article_block_find_by_aid(%d) error\n", aid_location);
566                            return -3;
567                    }
568    
569                    ret = locate_article_in_section(p_section, p_article_locate, 0, 0,
570                                                                                    &page_id, &selected_index, &article_count);
571                    if (ret < 0)
572                    {
573                            log_error("locate_article_in_section(sid=%d, aid=%d, direction=0, step=0) error\n",
574                                              p_section->sid, p_article_locate->aid);
575                            return -3;
576                    }
577            }
578    
579          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
580          {          {
581                  log_error("section_list_draw_screen() error\n");                  log_error("section_list_draw_screen() error\n");
582                  return -2;                  return -2;
583          }          }
584    
585          ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count);          ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
586          if (ret < 0)          if (ret < 0)
587          {          {
588                  log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);                  log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
589                  return -3;                  return -3;
590          }          }
591    
592            section_topic_view_tid = -1;
593    
594          if (article_count == 0) // empty section          if (article_count == 0) // empty section
595          {          {
596                  selected_index = 0;                  selected_index = 0;
597          }          }
598            else if (aid > 0)
599            {
600                    // Update current topic
601                    section_topic_view_tid = (p_articles[selected_index]->tid == 0 ? p_articles[selected_index]->aid : p_articles[selected_index]->tid);
602    
603                    // Update current aid location
604                    section_aid_locations[section_index] = p_articles[selected_index]->aid;
605            }
606    
607          while (!SYS_server_exit)          while (!SYS_server_exit)
608          {          {
609                  ret = section_list_draw_items(page_id, p_articles, article_count, display_nickname);                  ret = section_list_draw_items(page_id, p_articles, article_count, display_nickname, ontop_start_offset);
610                  if (ret < 0)                  if (ret < 0)
611                  {                  {
612                          log_error("section_list_draw_items(sid=%d, page_id=%d) error\n", p_section->sid, page_id);                          log_error("section_list_draw_items(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
# Line 405  int section_list_display(const char *sna Line 614  int section_list_display(const char *sna
614                  }                  }
615    
616                  snprintf(page_info_str, sizeof(page_info_str),                  snprintf(page_info_str, sizeof(page_info_str),
617                                   "\033[33m[\033[36m%d\033[33m/\033[36m%d\033[33mҳ]",                                   "\033[33m[第\033[36m%d\033[33m/\033[36m%d\033[33m页]",
618                                   page_id + 1, MAX(page_count, 1));                                   page_id + 1, MAX(page_count, 1));
619    
620                  show_bottom(page_info_str);                  show_bottom(page_info_str);
621                  iflush();                  iflush();
622    
623                    if (user_online_update(sname) < 0)
624                    {
625                            log_error("user_online_update(%s) error\n", sname);
626                    }
627    
628                  ret = section_list_select(page_count, article_count, &page_id, &selected_index);                  ret = section_list_select(page_count, article_count, &page_id, &selected_index);
629                  switch (ret)                  switch (ret)
630                  {                  {
631                  case EXIT_SECTION:                  case EXIT_SECTION:
632                          return 0;                          return 0;
633                  case CHANGE_PAGE:                  case CHANGE_PAGE:
634                          ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count);                          ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
635                          if (ret < 0)                          if (ret < 0)
636                          {                          {
637                                  log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);                                  log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
# Line 443  int section_list_display(const char *sna Line 657  int section_list_display(const char *sna
657                                          break;                                          break;
658                                  }                                  }
659    
660                                    if (user_online_update("VIEW_ARTICLE") < 0)
661                                    {
662                                            log_error("user_online_update(VIEW_ARTICLE) error\n");
663                                    }
664    
665                                  ret = display_data(cache.p_data, cache.line_total, cache.line_offsets, 0,                                  ret = display_data(cache.p_data, cache.line_total, cache.line_offsets, 0,
666                                                                     display_article_key_handler, DATA_READ_HELP);                                                                     display_article_key_handler, DATA_READ_HELP);
667    
# Line 468  int section_list_display(const char *sna Line 687  int section_list_display(const char *sna
687                                                          page_id--;                                                          page_id--;
688                                                          selected_index = BBS_article_limit_per_page - 1;                                                          selected_index = BBS_article_limit_per_page - 1;
689    
690                                                          ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count);                                                          ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
691                                                          if (ret < 0)                                                          if (ret < 0)
692                                                          {                                                          {
693                                                                  log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);                                                                  log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
# Line 499  int section_list_display(const char *sna Line 718  int section_list_display(const char *sna
718                                                          page_id++;                                                          page_id++;
719                                                          selected_index = 0;                                                          selected_index = 0;
720    
721                                                          ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count);                                                          ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
722                                                          if (ret < 0)                                                          if (ret < 0)
723                                                          {                                                          {
724                                                                  log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);                                                                  log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
# Line 525  int section_list_display(const char *sna Line 744  int section_list_display(const char *sna
744                                  case KEY_PGUP:                                  case KEY_PGUP:
745                                  case KEY_PGDN:                                  case KEY_PGDN:
746                                          direction = (ret == KEY_PGUP ? -1 : 1);                                          direction = (ret == KEY_PGUP ? -1 : 1);
747                                          ret = locate_article_in_section(p_section, p_articles[selected_index], direction, &page_id, &selected_index, &page_count);                                          ret = locate_article_in_section(p_section, p_articles[selected_index], direction, 1,
748                                                                                                            &page_id, &selected_index, &article_count);
749                                          if (ret < 0)                                          if (ret < 0)
750                                          {                                          {
751                                                  log_error("locate_article_in_section(sid=%d, aid=%d, direction=%d) error\n",                                                  log_error("locate_article_in_section(sid=%d, aid=%d, direction=%d, step=1) error\n",
752                                                                    p_section->sid, p_articles[selected_index]->aid, direction);                                                                    p_section->sid, p_articles[selected_index]->aid, direction);
753                                                  return -3;                                                  return -3;
754                                          }                                          }
755                                          else if (ret > 0)                                          else if (ret > 0) // found
756                                          {                                          {
757                                                  ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count);                                                  ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
758                                                  if (ret < 0)                                                  if (ret < 0)
759                                                  {                                                  {
760                                                          log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);                                                          log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
# Line 544  int section_list_display(const char *sna Line 764  int section_list_display(const char *sna
764                                          }                                          }
765                                          break;                                          break;
766                                  case 'r': // Reply article                                  case 'r': // Reply article
767                                          if (article_post(p_section, p_articles[selected_index], ARTICLE_POST_REPLY) < 0)                                          if (user_online_update("REPLY_ARTICLE") < 0)
768                                            {
769                                                    log_error("user_online_update(REPLY_ARTICLE) error\n");
770                                            }
771    
772                                            if (article_reply(p_section, p_articles[selected_index], &article_new) < 0)
773                                          {                                          {
774                                                  log_error("article_post(aid=%d, REPLY) error\n", p_articles[selected_index]->aid);                                                  log_error("article_reply(aid=%d) error\n", p_articles[selected_index]->aid);
775                                          }                                          }
776                                          loop = 1;                                          loop = 1;
777                                          break;                                          break;
778                                    case '=':  // First topic article
779                                    case '\\': // Last topic article
780                                            page_id_cur = page_id;
781                                            direction = (ret == '=' ? -1 : 1);
782                                            ret = locate_article_in_section(p_section, p_articles[selected_index], direction, BBS_article_limit_per_section,
783                                                                                                            &page_id, &selected_index, &article_count);
784                                            if (ret < 0)
785                                            {
786                                                    log_error("locate_article_in_section(sid=%d, aid=%d, direction=%d, step=%d) error\n",
787                                                                      p_section->sid, p_articles[selected_index]->aid, direction, BBS_article_limit_per_section);
788                                                    return -3;
789                                            }
790                                            else if (ret > 0) // found
791                                            {
792                                                    if (page_id != page_id_cur) // page changed
793                                                    {
794                                                            ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
795                                                            if (ret < 0)
796                                                            {
797                                                                    log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
798                                                                    return -3;
799                                                            }
800                                                    }
801                                                    loop = 1;
802                                            }
803                                            break;
804                                  }                                  }
805                          } while (loop);                          } while (loop);
806    
807                          // Update current topic                          // Update current topic
808                          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);
809                  case REFRESH_SCREEN:  
810                            // Update current aid location
811                            section_aid_locations[section_index] = p_articles[selected_index]->aid;
812    
813                          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)                          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
814                          {                          {
815                                  log_error("section_list_draw_screen() error\n");                                  log_error("section_list_draw_screen() error\n");
# Line 571  int section_list_display(const char *sna Line 825  int section_list_display(const char *sna
825                          }                          }
826                          break;                          break;
827                  case POST_ARTICLE:                  case POST_ARTICLE:
828                          if (article_post(p_section, NULL, ARTICLE_POST_NEW) < 0)                          if (user_online_update("POST_ARTICLE") < 0)
829                            {
830                                    log_error("user_online_update(POST_ARTICLE) error\n");
831                            }
832    
833                            if ((ret = article_post(p_section, &article_new)) < 0)
834                            {
835                                    log_error("article_post(sid=%d) error\n", p_section->sid);
836                            }
837                            else if (ret > 0) // New article posted
838                          {                          {
839                                  log_error("article_post(sid=%d, NEW) error\n", p_section->sid);                                  ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
840                                    if (ret < 0)
841                                    {
842                                            log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
843                                            return -3;
844                                    }
845                          }                          }
846                          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)                          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
847                          {                          {
# Line 582  int section_list_display(const char *sna Line 850  int section_list_display(const char *sna
850                          }                          }
851                          break;                          break;
852                  case EDIT_ARTICLE:                  case EDIT_ARTICLE:
853                          if (p_articles[selected_index]->uid != BBS_priv.uid)                          if (!checkpriv(&BBS_priv, p_section->sid, S_POST) ||
854                                    p_articles[selected_index]->uid != BBS_priv.uid)
855                            {
856                                    break; // No permission
857                            }
858    
859                            if (user_online_update("EDIT_ARTICLE") < 0)
860                            {
861                                    log_error("user_online_update() error\n");
862                            }
863    
864                            if (article_modify(p_section, p_articles[selected_index], &article_new) < 0)
865                            {
866                                    log_error("article_modify(aid=%d) error\n", p_articles[selected_index]->aid);
867                            }
868                            if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
869                            {
870                                    log_error("section_list_draw_screen() error\n");
871                                    return -2;
872                            }
873                            break;
874                    case DELETE_ARTICLE:
875                            if (!checkpriv(&BBS_priv, p_section->sid, S_POST) ||
876                                    (!checkpriv(&BBS_priv, p_section->sid, S_MAN_S) && p_articles[selected_index]->uid != BBS_priv.uid))
877                            {
878                                    break; // No permission
879                            }
880                            if ((ret = article_del(p_section, p_articles[selected_index])) < 0)
881                            {
882                                    log_error("article_del(aid=%d) error\n", p_articles[selected_index]->aid);
883                            }
884                            else if (ret > 0) // Article deleted
885                            {
886                                    ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
887                                    if (ret < 0)
888                                    {
889                                            log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
890                                            return -3;
891                                    }
892                            }
893                            if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
894                            {
895                                    log_error("section_list_draw_screen() error\n");
896                                    return -2;
897                            }
898                            break;
899                    case QUERY_ARTICLE:
900                            if ((ret = display_article_meta(p_articles[selected_index]->aid)) < 0)
901                            {
902                                    log_error("display_article_meta(aid=%d) error\n", p_articles[selected_index]->aid);
903                            }
904                            if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
905                            {
906                                    log_error("section_list_draw_screen() error\n");
907                                    return -2;
908                            }
909                            break;
910                    case FIRST_TOPIC_ARTICLE:
911                    case LAST_TOPIC_ARTICLE:
912                            page_id_cur = page_id;
913                            direction = (ret == FIRST_TOPIC_ARTICLE ? -1 : 1);
914                            ret = locate_article_in_section(p_section, p_articles[selected_index], direction, BBS_article_limit_per_section,
915                                                                                            &page_id, &selected_index, &article_count);
916                            if (ret < 0)
917                            {
918                                    log_error("locate_article_in_section(sid=%d, aid=%d, direction=%d, step=%d) error\n",
919                                                      p_section->sid, p_articles[selected_index]->aid, direction, BBS_article_limit_per_section);
920                                    return -3;
921                            }
922                            else if (ret > 0 && page_id != page_id_cur) // found and page changed
923                            {
924                                    ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
925                                    if (ret < 0)
926                                    {
927                                            log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
928                                            return -3;
929                                    }
930                            }
931                            break;
932                    case SCAN_NEW_ARTICLE:
933                            ret = scan_unread_article_in_section(p_section, p_articles[selected_index], &p_article_locate);
934                            if (ret < 0)
935                            {
936                                    log_error("scan_unread_article_in_section(sid=%d, aid=%d) error\n",
937                                                      p_section->sid, p_articles[selected_index]->aid);
938                                    return -3;
939                            }
940                            else if (ret == 0) // not found
941                          {                          {
942                                  break;                                  break;
943                          }                          }
944                          if (article_post(p_section, p_articles[selected_index], ARTICLE_POST_EDIT) < 0)                          page_id_cur = page_id;
945                            ret = locate_article_in_section(p_section, p_article_locate, 0, 0,
946                                                                                            &page_id, &selected_index, &article_count);
947                            if (ret < 0)
948                          {                          {
949                                  log_error("article_post(aid=%d, EDIT) error\n", p_articles[selected_index]->aid);                                  log_error("locate_article_in_section(sid=%d, aid=%d, direction=0, step=0) error\n",
950                                                      p_section->sid, p_article_locate->aid);
951                                    return -3;
952                            }
953                            else if (ret > 0 && page_id != page_id_cur) // found and page changed
954                            {
955                                    ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
956                                    if (ret < 0)
957                                    {
958                                            log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
959                                            return -3;
960                                    }
961                            }
962                            break;
963                    case SHOW_HELP:
964                            // Display help information
965                            display_file(DATA_READ_HELP, 1);
966                            if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
967                            {
968                                    log_error("section_list_draw_screen() error\n");
969                                    return -2;
970                            }
971                            break;
972                    case VIEW_EX_DIR:
973                            if (section_list_ex_dir_display(p_section) < 0)
974                            {
975                                    log_error("section_list_ex_dir_display(sid=%d) error\n", p_section->sid);
976                            }
977                            if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
978                            {
979                                    log_error("section_list_draw_screen() error\n");
980                                    return -2;
981                          }                          }
982                            break;
983                    case SHOW_TOP10:
984                            show_top10_menu(NULL);
985                          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)                          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
986                          {                          {
987                                  log_error("section_list_draw_screen() error\n");                                  log_error("section_list_draw_screen() error\n");
# Line 603  int section_list_display(const char *sna Line 995  int section_list_display(const char *sna
995    
996          return 0;          return 0;
997  }  }
998    
999    int section_list_ex_dir_display(SECTION_LIST *p_section)
1000    {
1001            MENU_SET ex_menu_set;
1002            int ch = 0;
1003    
1004            if (p_section == NULL)
1005            {
1006                    log_error("NULL pointer error\n");
1007                    return -1;
1008            }
1009    
1010            if (p_section->ex_menu_tm == 0) // N/A
1011            {
1012                    moveto(2, 1);
1013                    clrtoeol();
1014                    prints("该版块精华区未开放");
1015                    press_any_key();
1016                    return 0;
1017            }
1018    
1019            if (get_section_ex_menu_set(p_section, &ex_menu_set) < 0)
1020            {
1021                    log_error("get_section_ex_menu_set(sid=%d) error\n", p_section->sid);
1022                    return -3;
1023            }
1024            if (get_menu_shm_readonly(&ex_menu_set) < 0)
1025            {
1026                    log_error("get_menu_shm_readonly(sid=%d) error\n", p_section->sid);
1027                    return -3;
1028            }
1029    
1030            clearscr();
1031            show_bottom("");
1032    
1033            if (display_menu(&ex_menu_set) == 0)
1034            {
1035                    while (!SYS_server_exit)
1036                    {
1037                            iflush();
1038                            ch = igetch(100);
1039                            switch (ch)
1040                            {
1041                            case KEY_NULL: // broken pipe
1042                                    return 0;
1043                            case KEY_TIMEOUT:
1044                                    if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME)
1045                                    {
1046                                            return 0;
1047                                    }
1048                                    continue;
1049                            case CR:
1050                                    igetch_reset();
1051                            default:
1052                                    switch (menu_control(&ex_menu_set, ch))
1053                                    {
1054                                    case EXITMENU:
1055                                            ch = EXITMENU;
1056                                            break;
1057                                    case REDRAW:
1058                                            clearscr();
1059                                            show_bottom("");
1060                                            display_menu(&ex_menu_set);
1061                                            break;
1062                                    case NOREDRAW:
1063                                    case UNKNOWN_CMD:
1064                                    default:
1065                                            break;
1066                                    }
1067                            }
1068    
1069                            BBS_last_access_tm = time(NULL);
1070    
1071                            if (ch == EXITMENU)
1072                            {
1073                                    break;
1074                            }
1075                    }
1076            }
1077    
1078            detach_menu_shm(&ex_menu_set);
1079    
1080            return 0;
1081    }


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

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