summaryrefslogtreecommitdiffstats
path: root/mbbsd/cal.c
blob: efaf30da25fb1023248bf182dfcf74235b3017de (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
408
409
410
411
412
413
414
415
/* $Id$ */
#include "bbs.h"

/* 防堵 Multi play */
static int
count_multiplay(int unmode)
{
    register int    i, j;
    register userinfo_t *uentp;

    for (i = j = 0; i < USHM_SIZE; i++) { // XXX linear search
    uentp = &(SHM->uinfo[i]);
    if (uentp->uid == usernum)
        if (uentp->lockmode == unmode)
        j++;
    }
    return j;
}

int
lockutmpmode(int unmode, int state)
{
    int             errorno = 0;

    if (currutmp->lockmode)
    errorno = 1;
    else if (count_multiplay(unmode))
    errorno = 2;

    if (errorno && !(state == LOCK_THIS && errorno == LOCK_MULTI)) {
    clear();
    move(10, 20);
    if (errorno == 1)
        prints(SHM->i18nstr[cuser.language][532],
           ModeTypeTable[currutmp->lockmode],
           ModeTypeTable[unmode]);
    else
        prints(SHM->i18nstr[cuser.language][533],
           ModeTypeTable[unmode]);
    pressanykey();
    return errorno;
    }
    setutmpmode(unmode);
    currutmp->lockmode = unmode;
    return 0;
}

int
unlockutmpmode()
{
    currutmp->lockmode = 0;
    return 0;
}

/* 使用錢的函數 */
#define VICE_NEW   "vice.new"

/* Heat:發票 */
int
vice(int money, char *item)
{
   char            buf[128];
   unsigned int viceserial = (currutmp->lastact % 1000000) * 100 + rand() % 100;

    demoney(-money);
    setuserfile(buf, VICE_NEW);
    log_file(buf, 1, "%8.8d\n", viceserial);
    snprintf(buf, sizeof(buf),
         SHM->i18nstr[cuser.language][534], item, money, viceserial);
    mail_id(cuser.userid, buf, "etc/vice.txt", SHM->i18nstr[cuser.language][535]);
    return 0;
}

#define lockreturn(unmode, state) if(lockutmpmode(unmode, state)) return
#define lockreturn0(unmode, state) if(lockutmpmode(unmode, state)) return 0
#define lockbreak(unmode, state) if(lockutmpmode(unmode, state)) break
#define SONGBOOK  "etc/SONGBOOK"
#define OSONGPATH "etc/SONGO"

static int
osong(char *defaultid)
{
    char            destid[IDLEN + 1], buf[200], genbuf[200], filename[256],
                    say[51];
    char            receiver[45], ano[2];
    FILE           *fp, *fp1;
    //*fp2;
    fileheader_t    mail;
    int             nsongs;

    strlcpy(buf, Cdatedate(&now), sizeof(buf));

    lockreturn0(OSONG, LOCK_MULTI);

    /* Jaky 一人一天點一首 */
    if (!strcmp(buf, Cdatedate(&cuser.lastsong)) && !HAS_PERM(PERM_SYSOP)) {
    move(22, 0);
    vmsg(SHM->i18nstr[cuser.language][536]);
    unlockutmpmode();
    return 0;
    }
    if (cuser.money < 200) {
    move(22, 0);
    vmsg(SHM->i18nstr[cuser.language][537]);
    unlockutmpmode();
    return 0;
    }
    move(12, 0);
    clrtobot();
    prints(SHM->i18nstr[cuser.language][538], cuser.userid);
    trans_buffer[0] = 0;
    if (!defaultid) {
    getdata(13, 0, SHM->i18nstr[cuser.language][539],
        destid, sizeof(destid), DOECHO);
    while (!destid[0]) {
        a_menu(SHM->i18nstr[cuser.language][540], SONGBOOK, 0);
        clear();
        getdata(13, 0, SHM->i18nstr[cuser.language][541],
            destid, sizeof(destid), DOECHO);
    }
    } else
    strlcpy(destid, defaultid, sizeof(destid));

    /* Heat:點歌者匿名功能 */
    getdata(14, 0, SHM->i18nstr[cuser.language][542], ano, sizeof(ano), DOECHO);

    if (!destid[0]) {
    unlockutmpmode();
    return 0;
    }
    getdata_str(14, 0, SHM->i18nstr[cuser.language][543], say,
        sizeof(say), DOECHO, SHM->i18nstr[cuser.language][544]);
    snprintf(save_title, sizeof(save_title),
         "%s:%s", (ano[0] == 'y') ? SHM->i18nstr[cuser.language][545] : cuser.userid, say);
    getdata_str(16, 0, SHM->i18nstr[cuser.language][546],
        receiver, sizeof(receiver), LCECHO, destid);

    if (!trans_buffer[0]) {
    outs(SHM->i18nstr[cuser.language][547]);
    pressanykey();
    a_menu(SHM->i18nstr[cuser.language][548], SONGBOOK, 0);
    }
    if (!trans_buffer[0] || strstr(trans_buffer, "home") ||
    strstr(trans_buffer, "boards") || !(fp = fopen(trans_buffer, "r"))) {
    unlockutmpmode();
    return 0;
    }
    strlcpy(filename, OSONGPATH, sizeof(filename));

    stampfile(filename, &mail);

    unlink(filename);

    if (!(fp1 = fopen(filename, "w"))) {
    fclose(fp);
    unlockutmpmode();
    return 0;
    }
    strlcpy(mail.owner, SHM->i18nstr[cuser.language][549], sizeof(mail.owner));
    snprintf(mail.title, sizeof(mail.title),
         SHM->i18nstr[cuser.language][550],
         (ano[0] == 'y') ? SHM->i18nstr[cuser.language][551] : cuser.userid, destid);

    while (fgets(buf, sizeof(buf), fp)) {
    char           *po;
    if (!strncmp(buf, SHM->i18nstr[cuser.language][552], 6)) {
        clear();
        move(10, 10);
        outs(buf);
        pressanykey();
        fclose(fp);
        fclose(fp1);
        unlockutmpmode();
        return 0;
    }
    while ((po = strstr(buf, "<~Src~>"))) {
        po[0] = 0;
        snprintf(genbuf, sizeof(genbuf),
             "%s%s%s", buf,
             (ano[0] == 'y') ? SHM->i18nstr[cuser.language][553] : cuser.userid, po + 7);
        strlcpy(buf, genbuf, sizeof(buf));
    }
    while ((po = strstr(buf, "<~Des~>"))) {
        po[0] = 0;
        snprintf(genbuf, sizeof(genbuf), "%s%s%s", buf, destid, po + 7);
        strlcpy(buf, genbuf, sizeof(buf));
    }
    while ((po = strstr(buf, "<~Say~>"))) {
        po[0] = 0;
        snprintf(genbuf, sizeof(genbuf), "%s%s%s", buf, say, po + 7);
        strlcpy(buf, genbuf, sizeof(buf));
    }
    fputs(buf, fp1);
    }
    fclose(fp1);
    fclose(fp);


    if (append_record(OSONGPATH "/.DIR", &mail, sizeof(mail)) != -1) {
    cuser.lastsong = now;
    /* Jaky 超過 500 首歌就開始砍 */
    nsongs = get_num_records(OSONGPATH "/.DIR", sizeof(mail));
    if (nsongs > 500) {
        delete_range(OSONGPATH "/.DIR", 1, nsongs - 500);
    }
    /* 把第一首拿掉 */
    vice(200, SHM->i18nstr[cuser.language][554]);
    }
    snprintf(save_title, sizeof(save_title),
         "%s:%s", (ano[0] == 'y') ? SHM->i18nstr[cuser.language][555] : cuser.userid, say);
    hold_mail(filename, destid);

    if (receiver[0]) {
#ifndef USE_BSMTP
    bbs_sendmail(filename, save_title, receiver);
#else
    bsmtp(filename, save_title, receiver, 0);
#endif
    }
    clear();
    outs(
     SHM->i18nstr[cuser.language][556]);
    pressanykey();
    sortsong();
    topsong();

    unlockutmpmode();
    return 1;
}

int
ordersong()
{
    osong(NULL);
    return 0;
}

static int
inmailbox(int m)
{
    passwd_query(usernum, &xuser);
    cuser.exmailbox = xuser.exmailbox + m;
    passwd_update(usernum, &cuser);
    return cuser.exmailbox;
}


#if !HAVE_FREECLOAK
/* 花錢選單 */
int
p_cloak()
{
    if (getans(currutmp->invisible ? SHM->i18nstr[cuser.language][557] : SHM->i18nstr[cuser.language][558]) != 'y')
    return 0;
    if (cuser.money >= 19) {
    vice(19, SHM->i18nstr[cuser.language][559]);
    currutmp->invisible %= 2;
    vmsg((currutmp->invisible ^= 1) ? MSG_CLOAKED : MSG_UNCLOAK);
    }
    return 0;
}
#endif

int
p_from()
{
    if (getans(SHM->i18nstr[cuser.language][560]) != 'y')
    return 0;
    reload_money();
    if (cuser.money < 49)
    return 0;
    if (getdata_buf(b_lines - 1, 0, SHM->i18nstr[cuser.language][561],
            currutmp->from, sizeof(currutmp->from), DOECHO)) {
    vice(49, SHM->i18nstr[cuser.language][562]);
    currutmp->from_alias = 0;
    }
    return 0;
}

int
p_exmail()
{
    char            ans[4], buf[200];
    int             n;

    if (cuser.exmailbox >= MAX_EXKEEPMAIL) {
    vmsg(SHM->i18nstr[cuser.language][563], MAX_EXKEEPMAIL);
    return 0;
    }
    snprintf(buf, sizeof(buf),
         SHM->i18nstr[cuser.language][564], cuser.exmailbox);

    getdata_str(b_lines - 2, 0, buf, ans, sizeof(ans), LCECHO, "10");

    n = atoi(ans);
    if (!ans[0] || !n)
    return 0;
    if (n < 0)
    n = 100;
    if (n + cuser.exmailbox > MAX_EXKEEPMAIL)
    n = MAX_EXKEEPMAIL - cuser.exmailbox;
    reload_money();
    if (cuser.money < n * 1000)
    return 0;
    vice(n * 1000, SHM->i18nstr[cuser.language][565]);
    inmailbox(n);
    return 0;
}

void
mail_redenvelop(char *from, char *to, int money, char mode)
{
    char            genbuf[200];
    fileheader_t    fhdr;
    FILE           *fp;
    snprintf(genbuf, sizeof(genbuf), "home/%c/%s", to[0], to);
    stampfile(genbuf, &fhdr);
    if (!(fp = fopen(genbuf, "w")))
    return;
    fprintf(fp, SHM->i18nstr[cuser.language][566]
        ,from, ctime(&now), to, money);
    fclose(fp);
    snprintf(fhdr.title, sizeof(fhdr.title), SHM->i18nstr[cuser.language][567]);
    strlcpy(fhdr.owner, from, sizeof(fhdr.owner));

    if (mode == 'y')
    vedit(genbuf, NA, NULL);
    snprintf(genbuf, sizeof(genbuf), "home/%c/%s/.DIR", to[0], to);
    append_record(genbuf, &fhdr, sizeof(fhdr));
}

/* 計算贈與稅 */
int
give_tax(int money)
{
    int             i, tax = 0;
    int      tax_bound[] = {1000000, 100000, 10000, 1000, 0};
    double   tax_rate[] = {0.4, 0.3, 0.2, 0.1, 0.08};
    for (i = 0; i <= 4; i++)
    if (money > tax_bound[i]) {
        tax += (money - tax_bound[i]) * tax_rate[i];
        money -= (money - tax_bound[i]);
    }
    return (tax <= 0) ? 1 : tax;
}

int
p_give()
{
    int             money, tax;
    char            id[IDLEN + 1], money_buf[20];

    move(1, 0);
    usercomplete(SHM->i18nstr[cuser.language][568], id);
    if (!id[0] || !strcmp(cuser.userid, id) ||
    !getdata(2, 0, SHM->i18nstr[cuser.language][569], money_buf, 7, LCECHO))
    return 0;
    money = atoi(money_buf);
    reload_money();
    if (money > 0 && cuser.money >= money) {
    tax = give_tax(money);
    if (money - tax <= 0)
        return 0;       /* 繳完稅就沒錢給了 */
    deumoney(searchuser(id), money - tax);
    demoney(-money);
    log_file(FN_MONEY,1, SHM->i18nstr[cuser.language][570],
                 cuser.userid, id, money - tax, ctime(&now));
    mail_redenvelop(cuser.userid, id, money - tax, getans(SHM->i18nstr[cuser.language][571]));
    }
    return 0;
}

int
p_sysinfo(void)
{
    char            *cpuloadstr;
    int             load;
    extern char    *compile_time;

    load = cpuload(NULL);
    cpuloadstr = (load < 5 ? SHM->i18nstr[cuser.language][572] : (load < 20 ? SHM->i18nstr[cuser.language][573] : SHM->i18nstr[cuser.language][574]));

    clear();
    showtitle(SHM->i18nstr[cuser.language][575], BBSNAME);
    move(2, 0);
    prints(SHM->i18nstr[cuser.language][576]);
    prints(TITLE_COLOR BBSNAME);
    prints("\033[m (" MYIP);
    prints(SHM->i18nstr[cuser.language][577],
       cpuloadstr, SHM->UTMPnumber,
#ifdef DYMAX_ACTIVE
       GLOBALVAR[9] > 1000 ? GLOBALVAR[9] : MAX_ACTIVE,
#else
       MAX_ACTIVE,
#endif
       compile_time, ctime(&start_time));
    if (HAS_PERM(PERM_SYSOP)) {
    struct rusage ru;
    getrusage(RUSAGE_SELF, &ru);
    prints(SHM->i18nstr[cuser.language][578],
           ((int)sbrk(0) - 0x8048000) / 1024,
           (int)ru.ru_idrss, (int)ru.ru_isrss);
    prints(SHM->i18nstr[cuser.language][579]
#ifdef CRITICAL_MEMORY
        " CRITICAL_MEMORY"
#endif
#ifdef OUTTACACHE
        " OUTTACACHE"
#endif
        );
    }
    pressanykey();
    return 0;
}