From 3a014d927e393b889f074113c0a398ddb04807b2 Mon Sep 17 00:00:00 2001 From: piaip Date: Sat, 1 Dec 2007 12:42:33 +0000 Subject: - sync ptt2 local modification - refine post/vote restriction magic code - color in making recommend git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3603 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- include/proto.h | 1 + mbbsd/bbs.c | 144 +++++++++++++++++++++++++++++++----------------------- mbbsd/io.c | 10 ++-- mbbsd/mail.c | 9 ++-- mbbsd/voteboard.c | 56 +++++++++++++++++---- 5 files changed, 140 insertions(+), 80 deletions(-) diff --git a/include/proto.h b/include/proto.h index 25bcedd7..afc02a78 100644 --- a/include/proto.h +++ b/include/proto.h @@ -68,6 +68,7 @@ int cmpfowner(fileheader_t *fhdr); int b_note_edit_bname(int bid); int Read(void); int CheckPostPerm(void); +int CheckPostRestriction(int); void anticrosspost(void); int Select(void); void do_reply_title(int row, const char *title); diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index 116bfe17..6b3427dc 100644 --- a/mbbsd/bbs.c +++ b/mbbsd/bbs.c @@ -262,6 +262,24 @@ CheckPostPerm(void) return (currmode & MODE_POST); } +int CheckPostRestriction(int bid) +{ + if ((currmode & MODE_BOARD) || HasUserPerm(PERM_SYSOP)) + return 1; + + // check first-login + if (cuser.firstlogin > (now - (time4_t)bcache[bid - 1].post_limit_regtime * 2592000)) + return 0; + if (cuser.numlogins / 10 < (unsigned int)bcache[bid - 1].post_limit_logins) + return 0; + if (cuser.numposts / 10 < (unsigned int)bcache[bid - 1].post_limit_posts) + return 0; + if (cuser.badpost > (255 - (unsigned int)bcache[bid - 1].post_limit_badpost)) + return 0; + + return 1; +} + static void readtitle(void) { @@ -769,12 +787,9 @@ do_general(int isbid) } #ifndef DEBUG - if ( !((currmode & MODE_BOARD) || HasUserPerm(PERM_SYSOP)) && - (cuser.firstlogin > (now - (time4_t)bcache[currbid - 1].post_limit_regtime * 2592000) || - cuser.badpost > (255 - (unsigned int)(bcache[currbid - 1].post_limit_badpost)) || - cuser.numlogins < ((unsigned int)(bcache[currbid - 1].post_limit_logins) * 10) || - cuser.numposts < ((unsigned int)(bcache[currbid - 1].post_limit_posts) * 10)) ) { - move(5, 10); + if ( !CheckPostRestriction(currbid) ) + { + move(5, 10); // why move (5, 10)? vmsg("你不夠資深喔! (可按大寫 I 查看限制)"); return FULLUPDATE; } @@ -1087,11 +1102,8 @@ do_generalboardreply(/*const*/ fileheader_t * fhdr) char genbuf[3]; assert(0<=currbid-1 && currbid-1 (now - (time4_t)bcache[currbid - 1].post_limit_regtime * 2592000) || - cuser.badpost > (255 - (unsigned int)(bcache[currbid - 1].post_limit_badpost)) || - cuser.numlogins < ((unsigned int)(bcache[currbid - 1].post_limit_logins) * 10) || - cuser.numposts < ((unsigned int)(bcache[currbid - 1].post_limit_posts) * 10)) ) { + if (!CheckPostRestriction(currbid)) + { getdata(b_lines - 1, 0, "▲ 回應至 (M)作者信箱 (Q)取消?[M] ", genbuf, sizeof(genbuf), LCECHO); switch (genbuf[0]) { @@ -1444,11 +1456,8 @@ cross_post(int ent, fileheader_t * fhdr, const char *direct) postrecord.checksum[0] = ent; } - if ( !((currmode & MODE_BOARD) || HasUserPerm(PERM_SYSOP)) && - (cuser.firstlogin > (now - (time4_t)bcache[author - 1].post_limit_regtime * 2592000) || - cuser.badpost > (255 - (unsigned int)(bcache[author - 1].post_limit_badpost)) || - cuser.numlogins < ((unsigned int)(bcache[author - 1].post_limit_logins) * 10) || - cuser.numposts < ((unsigned int)(bcache[author - 1].post_limit_posts) * 10)) ) { + if (!CheckPostRestriction(author)) + { vmsg("你不夠資深喔! (可在目的看板內按大寫 I 查看限制)"); return FULLUPDATE; } @@ -1623,6 +1632,22 @@ read_post(int ent, fileheader_t * fhdr, const char *direct) more_result = more(genbuf, YEA); +#ifdef LOG_CRAWLER + { + // kcwu: log crawler + static int read_count = 0; + extern Fnv32_t client_code; + read_count++; + + if (read_count % 1000 == 0) { + time4_t t = time4(NULL); + log_file("log/read_alot", LOG_VF|LOG_CREAT, + "%d %s %d %s %08x %d\n", t, ctime4(&t), getpid(), + cuser.userid, client_code, read_count); + } + } +#endif // LOG_CRAWLER + { int posttime=atoi(fhdr->filename+2); if(posttime>now-12*3600) @@ -2294,7 +2319,7 @@ recommend(int ent, fileheader_t * fhdr, const char *direct) isGuest || #endif fhdr->filemode & FILE_VOTE) { - vmsg("您權限不足, 無法推薦!"); + vmsg("您權限不足, 無法推薦!"); // "(可按大寫 I 查看限制)" return FULLUPDATE; } @@ -2310,13 +2335,9 @@ recommend(int ent, fileheader_t * fhdr, const char *direct) } #ifndef DEBUG - // 下面這什麼鬼,麻煩好心人把它拆出去 - if ( !((currmode & MODE_BOARD) || HasUserPerm(PERM_SYSOP)) && - (cuser.firstlogin > (now - (time4_t)bcache[currbid - 1].post_limit_regtime * 2592000) || - cuser.badpost > (255 - (unsigned int)(bcache[currbid - 1].post_limit_badpost)) || - cuser.numlogins < ((unsigned int)(bcache[currbid - 1].post_limit_logins) * 10) || - cuser.numposts < ((unsigned int)(bcache[currbid - 1].post_limit_posts) * 10)) ) { - move(5, 10); + if (!CheckPostRestriction(currbid)) + { + move(5, 10); // why move (5, 10)? vmsg("你不夠資深喔! (可按大寫 I 查看限制)"); return FULLUPDATE; } @@ -2450,10 +2471,12 @@ recommend(int ent, fileheader_t * fhdr, const char *direct) maxlength -= strlen(cuser.userid); sprintf(buf, "%s %s:", "→" , cuser.userid); -#else +#else // !OLDRECOMMEND maxlength -= strlen(cuser.userid); - sprintf(buf, "%s %s:", ctype[type], cuser.userid); -#endif + sprintf(buf, "%s%s%s %s:", + ctype_attr[type], ctype[type], ANSI_RESET, + cuser.userid); +#endif // !OLDRECOMMEND if (!getdata(b_lines, 0, buf, msg, maxlength, DOECHO)) return FULLUPDATE; @@ -2464,6 +2487,7 @@ recommend(int ent, fileheader_t * fhdr, const char *direct) return FULLUPDATE; #else + // make sure to do modification { char ans[3]; sprintf(buf+strlen(buf), ANSI_COLOR(7) "%-*s" @@ -2472,7 +2496,27 @@ recommend(int ent, fileheader_t * fhdr, const char *direct) ans[0] != 'y') return FULLUPDATE; } -#endif + + // log if you want +#ifdef LOG_PUSH + { + static int tolog = 0; + if( tolog == 0 ) + tolog = + (cuser.numlogins < 50 || (now - cuser.firstlogin) < 86400 * 7) + ? 1 : 2; + if( tolog == 1 ){ + FILE *fp; + if( (fp = fopen("log/push", "a")) != NULL ){ + fprintf(fp, "%s %d %s %s %s\n", cuser.userid, now, currboard, fhdr->filename, msg); + fclose(fp); + } + sleep(1); + } + } +#endif // LOG_PUSH + +#endif // !DEBUG STATINC(STAT_RECOMMEND); @@ -2506,7 +2550,7 @@ recommend(int ent, fileheader_t * fhdr, const char *direct) ":%-*s" ANSI_RESET "%s\n", ctype_attr2[type], ctype[type], cuser.userid, maxlength, msg, tail); -#endif +#endif // OLDRECOMMEND } do_add_recommend(direct, fhdr, ent, buf, type); @@ -3263,21 +3307,22 @@ b_config(void) (bp->brdattr & BRD_LOCALSAVE) ? "站內存檔(不轉出)" : ANSI_COLOR(1)"站際存檔(轉出)" ); + prints( " " ANSI_COLOR(1;36) "1" ANSI_RESET + " - 未滿十八歲 %s " ANSI_RESET + "進入\n", (bp->brdattr & BRD_OVER18) ? + ANSI_COLOR(1) "不可以" : "可以" ); + + prints( " " ANSI_COLOR(1;36) "y" ANSI_RESET + " - %s" ANSI_RESET + " 回文 (群組長以上才可設定此項)\n", + (bp->brdattr & BRD_NOREPLY) ? + ANSI_COLOR(1)"不可以" : "可以" ); + prints( " " ANSI_COLOR(1;36) "e" ANSI_RESET " - 發文權限: %s" ANSI_RESET " (站長才可設定此項)\n", (bp->brdattr & BRD_RESTRICTEDPOST) ? ANSI_COLOR(1)"只有板友才可發文" : "無特別設定" ); - prints( " " ANSI_COLOR(1;36) "1" ANSI_RESET - " - 未滿十八歲 " ANSI_COLOR(1) "%s" ANSI_RESET - " 進入\n", - (bp->brdattr & BRD_OVER18) ? "不可以" : "可以" ); - - prints( " " ANSI_COLOR(1;36) "y" ANSI_RESET - " - " ANSI_COLOR(1) "%s" ANSI_RESET - " 回文 (群組長以上才可設定此項)", - (bp->brdattr & BRD_NOREPLY) ? "不可以" : "可以" ); - move_ansi(b_lines - 10, 52); prints("發文限制"); move_ansi(b_lines - 9, 54); @@ -3493,27 +3538,6 @@ change_localsave(void) { vmsg("此功\能已整合進大寫 I 看板設定,請按 I 設定。"); return FULLUPDATE; -#if 0 - boardheader_t *bp; - if (!((currmode & MODE_BOARD) || HasUserPerm(PERM_SYSOP))) - return DONOTHING; - - bp = getbcache(currbid); - if (bp->brdattr & BRD_LOCALSAVE) { - if (getans("目前板預設站內存檔, 要改變嘛(y/N)?") != 'y') - return FULLUPDATE; - bp->brdattr &= ~BRD_LOCALSAVE; - outs("文章預設轉出,請有所節制。\n"); - } else { - if (getans("目前板預設站際存檔, 要改變嗎(y/N)?") != 'y') - return FULLUPDATE; - bp->brdattr |= BRD_LOCALSAVE; - outs("文章預設不轉出,轉信要自行選擇喔。\n"); - } - substitute_record(fn_board, bp, sizeof(boardheader_t), currbid); - pressanykey(); - return FULLUPDATE; -#endif } #ifdef USE_COOLDOWN diff --git a/mbbsd/io.c b/mbbsd/io.c index 30c03712..38b2c273 100644 --- a/mbbsd/io.c +++ b/mbbsd/io.c @@ -642,9 +642,9 @@ wait_input(float f, int flDoRefresh) * @param buf * @param str * @param mode enum {STRIP_ALL = 0, ONLY_COLOR, NO_RELOAD}; - * STRIP_ALL: ?? - * ONLY_COLOR: ?? - * NO_RELOAD: 不 strip (?) + * STRIP_ALL: 全部吃掉 + * ONLY_COLOR: 只吃掉跟顏色有關的 (ESC[*m) + * NO_RELOAD: 不 strip (?) */ static const char EscapeFlag[] = { /* 0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -664,7 +664,7 @@ static const char EscapeFlag[] = { /* E0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* F0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }; -#define isEscapeParam(X) (EscapeFlag[(int)(X)] & 1) +#define isEscapeParam(X) (EscapeFlag[(int)(X)] & 1) #define isEscapeCommand(X) (EscapeFlag[(int)(X)] & 2) int @@ -705,6 +705,8 @@ strip_ansi(char *buf, const char *str, int mode) int strlen_noansi(const char *s) { + // XXX this is almost identical to + // strip_ansi(NULL, s, STRIP_ALL) register int count = 0, mode = 0; if (!s || !*s) diff --git a/mbbsd/mail.c b/mbbsd/mail.c index a34eea30..74efde1f 100644 --- a/mbbsd/mail.c +++ b/mbbsd/mail.c @@ -1310,12 +1310,9 @@ mail_cross_post(int ent, fileheader_t * fhdr, const char *direct) ent = getbnum(xboard); assert(0<=ent-1 && ent-1 (now - (time4_t)bcache[ent - 1].post_limit_regtime * 2592000) || - cuser.badpost > (255 - (unsigned int)(bcache[ent - 1].post_limit_badpost)) || - cuser.numlogins < ((unsigned int)(bcache[ent - 1].post_limit_logins) * 10) || - cuser.numposts < ((unsigned int)(bcache[ent - 1].post_limit_posts) * 10)) ) { - move(5, 10); + if (!CheckPostRestriction(ent)) + { + move(5, 10); // why move (5, 10)? vmsg("你不夠資深喔! (可在看板內按大寫 I 查看限制)"); return FULLUPDATE; } diff --git a/mbbsd/voteboard.c b/mbbsd/voteboard.c index 10594079..1e983391 100644 --- a/mbbsd/voteboard.c +++ b/mbbsd/voteboard.c @@ -2,6 +2,45 @@ #include "bbs.h" #define VOTEBOARD "NewBoard" + +// user +int CheckVoteRestriction(int bid) +{ + if ((currmode & MODE_BOARD) || HasUserPerm(PERM_SYSOP)) + return 1; + + // check first-login + if (cuser.firstlogin > (now - (time4_t)bcache[bid - 1].vote_limit_regtime * 2592000)) + return 0; + if (cuser.numlogins / 10 < (unsigned int)bcache[bid - 1].vote_limit_logins) + return 0; + if (cuser.numposts / 10 < (unsigned int)bcache[bid - 1].vote_limit_posts) + return 0; + if (cuser.badpost > (255 - (unsigned int)bcache[bid - 1].vote_limit_badpost)) + return 0; + + return 1; +} + +// article +int CheckVoteRestrictionFile(const fileheader_t * fhdr) +{ + if ((currmode & MODE_BOARD) || HasUserPerm(PERM_SYSOP)) + return 1; + + // check first-login + if (cuser.firstlogin > (now - (time4_t)fhdr->multi.vote_limits.regtime * 2592000)) + return 0; + if (cuser.numlogins / 10 < (unsigned int)fhdr->multi.vote_limits.logins) + return 0; + if (cuser.numposts / 10 < (unsigned int)fhdr->multi.vote_limits.posts) + return 0; + if (cuser.badpost > (255 - (unsigned int)fhdr->multi.vote_limits.badpost)) + return 0; + + return 1; +} + void do_voteboardreply(const fileheader_t * fhdr) { @@ -24,11 +63,10 @@ do_voteboardreply(const fileheader_t * fhdr) vmsg("對不起,您目前無法在此發表文章!"); return; } - if (cuser.firstlogin > (now - (time4_t)fhdr->multi.vote_limits.regtime * 2592000) || - cuser.badpost > (255 - (unsigned int)(fhdr->multi.vote_limits.badpost)) || - cuser.numlogins < ((unsigned int)(fhdr->multi.vote_limits.logins) * 10) || - cuser.numposts < ((unsigned int)(fhdr->multi.vote_limits.posts) * 10) ) { - move(5, 10); + + if (!CheckVoteRestrictionFile(fhdr)) + { + move(5, 10); // why move (5, 10)? vmsg("你不夠資深喔! (可按大寫 I 查看限制)"); return; } @@ -169,11 +207,9 @@ do_voteboard(int type) vmsg("對不起,您目前無法在此發表文章!"); return FULLUPDATE; } - if ( cuser.firstlogin > (now - (time4_t)bcache[currbid - 1].vote_limit_regtime * 2592000) || - cuser.badpost > (255 - (unsigned int)(bcache[currbid - 1].vote_limit_badpost)) || - cuser.numlogins < ((unsigned int)(bcache[currbid - 1].vote_limit_logins) * 10) || - cuser.numposts < ((unsigned int)(bcache[currbid - 1].vote_limit_posts) * 10) ) { - move(5, 10); + if (!CheckVoteRestriction(currbid)) + { + move(5, 10); // why move (5, 10)? vmsg("你不夠資深喔! (可按大寫 I 查看限制)"); return FULLUPDATE; } -- cgit v1.2.3