-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
1321 lines (1313 loc) · 46.4 KB
/
index.js
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//gnsJhenJie Copyright.
const linebot = require('linebot');
const express = require('express');
const bot = linebot({
channelId: process.env.CHANNEL_ID,
channelSecret: process.env.CHANNEL_SECRET,
channelAccessToken: process.env.CHANNEL_ACCESS_TOKEN
});
const app = express();
const linebotParser = bot.parser();
function getRandom(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min; //The maximum is inclusive and the minimum is inclusive
}
app.get('/',function(req,res){
res.send('Hello World!\t~~LineBot正常運作中~~');
});
app.post('/linewebhook', linebotParser);
bot.on('message', function (event) {
var MGNgroupId = 'C306d9846c600bf25360a8ad54655b9f4';
if (event.message.type == 'text'){
var msg = event.message.text;
}
if (event.source.groupId != MGNgroupId){
var memberId =["Ucb700b5731e9de42f3fbd0da34811009","U70b7fa75c36a675ef91a8aefb067abd9","U9df8bf8b782462d85c01f9470a74a5ca"];
var memberName = ["振杰","冠銘","楊翊"];
var memberNickname = ["gnsJhenJie","Trout","馬演葛格"];
var addMember = false;
var Today = new Date();
var yyyy = Today.getFullYear(); //年
var MM = Today.getMonth()+1; //月
var dd = Today.getDate(); //日
var h = Today.getHours(); //時
var m = Today.getMinutes(); //分
//var s = Today.getSeconds(); //秒
var week = Today.getDay(); //星期幾
var id ='id';
var name = "";
var nickname = "";
if (event.source.type == 'user'){
id = event.source.userId;
name = memberName[memberId.indexOf(id)];
nickname = memberNickname[memberId.indexOf(id)];
}else if (event.source.type == 'group'){
id = event.source.groupId;
}
if (week==0){
week=7;
}
if (h+8>=24){
dd+=1;
h=h-16;
week+=1;
if (week>7){
week =1;
}
}else{
h=h+8;
}
console.log(week);
if ( event.message.type == 'text' ){
msg = msg.toLowerCase();
if ( (msg.indexOf('嗨') != -1 ) || (msg.indexOf('你好') != -1) || (msg.indexOf('hi') != -1) ||(msg.indexOf('hello')!=-1)){
switch (getRandom(1,7)){
case 1:
event.reply(name+"哈囉!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 2:
event.reply("Hello!"+nickname+"!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply("嗨!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 4:
event.reply("嗨嗨~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 5:
event.reply("不要跟我裝熟喔!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 6:
event.reply("哈囉!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 7:
event.reply("Hello!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply("抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}else if (msg == 'test'){
event.reply("TEST Success!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else if ( (msg.indexOf('tnfsh') != -1 ) || (msg.indexOf('南一中') != -1 ) ){
switch (getRandom(1,6)){
case 1:
event.reply({
type: 'location',
title: '~臺南一中是好學校~',
address: '701台南市東區民族路一段1號',
latitude: 22.9941884,
longitude: 120.21599119999996
}).then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 2:
event.reply({
type: 'location',
title: '~TNFSH is Good~',
address: '701台南市東區民族路一段1號',
latitude: 22.9941884,
longitude: 120.21599119999996
}).then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply('中一中的總部(?\n噓.....').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 4:
event.reply('https://www.tnfsh.tn.edu.tw').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 5:
event.reply('來看看你考了甚麼爛成績吧!\nhttps://svrsql.tnfsh.tn.edu.tw/SCORESTD').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 6:
event.reply('C++很好玩呢!!!\nhttps://moo.tnfsh.tn.edu.tw').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply("抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}else if (((msg.indexOf('.jpg')!=-1)||(msg.indexOf('.jpeg')!=-1))&&(msg.indexOf('https://')!=-1)){
event.reply({
type: 'image',
originalContentUrl: event.message.text,
previewImageUrl: event.message.text
}).then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else if ( (msg == "彩蛋") || (msg.indexOf('gnsjhenjie') != -1) ){
event.reply("Ya!!\n你找到彩蛋啦!!!\n然後......\n然後就沒有然後了").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else if (msg.indexOf('c++') != -1){
event.reply("我看你只是想抄作業吧!\n請到: https://www.github.com/gnsJhenJie/mycpp \n不要太感謝我喔!\n段考自己看著辦囉~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else if ( (msg == 'root') || (msg == 'admin') || (msg == 'root') || (msg == 'administrator') ){
event.reply("你以為這樣幹嘛?\nCTF打太多嗎?").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else if ( msg.indexOf('siri') != -1 ){
switch (getRandom(1,3)){
case 1:
event.reply('你當我TMD Siri?').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 2:
event.reply('我跟Apple沒有關係喔!!').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply('我不是Siri.....').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply("抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}else if ( (msg.indexOf('早安') != -1) || (msg == '早') || (msg == '早啊') || ( msg.indexOf('morning') != -1 ) ){
if ((h>5)&&(h<10)){
switch (getRandom(1,7)){
case 1:
event.reply("早安啊!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 2:
event.reply("Good morning~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply("早安!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 4:
event.reply("Bonjour").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 5:
event.reply("歐嗨喲~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 6:
event.reply({
type: 'sticker',
packageId: 1,
stickerId: 2
}).then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 7:
event.reply({
type: 'sticker',
packageId: 1,
stickerId: 137
}).then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply("抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}else{
switch (getRandom(1,4)){
case 1:
event.reply('時間不早了吧....').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 2:
event.reply('你他媽是腦子有洞是不是啊?\n現在都幾點了?\n早甚麼早啊?').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply('早什麼?\n老子都不老子了!').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 4:
event.reply('希望你腦袋沒有洞....').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply('抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_morning').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}
}else if ( ( msg.indexOf('晚安') != -1) || (msg.indexOf('good night') != -1) ){
if ((h>18)||(h<3)){
switch (getRandom(1,11)){
case 1:
event.reply("晚安!\n祝你有個好夢~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 2:
event.reply("晚安!\n記得要開鬧鐘喔~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply("Good night!\nSweet dreams~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 4:
event.reply("晚安安~\n今天的星空也很美麗呢!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 5:
event.reply("Good night!\nSleep tight!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 6:
event.reply("晚安囉~\n今天好累啊...").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 7:
event.reply("祝好夢!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 8:
event.reply("希望今天你不會做惡夢>_<").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 9:
event.reply("晚安!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 10:
event.reply("晚安啊!\n作業寫完了嗎?").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 11:
event.reply({
type: 'sticker',
packageId: 2,
stickerId: 26
}).then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply("抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}else{
switch (getRandom(1,4)){
case 1:
event.reply('現在是幾點啊....').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 2:
event.reply('你他媽是腦子有洞是不是啊?\n現在都幾點了?\n晚你妹的!').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply('晚什麼?\n老子都不老子了!').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 4:
event.reply('希望你腦袋沒有洞....').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply('抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_morning').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}
}else if (( msg.indexOf('午安') !=-1 ) || (msg.indexOf('good evening')!=-1) ){
if ((h>10)&&(h<16)){
switch (getRandom(1,5)){
case 1:
event.reply('午安!\n睡完午覺了嗎?').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 2:
event.reply('午餐好吃嗎?\n我肚子好餓啊....').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply('午安!').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 4:
event.reply('Good evening!').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 5:
event.reply('加油!\n再半天就放學了~~').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply('抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}else{
switch (getRandom(1,4)){
case 1:
event.reply('現在是幾點啊....').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 2:
event.reply('你他媽是腦子有洞是不是啊?\n現在都幾點了?\n晚你妹的!').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply('晚什麼?\n老子都不老子了!').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 4:
event.reply('希望你腦袋沒有洞....').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply('抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_morning').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}
}else if (msg == '時間'){
event.reply(yyyy+'年'+MM+'月'+dd+'日'+h+'時'+m+'分'+' 星期'+week).then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else if ( (msg.indexOf('滴妹') != -1 ) ){
event.reply({
type: 'image',
originalContentUrl: 'https://jplay01.com/img/aaaaamVwu.jpg',
previewImageUrl: 'https://jplay01.com/img/aaaaamVwu.jpg'
}).then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else if ( (msg.indexOf('運勢') != -1) || (msg.indexOf('運氣') != -1) || (msg.indexOf('fortune') != -1) ){
switch (getRandom(1,15)){
case 1:
event.reply("今天的運勢真的很差很差呢!\n\n過馬路的時候多注意左右來車吧~\n凡事謹慎為上策!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 2:
event.reply("今天的運勢還蠻差的喔><\n\n建議你做事前多想想!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply("今天你的運勢不太好喔...").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 4:
event.reply("啊啊啊......\n\n我竟然沒辦法判斷你今天的運勢\n看來我的功力還不夠呢!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 5:
event.reply("今天你的運勢普普通通!!\n\n就照你平常的樣子吧!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 6:
event.reply("你今天的運勢....\n...... ....\n大概普普通通吧!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 7:
event.reply("今天的運勢還不錯喔喔喔喔喔~~~\n\n好好把握這些運氣吧!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 8:
event.reply("Hello, world!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 9:
event.reply("今天運勢很棒呢!!!\n\n分些運氣給我嘛~~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 10:
event.reply("哇! 你的運氣好的不像話!!!!\n\n難道是我猜錯了嗎??").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 11:
event.reply("今天的運勢普普通通啦~~\n沒啥好說的~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 12:
event.reply("我累啦...\n不幫你占卜囉~~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 13:
event.reply("想知道今天的運勢嗎?\n先教些錢出來!!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 14:
event.reply("今天的天氣就跟你的運勢一樣呢!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 15:
event.reply("哈哈哈哈哈").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply("抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}else if (msg == 'member'){
if (name == ""){
event.reply("您不是會員").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else{
event.reply("您是會員").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}
}else if ( msg[0] == 'c' ){
if (msg.indexOf('104') != -1 )
if ( msg[4] == '1' )
event.reply("第一節 歷史\n第二節 公民\n第三節 生物\n第四節 生物\n第五節 化學\n第六節 地理\n第七節 數學\n第八節 國文\nFighting~~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
else if ( msg[4] == '2')
event.reply("第一節 資訊\n第二節 資訊\n第三節 公民\n第四節 英文\n第五節 國防\n第六節 體育\n第七節 國文\n第八節 音樂\n今天有資訊課呢!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
else if ( msg[4] == '3')
event.reply("第一節 生命教育\n第二節 美術\n第三節 國文\n第四節 國文\n第五節 班會\n第六節 班會\n第七節 化學\n第八節 英文\n加U!!!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
else if ( msg[4] == '4')
event.reply("第一節 文教\n第二節 國文\n第三節 英文\n第四節 英文\n第五節 歷史\n第六節 數學\n第七節 數學\n今天沒有第八節耶~~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
else if ( msg[4] == '5')
event.reply("第一節 選修\n第二節 選修\n第三節 英文\n第四節 數學\n第五節 地理\n第六節 體育\n第七節 數學\n準備放假囉!!!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
else
event.reply("您的輸入錯誤!請輸入help查看使用說明").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
else
event.reply("您的輸入錯誤!請輸入help查看使用說明").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else if ((msg == '今日課表')||(msg == '今天課表')||(msg == '本日課表')){
switch (week){
case 1:
event.reply("第一節 歷史\n第二節 公民\n第三節 生物\n第四節 生物\n第五節 化學\n第六節 地理\n第七節 數學\n第八節 國文\nFighting~~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 2:
event.reply("第一節 資訊\n第二節 資訊\n第三節 公民\n第四節 英文\n第五節 國防\n第六節 體育\n第七節 國文\n第八節 音樂\n今天有資訊課呢!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply("第一節 生命教育\n第二節 美術\n第三節 國文\n第四節 國文\n第五節 班會\n第六節 班會\n第七節 化學\n第八節 英文\n加U!!!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 4:
event.reply("第一節 文教\n第二節 國文\n第三節 英文\n第四節 英文\n第五節 歷史\n第六節 數學\n第七節 數學\n今天沒有第八節耶~~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 5:
event.reply("第一節 選修\n第二節 選修\n第三節 英文\n第四節 數學\n第五節 地理\n第六節 體育\n第七節 數學\n準備放假囉!!!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 6:
event.reply("今天星期六喔!\n你該不會去學校了吧...").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 7:
event.reply("今天星期日.....\n我不會被你騙的!!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply("抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_todayClass").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}else if ((msg == '明日課表')||(msg == '明天課表')){
switch (week+1){
case 2:
event.reply("第一節 資訊\n第二節 資訊\n第三節 公民\n第四節 英文\n第五節 國防\n第六節 體育\n第七節 國文\n第八節 音樂\n明天有資訊課呢!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply("第一節 生命教育\n第二節 美術\n第三節 國文\n第四節 國文\n第五節 班會\n第六節 班會\n第七節 化學\n第八節 英文\n加U!!!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 4:
event.reply("第一節 文教\n第二節 國文\n第三節 英文\n第四節 英文\n第五節 歷史\n第六節 數學\n第七節 數學\n明天沒有第八節耶~~").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 5:
event.reply("第一節 選修\n第二節 選修\n第三節 英文\n第四節 數學\n第五節 地理\n第六節 體育\n第七節 數學\n準備放假囉!!!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 6:
event.reply("明天放假!!!\n有爽到嗎?").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 7:
event.reply("明天是星期日....\n你腦袋沒有洞吧...").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 8:
event.reply("第一節 歷史\n第二節 公民\n第三節 生物\n第四節 生物\n第五節 化學\n第六節 地理\n第七節 數學\n第八節 國文\n明天記得起床喔!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply("抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_todayClass").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}else if (msg == 'help'){
event.reply(" ~~使用說明~~\n公開功能:\n(1)查詢課表:\n輸入c+班級+星期\n例:c1041 (104班星期一) 或 今日/明日課表\n\n(2)早午安:\n可以跟bot說早午安喔喔喔~\n\n(3)關於本程式:\n輸入about\n\n(4)本日運勢:\n輸入甚麼呢?自己試試看吧!\n\n(5)會員功能:\n目前此個人化功能開發中,歡迎先加入會員\n加入會員方法:\n輸入: 加入會員+姓名+暱稱+生日+班級\n\n(6)聯絡管理員:\n訊息中包含「聯絡管理員」即可\n\n(7)查看隱私權政策:\n輸入policy\n\n(8)確認會員資格:\n輸入member\n\n(9)加入使用者改善計畫:\n輸入join即可\n\n其他的都是隱藏功能喔~\n自己研究研究吧!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else if (msg == 'about'){
event.reply("Author: gnsJhenJie\nGithub: gnsJhenJie\nVersion: 1.8.4.13").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else if ( (msg.indexOf('幹') != -1) || (msg.indexOf('fuck') != -1) || (msg.indexOf('操你媽') != -1) || (msg.indexOf('shit')!=-1)){
switch (getRandom(1,4)){
case 1:
event.reply("趕羚羊!\n操你媽derB").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 2:
event.reply("Fuck!\nYour fucking dick is too small!!").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 3:
event.reply("森77\n森77\n森77\n森77\n森77\n森77\n森77").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 4:
event.reply({
type: 'sticker',
packageId: 1,
stickerId: 100
}).then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
case 5:
event.reply({
type: 'image',
originalContentUrl: 'https://www.gnsjhenjie.me/botpic/KoPAngry.gif',
previewImageUrl: 'https://www.gnsjhenjie.me/botpic/KoPAngry.gif'
}).then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
default:
event.reply("抱歉我似乎出了bug!\n請聯絡管理員...\nSorry~\n錯誤訊息:RAND_SWITCH_ERR_").then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
break;
}
}else if (msg.indexOf('哈囉')!=-1){
event.reply('好啊').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else if (msg.indexOf('加入會員')!=-1){
event.reply('感謝您加入會員,我們將於72hr內確認您的申請').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
var sendMsg = '~~新會員加入申請~~\n\nuserId: '+event.source.userId+'\nmessage: '+event.message.text;
bot.push(MGNgroupId,sendMsg);
console.log('send: '+sendMsg);
}else if (msg.indexOf('聯絡管理員')!=-1){
event.reply('我們已收到您的訊息,我們將盡速回覆您!').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
var sendMsg = '~~聯絡管理員~~\n\nuserId: '+event.source.userId+'\nmessage: '+event.message.text;
bot.push(MGNgroupId,sendMsg);
console.log('send: '+sendMsg);
}else if (msg.indexOf('加入使用者改善計畫')!=-1){
event.reply('感謝您加入使用者改善計畫!').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
bot.push(event.source.userId,"若您要退出請聯絡管理員!");
var sendMsg = '~~加入使用者改善計畫~~\n\nuserId: '+event.source.userId+'\nmessage: '+event.message.text;
bot.push(MGNgroupId,sendMsg);
console.log('send: '+sendMsg);
}else if (msg == 'policy'){
event.reply('<<本政策不適用參與使用者改善計畫用戶>>\nQ:管理員看得到我傳送的訊息嗎?\nAns:除了包含「加入會員」或「聯絡管理員」的訊息,其餘訊息管理員將不會記錄其內容\n\nQ:管理員知道我有發送訊息嗎?\nAns:第一次發送訊息後(需為2018/4/13日之後發送)3~5個工作日後,管理員不會紀錄發送訊息的紀錄\n\nQ:有關加入會員\nAns:申請加入會員(或聯絡管理員)後管理員可以對您主動對您發送訊息,但紀錄您的訊息規則同前述\n\n本隱私權政策以最新版為主').then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});
}else if (msg == 'userid'){
event.reply(event.source.userId).then(function (data) {
console.log('Success', data);
}).catch(function (error) {
console.log('Error', error);
});