summaryrefslogtreecommitdiffstats
path: root/mbbsd/voteboard.c
blob: 1cc08bb55df977f4a091d5dd07de8f6e33af3010 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
/* $Id$ */
#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 * MONTH_SECONDS))
    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 * MONTH_SECONDS))
    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)
{
    char            genbuf[256];
    char            reason[36]="";
    char            fpath[80];
    char            oldfpath[80];
    char            opnion[10];
    char           *ptr;
    FILE           *fo,*fi;
    fileheader_t    votefile;
    int             yes=0, no=0, len;
    int             fd;
    unsigned long   endtime=0;


    clear();
    if (!CheckPostPerm()||HasUserPerm(PERM_NOCITIZEN)) {
    vmsg("對不起,您目前無法在此發表文章!");
    return;
    }

    if (!CheckVoteRestrictionFile(fhdr))
    {
    vmsg("你不夠資深喔! (可按 i 查看限制)");
    return;
    }
    setbpath(fpath, currboard);
    stampfile(fpath, &votefile);

    setbpath(oldfpath, currboard);

    strcat(oldfpath, "/");
    strcat(oldfpath, fhdr->filename);

    fi = fopen(oldfpath, "r");
    assert(fi);

    while (fgets(genbuf, sizeof(genbuf), fi)) {
    char *space;

        if (yes>=0)
           {
            if (!strncmp(genbuf, "----------",10))
               {yes=-1; continue;}
            else 
                yes++;
           }
        if (yes>3) outs(genbuf);

    if (!strncmp(genbuf, "連署結束時間", 12)) {
        ptr = strchr(genbuf, '(');
        assert(ptr);
        sscanf(ptr + 1, "%lu", &endtime);
        if (endtime < (unsigned long)now) {
        vmsg("連署時間已過");
        fclose(fi);
        return;
        }
    }
        if(yes>=0) continue; 

    space = strpbrk(genbuf+4, " \n");
    if(space) *space='\0';
    if (!strncasecmp(genbuf + 4, cuser.userid, IDLEN)) {
        move(5, 10);
        outs("您已經連署過本篇了");
        getdata(17, 0, "要修改您之前的連署嗎?(Y/N) [N]", opnion, 3, LCECHO);
        if (opnion[0] != 'y') {
        fclose(fi);
        return;
        }
        strlcpy(reason, genbuf + 19, 34);
            break;
    }
    }
    fclose(fi);
    do {
    if (!getdata(19, 0, "請問您 (Y)支持 (N)反對 這個議題:", opnion, 3, LCECHO)) {
        return;
    }
    } while (opnion[0] != 'y' && opnion[0] != 'n');
    sprintf(genbuf, "請問您與這個議題的關係或%s理由為何:",
        opnion[0] == 'y' ? "支持" : "反對");
    if (!getdata_buf(20, 0, genbuf, reason, 35, DOECHO)) {
    return;
    }
    if ((fd = open(oldfpath, O_RDONLY)) == -1)
    return;
    if(flock(fd, LOCK_EX)==-1 )
       {close(fd); return;}
    if(!(fi = fopen(oldfpath, "r")))
       {flock(fd, LOCK_UN); close(fd); return;}
     
    if(!(fo = fopen(fpath, "w")))
       {
        flock(fd, LOCK_UN);
        close(fd);
        fclose(fi);
    return;
       }

    while (fgets(genbuf, sizeof(genbuf), fi)) {
        if (!strncmp("----------", genbuf, 10))
        break;
    fputs(genbuf, fo);
    }
    if (!endtime) {
    now += 14 * 24 * 60 * 60;
    fprintf(fo, "連署結束時間: (%d)%s\n\n", now, Cdate(&now));
    now -= 14 * 24 * 60 * 60;
    }
    fputs(genbuf, fo);
    len = strlen(cuser.userid); 
    for(yes=0; fgets(genbuf, sizeof(genbuf), fi);) {
    if (!strncmp("----------", genbuf, 10))
        break;
    if (strlen(genbuf)<30 || (genbuf[4+len]==' ' && !strncasecmp(genbuf + 4, cuser.userid, len)))
            continue;
    fprintf(fo, "%3d.%s", ++yes, genbuf + 4);
      }
    if (opnion[0] == 'y')
    fprintf(fo, "%3d.%-15s%-34s 來源:%s\n", ++yes, cuser.userid, reason, cuser.lasthost);
    fputs(genbuf, fo);

    for(no=0; fgets(genbuf, sizeof(genbuf), fi);) {
    if (!strncmp("----------", genbuf, 10))
        break;
    if (strlen(genbuf)<30 || (genbuf[4+len]==' ' && !strncasecmp(genbuf + 4, cuser.userid, len)))
            continue;
    fprintf(fo, "%3d.%s", ++no, genbuf + 4);
    }
    if (opnion[0] == 'n')
    fprintf(fo, "%3d.%-15s%-34s 來源:%s\n", ++no, cuser.userid, reason, cuser.lasthost);
    fprintf(fo, "----------總計----------\n");
    fprintf(fo, "支持人數:%-9d反對人數:%-9d\n", yes, no);
    fprintf(fo, "\n--\n※ 發信站 :" BBSNAME "(" MYHOSTNAME
                ") \n◆ From: 連署文章\n");

    flock(fd, LOCK_UN);
    close(fd);
    fclose(fi);
    fclose(fo);
    unlink(oldfpath);
    rename(fpath, oldfpath);
}

