| 31 |
#include "screen.h" |
#include "screen.h" |
| 32 |
#include "str_process.h" |
#include "str_process.h" |
| 33 |
#include "user_info_display.h" |
#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 |
|
|
| 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) |
| 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': |
| 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; |
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) |
| 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); |
| 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"); |
| 955 |
} |
} |
| 956 |
break; |
break; |
| 957 |
case QUERY_USER: |
case QUERY_USER: |
| 958 |
if ((ret = query_user_info_by_uid(p_articles[selected_index]->uid, &user_info)) < 0) |
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); |
log_error("query_user_info_by_uid(uid=%d) error\n", p_articles[selected_index]->uid); |
| 961 |
return -2; |
return -2; |
| 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); |
| 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 |
|
} |