int
do_voteboard(int type)
{
    fileheader_t    votefile;
    char            topic[100];
    char            title[STRLEN];
    char            genbuf[2048];
    char            fpath[PATHLEN];
    FILE           *fp;
    int             temp;

    if (!CheckPostPerm()) {
    vmsg("對不起,您目前無法在此發表文章!");
    return FULLUPDATE;
    }
    if (!CheckVoteRestriction(currbid))
    {
    vmsg("你不夠資深喔! (可按 i 查看限制)");
    return FULLUPDATE;
    }
    vs_hdr(BBSNAME "連署系統");
    outs("您正在使用" BBSNAME "的連署系統,請小心回答下列問題才能開始連署\n");
    outs("任意提出連署案者,將被列入不受歡迎使用者喔\n\n");
    outs("(1)活動連署 (2)記名公投 ");
    if(type==0)
      outs("(3)申請新板 (4)廢除舊板 (5)連署板主 \n(6)罷免板主 (7)連署小組長 (8)罷免小組長 (9)申請新群組\n");

    do {
    getdata(6, 0, "請輸入連署類別 [0:取消]:", topic, 3, DOECHO);
    temp = atoi(topic);
    } while (temp < 0 || temp > 9 || (type && temp>2));
    switch (temp) {
    case 0:
         return FULLUPDATE;
    case 1:
    if (!getdata(7, 0, "請輸入活動主題:", topic, 30, DOECHO))
        return FULLUPDATE;
    snprintf(title, sizeof(title), "%s %s", "[活動連署]", topic);
    snprintf(genbuf, sizeof(genbuf),
         "%s\n\n%s%s\n", "活動連署", "活動主題: ", topic);
    strcat(genbuf, "\n活動內容: \n");
    break;
    case 2:
    if (!getdata(7, 0, "請輸入公投主題:", topic, 30, DOECHO))
        return FULLUPDATE;
    snprintf(title, sizeof(title), "%s %s", "[記名公投]", topic);
    snprintf(genbuf, sizeof(genbuf),
         "%s\n\n%s%s\n", "記名公投", "公投主題: ", topic);
    strcat(genbuf, "\n公投原因: \n");
    break;
    case 3:
    do {
        if (!getdata(7, 0, "請輸入看板英文名稱:", topic, IDLEN + 1, DOECHO))
        return FULLUPDATE;
        else if (!is_valid_brdname(topic))
        outs("不是正確的看板名稱");
        else if (getbnum(topic) > 0)
        outs("本名稱已經存在");
        else
        break;
    } while (temp > 0);
    snprintf(title, sizeof(title), "[申請新板] %s", topic);
    snprintf(genbuf, sizeof(genbuf),
         "%s\n\n%s%s\n%s", "申請新板", "英文名稱: ", topic, "中文名稱: ");

    if (!getdata(8, 0, "請輸入看板中文名稱:", topic, BTLEN + 1, DOECHO))
        return FULLUPDATE;
    strcat(genbuf, topic);
    strcat(genbuf, "\n看板類別: ");
    if (!getdata(9, 0, "請輸入看板類別:", topic, 20, DOECHO))
        return FULLUPDATE;
    strcat(genbuf, topic);
    strcat(genbuf, "\n板主名單: ");
    getdata(10, 0, "請輸入板主名單:", topic, IDLEN * 3 + 3, DOECHO);
    strcat(genbuf, topic);
    strcat(genbuf, "\n申請原因: \n");
    break;
    case 4:
        move(1,0); clrtobot();
        generalnamecomplete("請輸入看板英文名稱:",
                            topic, IDLEN+1,
                            SHM->Bnumber,
                            &completeboard_compar,
                            &completeboard_permission,
                            &completeboard_getname);
    if (!getbnum(topic))
    {
        vmsg("無此看版。");
        return FULLUPDATE;
    }
    snprintf(title, sizeof(title), "[廢除舊板] %s", topic);
    snprintf(genbuf, sizeof(genbuf),
         "%s\n\n%s%s\n", "廢除舊板", "英文名稱: ", topic);
    strcat(genbuf, "\n廢除原因: \n");
    break;
    case 5:
        move(1,0); clrtobot();
        generalnamecomplete("請輸入看板英文名稱:",
                            topic, IDLEN+1,
                            SHM->Bnumber,
                            &completeboard_compar,
                            &completeboard_permission,
                            &completeboard_getname);
    if (!getbnum(topic))
    {
        vmsg("無此看版。");
        return FULLUPDATE;
    }
    snprintf(title, sizeof(title), "[連署板主] %s", topic);
    snprintf(genbuf, sizeof(genbuf), "%s\n\n%s%s\n%s%s", "連署板主", "英文名稱: ", topic, "申請 ID : ", cuser.userid);
    strcat(genbuf, "\n申請政見: \n");
    break;
    case 6:
        move(1,0); clrtobot();
        generalnamecomplete("請輸入看板英文名稱:",
                            topic, IDLEN+1,
                            SHM->Bnumber,
                            &completeboard_compar,
                            &completeboard_permission,
                            &completeboard_getname);
    if (!getbnum(topic))
    {
        vmsg("無此看版。");
        return FULLUPDATE;
    }
    snprintf(title, sizeof(title), "[罷免板主] %s", topic);
    snprintf(genbuf, sizeof(genbuf),
         "%s\n\n%s%s\n%s", "罷免板主", "英文名稱: ",
         topic, "板主 ID : ");
        temp=getbnum(topic);
    assert(0<=temp-1 && temp-1<MAX_BOARD);
    do {
        if (!getdata(7, 0, "請輸入板主ID:", topic, IDLEN + 1, DOECHO))
        return FULLUPDATE;
        }while (!userid_is_BM(topic, bcache[temp - 1].BM));
    strcat(genbuf, topic);
    strcat(genbuf, "\n罷免原因: \n");
    break;
    case 7:
    if (!getdata(7, 0, "請輸入小組中英文名稱:", topic, 30, DOECHO))
        return FULLUPDATE;
    snprintf(title, sizeof(title), "[連署小組長] %s", topic);
    snprintf(genbuf, sizeof(genbuf),
         "%s\n\n%s%s\n%s%s", "連署小組長", "小組名稱: ",
         topic, "申請 ID : ", cuser.userid);
    strcat(genbuf, "\n申請政見: \n");
    break;
    case 8:
    if (!getdata(7, 0, "請輸入小組中英文名稱:", topic, 30, DOECHO))
        return FULLUPDATE;
    snprintf(title, sizeof(title), "[罷免小組長] %s", topic);
    snprintf(genbuf, sizeof(genbuf), "%s\n\n%s%s\n%s",
         "罷免小組長", "小組名稱: ", topic, "小組長 ID : ");
    if (!getdata(8, 0, "請輸入小組長ID:", topic, IDLEN + 1, DOECHO))
        return FULLUPDATE;
    strcat(genbuf, topic);
    strcat(genbuf, "\n罷免原因: \n");
    break;
    case 9:
    if (!getdata(7, 0, "請輸入群組中英文名稱:", topic, 30, DOECHO))
        return FULLUPDATE;
    snprintf(title, sizeof(title), "[申請新群組] %s", topic);
    snprintf(genbuf, sizeof(genbuf), "%s\n\n%s%s\n%s%s",
         "申請群組", "群組名稱: ", topic, "申請 ID : ", cuser.userid);
    strcat(genbuf, "\n申請政見: \n");
    break;
    default:
    return FULLUPDATE;
    }
    outs("請輸入簡介或政見(至多五行),要清楚填寫");
    for (temp = 12; temp < 17; temp++) {
        if (!getdata(temp, 0, ":", topic, 60, DOECHO))
        break;
        strcat(genbuf, topic);
        strcat(genbuf, "\n");
    }
    if (temp == 11)
        return FULLUPDATE;
    strcat(genbuf, "連署結束時間: ");
    now += 14 * 24 * 60 * 60;
    snprintf(topic, sizeof(topic), "(%d)", now);
    strcat(genbuf, topic);
    strcat(genbuf, Cdate(&now));
    strcat(genbuf, "\n\n");
    now -= 14 * 24 * 60 * 60;
    strcat(genbuf, "----------支持----------\n");
    strcat(genbuf, "----------反對----------\n");
    outs("開始連署嘍");
    setbpath(fpath, currboard);
    stampfile(fpath, &votefile);

    if (!(fp = fopen(fpath, "w"))) {
    outs("開檔失敗,請稍候重來一次");
    return FULLUPDATE;
    }
    fprintf(fp, "%s%s %s%s\n%s%s\n%s%s\n", "作者: ", cuser.userid,
        "看板: ", currboard,
        "標題: ", title,
        "時間: ", ctime4(&now));
    fprintf(fp, ANSI_COLOR(1;33) "若想加入連署請按 y 回應" ANSI_RESET "\n\n");
    fprintf(fp, "%s\n", genbuf);
    fclose(fp);
    strlcpy(votefile.owner, cuser.userid, sizeof(votefile.owner));
    strlcpy(votefile.title, title, sizeof(votefile.title));
    votefile.filemode |= FILE_VOTE;
    /* use lower 16 bits of 'money' to store limits */
    /* lower 8 bits are posts, higher 8 bits are logins */
    votefile.multi.vote_limits.regtime = bcache[currbid - 1].vote_limit_regtime;
    votefile.multi.vote_limits.logins  = bcache[currbid - 1].vote_limit_logins;
    votefile.multi.vote_limits.posts   = bcache[currbid - 1].vote_limit_posts;
    votefile.multi.vote_limits.badpost = bcache[currbid - 1].vote_limit_badpost;
    setbdir(genbuf, currboard);
    if (append_record(genbuf, &votefile, sizeof(votefile)) != -1)
    setbtotal(currbid);
    do_voteboardreply(&votefile);
    return FULLUPDATE;
}