-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkakaobot.js
985 lines (735 loc) · 28.4 KB
/
kakaobot.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
const scriptName = "test";
/*
(string) room
(string) sender
(boolean) isGroupChat
(void) replier.reply(message)
(boolean) replier.reply(room, message, )
(string) imageDB.getProfileBase64()
(string) packageName
*/
function isFileExist(filename) {
return !(DataBase.getDataBase(filename) === undefined);
}
function checkValidMsg(wordList, cnt, room){
if(wordList.length === cnt)
return true;
else {
Api.replyRoom(room, "올바르지 않은 입력 형식입니다.")
return false;
}
}
function getDayCntForMonth(year, month) {
if(month == 2) {
if(year%4 === 0){
return 29;
}
return 28;
}
if(month == 4 || month == 6 || month == 9 || month == 11){
return 30;
}
return 31;
}
function getArray(origin_str) {
const wordList = origin_str.split('\n');
return wordList.filter(item => item !== "")
}
function getUsernameList() {
const userString = DataBase.getDataBase("user_list");
let userList = getArray(userString);
return (userList.map(user =>
user.slice(0, user.indexOf(' '))
))
}
function makeDBString(origin_array) {
let returnString = origin_array.reduce((acc, currVal) => acc + '\n' + currVal);
return returnString + '\n';
}
function getUsername(sender, room) {
if(!isFileExist("user_list")){
Api.replyRoom(room, sender + "님\n" + " 먼저 신규 유저를 생성해주세요.");
return undefined;
}
const userString = DataBase.getDataBase("user_list");
let userList = getArray(userString);
if(!userList.find(item => item.slice(item.indexOf(" ") + 1) === sender)){
Api.replyRoom(room, sender + "님\n" + " 먼저 신규 유저를 생성해주세요.");
//userList.forEach(item => {Api.replyRoom(room, item.slice(item.indexOf(" ") + 1));});
}
let findedUser = userList.find(item => item.slice(item.indexOf(" ") + 1) === sender);
return findedUser.slice(0, findedUser.indexOf(' '));
}
function dateFormatTest(datetimeString, room) {
const dateReg = /^\d{4}\-(0[1-9]|1[012])\-(0[1-9]|[12][0-9]|3[01])/
if(datetimeString === '오늘') {
return true;
}
if(!dateReg.test(datetimeString)){
Api.replyRoom(room, "잘못된 형식의 날짜 표현입니다.\n yyyy-mm-dd 형식으로 입력해주세요.")
return false;
}
return true;
}
function addUser(username, sender, room) {
if(!isFileExist("user_list")){
DataBase.setDataBase("user_list", username + " " + sender + "\n")
DataBase.setDataBase(username + "_" + "list", "")
Api.replyRoom(room, "환영합니다!" + username + "님\n" + " 루틴 리스트가 생성되었습니다.")
return;
}
DataBase.setDataBase(username + "_" + "list", "")
DataBase.appendDataBase("user_list", username + " " + sender + "\n")
Api.replyRoom(room, "환영합니다!" + username + "님\n" + " 루틴 리스트가 생성되었습니다.")
}
function makeRoutine(routineName, sender, room) {
//띄어쓰기 기준으로 나누어서 배열을 반환
if(!getUsername(sender, room)) {
return;
}
const username = getUsername(sender, room);
//counter와 date db 생성
DataBase.setDataBase(username + "_" + routineName + "_" + "counter", "0\n0\n0");
DataBase.setDataBase(username + "_" + routineName + "_" + "date", "");
DataBase.appendDataBase(username + "_" + "list", routineName + "\n");
Api.replyRoom(room, username + "님의 " + routineName + " 데이터베이스가 생성되었습니다.");
}
function isExist(filename, room) {
if(!isFileExist(filename, room)){
Api.replyRoom(room, "존재하지 않는 파일입니다.")
return false;
}
return true;
}
function deleteDB(filename, room) {
//띄어쓰기 기준으로 나누어서 배열을 반환
if(!isExist(filename, room)){
return;
}
DataBase.removeDataBase(filename);
Api.replyRoom(room, filename + " 삭제 완료.");
}
function checkDB(filename, room) {
if(!isExist(filename, room)){
return;
}
let returnString = DataBase.getDataBase(filename)
if(returnString === ""){
Api.replyRoom(room, "파일이 비어있습니다.")
}
Api.replyRoom(room, returnString)
}
function renewDB(filename, newString, room) {
if(!isExist(filename, room)){
return;
}
DataBase.setDataBase(filename, newString)
Api.replyRoom(room, "갱신완료.")
}
function removeEndDate(routineName, sender, room) {
const username = getUsername(sender, room);
if (!username) {
return;
}
if (!isExist(username + "_" + routineName + "_date", room)) {
return;
}
let dateString = DataBase.getDataBase(username + "_" + routineName + "_date");
if (!dateString) {
Api.replyRoom(room, "날짜 리스트가 비어있습니다!")
return;
}
dateList = getArray(dateString);
dateList.splice(dateList.length - 1, 1)
let newDateString = makeDBString(dateList);
DataBase.setDataBase(username + "_" + routineName + "_date", newDateString)
Api.replyRoom(room, username + "님의 " + routineName + " 날짜 리스트 끝값이 삭제되었습니다!")
}
function getRoutineList(username) {
let routineString = DataBase.getDataBase(username + "_" + "list");
if(!routineString){
return null;
}
let routineList = getArray(routineString);
return routineList;
}
function getMyRoutine(sender, room) {
const username = getUsername(sender, room);
if (!username) {
return;
}
let routineList = getRoutineList(username, room);
if(!routineList){
return;
}
const routineString = makeDBString(routineList);
Api.replyRoom(room, routineString);
}
function deleteMyRoutine(routineName, sender, room) {
const username = getUsername(sender, room);
if (!username) {
return;
}
let routineList = getRoutineList(username, room);
if(!routineList){
return;
}
let routineIdx = routineList.indexOf(routineName)
if(routineIdx === -1){
Api.replyRoom(room, "삭제하고자 하는 루틴이 리스트에 없습니다!");
return;
}
routineList.splice(routineIdx, 1)
let newRoutineString = makeDBString(routineList);
DataBase.setDataBase(username + "_" + "list", newRoutineString)
Api.replyRoom(room, username + "님의 리스트가 갱신되었습니다!")
Api.replyRoom(room, newRoutineString)
}
function deleteUsername(username, sender, room) {
let userString = DataBase.getDataBase("user_list")
let userList = getArray(userString);
if(!userString){
Api.replyRoom(room, "유저 리스트가 비어있습니다!")
return;
}
let userIdx = userList.findIndex(user => user.includes(username));
if(userIdx === -1){
Api.replyRoom(room, "삭제하고자 하는 유저가 리스트에 없습니다!")
return;
}
userList.splice(userIdx, 1)
let newUserString = makeDBString(userList)
DataBase.setDataBase("user_list", newUserString)
Api.replyRoom(room, "유저 리스트가 갱신되었습니다!")
Api.replyRoom(room, newUserString)
}
function getRoutineCnt(username, routineName) {
let countString = DataBase.getDataBase(username + "_" + routineName +"_counter");
if(!countString)
return ({
countNum: null,
contiCountNum: null,
targetNum: null,
});
let countList = getArray(countString);
let countNum = countList[0];
let contiCountNum = countList[1];
let targetNum = (countList.length === 3)? countList[2] : "0";
return ({
countNum: countNum,
contiCountNum: contiCountNum,
targetNum: targetNum,
})
}
function continuePhrase(contiCountNum, room) {
if(contiCountNum === 1){
Api.replyRoom(room, "한 번 습관을 시작해보아요~~")
} else if (contiCountNum === 3){
Api.replyRoom(room, "작심삼일을 넘어보자구요~~")
} else if (contiCountNum === 10){
Api.replyRoom(room, "열 번 연속이라니~~~ 칭찬해 칭찬해~~~~")
} else if (contiCountNum === 100){
Api.replyRoom(room, "백 번 돌파~~~ 오마갓 오마갓~~~~")
} else if (contiCountNum % 100 === 0){
Api.replyRoom(room, contiCountNum.toString() + "번을 달성했어요!!! 다들 칭찬 부탁~~~!!!")
}
}
function addAdditionalZero(numString) {
return (numString.length === 1) ? ('0' + numString) : numString;
}
function getDateFormat(date, room) {
return date.getFullYear().toString() + '-' + addAdditionalZero((date.getMonth() + 1).toString()) + '-' + addAdditionalZero((date.getDate()).toString());
}
function getMyRoutinesProcess(sender, room) {
const username = getUsername(sender, room);
if (!username) {
return;
}
let routineList = getRoutineList(username, room);
if(!routineList)
return;
let returnString = "";
routineList.forEach(routineName => {
const {countNum, contiCountNum} = getRoutineCnt(username, routineName);
returnString += routineName;
returnString += ": 연속 ";
returnString += contiCountNum;
returnString += "회, 총 ";
returnString += countNum;
returnString += "회\n";
})
Api.replyRoom(room, returnString);
}
function getTodayRoutineProcess(today, username, routineName) {
let dateString = DataBase.getDataBase(username + "_" + routineName +"_date");
let dateList = getArray(dateString);
if(!dateString) {
let returnString = "";
returnString += "❌";
returnString += routineName;
returnString += "\n";
return returnString;
}
let lastDay = new Date(dateList[dateList.length-1]);
lastDay.setDate(lastDay.getDate() + 1);
if(lastDay.getDate() === today.getDate() && lastDay.getMonth() === today.getMonth() && lastDay.getFullYear() === today.getFullYear()){
let returnString = "";
returnString += "✅";
returnString += routineName;
returnString += "\n";
return returnString;
} else {
let returnString = "";
returnString += "❌";
returnString += routineName;
returnString += "\n";
return returnString;
}
}
function getTodayMyRoutinesProcess(username, room, isReply) {
let today = new Date();
//17시간 더해주기
if(username !== "백지원"){
let diff = 17
today.setTime(today.getTime() + (17*60*60*1000))
}
let routineList = getRoutineList(username, room);
if(!routineList)
return;
let returnString = "";
returnString += username;
returnString += "의 현재 시간 : ";
returnString += today.toString();
returnString += "\n\n";
routineList.forEach(routineName => {
returnString += getTodayRoutineProcess(today, username, routineName, room);
})
returnString += '\n';
if(isReply)
Api.replyRoom(room, returnString);
return returnString;
}
function getTodayRoutinesProcess(room) {
const usernameList = getUsernameList();
let returnString = "";
usernameList.forEach(username =>
returnString += getTodayMyRoutinesProcess(username, room, false)
)
Api.replyRoom(room, returnString);
}
function setRoutineTarget(routineName, target, sender, room) {
const username = getUsername(sender, room);
if (!username) {
return;
}
const {countNum, contiCountNum} = getRoutineCnt(username, routineName);
if(!countNum){
Api.replyRoom(room, "존재하지 않는 루틴 이름입니다.");
return;
}
const numList = [countNum.toString(), contiCountNum.toString(), target.toString()];
const newCountString = makeDBString(numList);
renewDB(username + "_" + routineName + "_counter", newCountString, room);
}
function getMonthRoutineProcess(today, username, routineName) {
let dateString = DataBase.getDataBase(username + "_" + routineName +"_date");
const {targetNum} = getRoutineCnt(username, routineName);
let dateList = getArray(dateString);
if(!dateString) {
let returnString = '❌';
returnString += routineName;
returnString += "\n[";
returnString += "-".repeat(targetNum);
returnString += "]\n";
return returnString;
}
let count = 0;
dateList.forEach(dateString => {
let currDate = new Date(dateString);
currDate.setDate(currDate.getDate() + 1);
if(currDate.getMonth() === today.getMonth() && currDate.getFullYear() === today.getFullYear()) {
count++;
}
})
if(targetNum > count) {
let returnString = '🏃';
returnString += routineName;
returnString += "(목표 달성까지 ";
returnString += targetNum - count;
returnString += "회)";
returnString += "\n[";
returnString += ">".repeat(count);
returnString += "-".repeat(targetNum - count);
returnString += "]\n";
return returnString;
} else {
let returnString = '✅';
returnString += routineName;
returnString += "\n[ C L E A R 🥳 ]\n";
return returnString;
}
}
function getMonthRoutineProcessDetail(routineName, sender, room) {
const username = getUsername(sender, room);
if (!username) {
return;
}
//Todo:
let today = new Date();
//17시간 더해주기
if(username !== "백지원"){
let diff = 17
today.setTime(today.getTime() + (17*60*60*1000))
}
let dateString = DataBase.getDataBase(username + "_" + routineName +"_date");
const {targetNum} = getRoutineCnt(username, routineName);
let dateList = getArray(dateString);
let currDateList = [];
dateList.forEach(dateString => {
let currDate = new Date(dateString);
currDate.setDate(currDate.getDate() + 1);
if(currDate.getMonth() === today.getMonth() && currDate.getFullYear() === today.getFullYear()) {
currDateList.push(dateString);
}
})
Api.replyRoom(room, makeDBString(currDateList));
}
function getMonthMyRoutinesProcess(username, room, isReply) {
let today = new Date();
//17시간 더해주기
if(username !== "백지원"){
let diff = 17
today.setTime(today.getTime() + (17*60*60*1000))
}
let routineList = getRoutineList(username, room);
if(!routineList)
return;
let returnString = "<";
returnString += username;
returnString += "의 목표 달성 현황 : ";
returnString += (today.getMonth() + 1);
returnString += "월>\n\n";
returnString += "이번 달의 남은 날 :";
returnString += (getDayCntForMonth(today.getFullYear(), today.getMonth()) - today.getDate()).toString();
returnString += "일\n\n";
routineList.forEach(routineName => {
returnString += getMonthRoutineProcess(today, username, routineName);
})
returnString += '\n';
if(isReply)
Api.replyRoom(room, returnString);
return returnString;
}
function getMonthRoutinesProcess(room) {
const usernameList = getUsernameList();
let returnString = "";
usernameList.forEach(username =>
returnString += getMonthMyRoutinesProcess(username, room, false)
)
Api.replyRoom(room, returnString);
}
function finishRoutine(routineName, dateString, sender, room, isReply){
const username = getUsername(sender, room);
if (!username) {
return;
}
//다이어리에서 counter 정수 불러오기
let countString = DataBase.getDataBase(username + "_" + routineName +"_counter")
if(!countString){
Api.replyRoom(room, "먼저 " + routineName + "를 생성해주세요.")
return;
}
let {countNum, contiCountNum, targetNum} = getRoutineCnt(username, routineName);
countNum = Number.parseInt(countNum);
contiCountNum = Number.parseInt(contiCountNum);
let dateStringDB = DataBase.getDataBase(username + "_" + routineName + "_date");
let dateList = getArray(dateStringDB);
let todayDate = new Date();
let modifiedTodayDate = new Date();
modifiedTodayDate.setTime(todayDate.getTime() + (17*60*60*1000));
let today = (dateString === '오늘') ? ((username !== '백지원') ? modifiedTodayDate : todayDate) : new Date(dateString);
let lastDay = new Date(dateList[dateList.length-1]);
lastDay.setDate(lastDay.getDate() + 1);
if(countNum == 0){
contiCountNum += 1;
} else {
if(today <= lastDay){
contiCountNum += 1;
} else {
contiCountNum = 1;
}
}
countNum += 1
let newDate = (username !== '백지원') ? modifiedTodayDate : todayDate;
let newDateString = (dateString === '오늘') ? getDateFormat(newDate, room) : dateString;
const counterList = [countNum.toString(), contiCountNum.toString(), targetNum.toString()];
const counterString = makeDBString(counterList);
//하나 증가시키고 db에 입력
DataBase.setDataBase(username + "_" + routineName + "_counter", counterString);
//날짜 정보 db에 더해주기
//잘들어가는지 확인을 위해 출력, 이후에는 삭제해도 상관 없음
DataBase.appendDataBase(username + "_" + routineName + "_" + "date", newDateString + "\n")
if(isReply)
Api.replyRoom(room, "축하합니다! " + sender + "님.\n" + countNum.toString() + "번째 " + routineName + " 완료입니다.\n" + "연속 " + contiCountNum.toString() + "번째입니다.")
//continuePhrase(contiCountNum, room);
if(isReply)
Api.replyRoom(room, getMonthRoutineProcess(newDate, username, routineName));
}
function finishAllRoutine(dateString, sender, room){
const username = getUsername(sender, room);
if (!username) {
return;
}
let routineList = getRoutineList(username, room);
if(!routineList)
return;
routineList.forEach(routineName =>{
finishRoutine(routineName, dateString, sender, room, false);
})
Api.replyRoom(room, '축하합니다. 모든 루틴을 완료하셨습니다!🎉');
getMyRoutinesProcess(sender, room);
getMonthMyRoutinesProcess(username, room, true);
}
function response(room, msg, sender, isGroupChat, replier, imageDB, packageName) {
//!신규유저 김재휘
if(msg.includes("!신규유저")){
let wordList = msg.split(' ');
if(!checkValidMsg(wordList, 2, room)){
return;
}
addUser(wordList[1], sender, room);
return;
}
//!생성 다이어리
else if(msg.includes("!생성")){
let wordList = msg.split(" ")
if(!checkValidMsg(wordList, 2, room)) {
return;
}
makeRoutine(wordList[1], sender, room);
return;
}
//debug용
//!확인데이터 김재휘_다이어리_counter
else if(msg.includes("!확인데이터")){
let wordList = msg.split(" ")
if(!checkValidMsg(wordList, 2, room)){
return;
}
checkDB(wordList[1], room);
return;
}
//!갱신데이터 김재휘_다이어리_counter 2
//2
else if(msg.includes("!갱신데이터")){
let wordList = msg.split(" ")
let commandString = msg.slice(msg.indexOf(" ") + 1);
let fileString = commandString.slice(commandString.indexOf(" ")+1);
renewDB(wordList[1], fileString, room);
return;
}
//!삭제데이터 김재휘_다이어리_counter
else if(msg.includes("!삭제데이터")){
let wordList = msg.split(" ");
if(!checkValidMsg(wordList, 2, room)){
return;
}
deleteDB(wordList[1], room);
return;
}
//!삭제끝값 다이어리
else if(msg.includes("!삭제끝값")){
let wordList = msg.split(' ')
if(!checkValidMsg(wordList, 2, room)){
return;
}
removeEndDate(wordList[1], sender, room);
return;
}
//!나의루틴
else if(msg.includes("!나의루틴")){
getMyRoutine(sender, room);
return;
}
//!삭제루틴 다이어리
else if(msg.includes("!삭제루틴")){
let wordList = msg.split(" ")
if(!checkValidMsg(wordList, 2, room)){
return;
}
deleteMyRoutine(wordList[1], sender, room);
return;
}
//!삭제유저 김재휘
else if(msg.includes("!삭제유저")){
let wordList = msg.split(" ")
if(!checkValidMsg(wordList, 2, room)){
return;
}
deleteUsername(wordList[1], sender, room);
return;
}
//!작성완료 2020/03/11
else if(msg.includes("!작성완료")){
//띄어쓰기 기준으로 나누어서 배열을 반환
let wordList = msg.split(" ")
if(!checkValidMsg(wordList, 2, room)) {
return;
}
//날짜 형식이 맞는지 확인
if(!dateFormatTest(wordList[1], room)){
return;
}
finishRoutine('다이어리', wordList[1], sender, room, true);
return;
}
//!루틴완료 7시기상 2021-12-20
else if(msg.includes("!루틴완료")){
//띄어쓰기 기준으로 나누어서 배열을 반환
//띄어쓰기 기준으로 나누어서 배열을 반환
let wordList = msg.split(" ")
if(!checkValidMsg(wordList, 3, room)) {
return;
}
//날짜 형식이 맞는지 확인
if(!dateFormatTest(wordList[2], room)){
return;
}
finishRoutine(wordList[1], wordList[2], sender, room, true);
return;
}
//!루틴올클 2021-12-20
else if(msg.includes("!루틴올클")){
//띄어쓰기 기준으로 나누어서 배열을 반환
//띄어쓰기 기준으로 나누어서 배열을 반환
let wordList = msg.split(" ")
if(!checkValidMsg(wordList, 2, room)) {
return;
}
//날짜 형식이 맞는지 확인
if(!dateFormatTest(wordList[1], room)){
return;
}
finishAllRoutine(wordList[1], sender, room);
return;
}
//!현황
else if (msg.includes("!현황")){
getMyRoutinesProcess(sender, room);
return;
}
else if (msg === "!오늘"){
getTodayRoutinesProcess(room);
return;
}
//!오늘 김재휘
else if (msg.includes("!오늘")){
let wordList = msg.split(" ")
if(!checkValidMsg(wordList, 2, room)){
return;
}
getTodayMyRoutinesProcess(wordList[1], room, true);
return;
}
//!목표설정 루틴이름 횟수
else if(msg.includes('!목표설정')){
let wordList = msg.split(" ")
if(!checkValidMsg(wordList, 3, room)){
return;
}
setRoutineTarget(wordList[1], Number.parseInt(wordList[2]), sender, room);
return;
}
//!이번달상세 {루틴이름}
else if (msg.includes("!이번달상세")){
let wordList = msg.split(" ")
if(!checkValidMsg(wordList, 2, room)){
return;
}
getMonthRoutineProcessDetail(wordList[1], sender, room);
return;
}
else if (msg === "!이번달"){
getMonthRoutinesProcess(room);
return;
}
else if (msg.includes("!이번달")){
let wordList = msg.split(" ")
if(!checkValidMsg(wordList, 2, room)){
return;
}
getMonthMyRoutinesProcess(wordList[1], room, true);
return;
}
else if(msg === "!힘내 백지" || msg === "!힘내 백지원" || msg === "!힘내 캘리" || msg === "!힘내 지원"){
replier.reply(room, "미래인재 일동은 백지를 응원합니다~!~!")
return;
}
// else if(msg == "!테스트파일"){
// const userString = DataBase.getDataBase('user_list');
// Api.replyRoom(room, userString);
// return;
// }
else if(msg === "!유노윤호모드" || msg === "!유노윤호"){
let data = Utils.getWebText("https://chavo-s-it-life.tistory.com/71")
data = data.replace(/<[^>]+>/g,""); //태그 삭제
data = data.split("명언시작")[1]
data = data.split("명언끝")[0]
data = data.trim()
awesomeWordList = data.split("\n")
replier.reply(awesomeWordList[Math.floor(Math.random() * awesomeWordList.length)].trim())
}
else if (msg === "!규칙" || msg === "!사용법"){
let returnString = ""
returnString += "----ver2. 주요 변화----\n"
returnString += "이제 대부분의 명령어에서 본인 이름을 쓰지 않아도 됩니다. 메세지 전송자의 정보를 받아 자동으로 처리합니다.\n";
returnString += "날짜 대신 '오늘'을 적으면 자동으로 오늘 날짜의 기록이 만들어집니다.\n";
returnString += "루틴별 한 달 목표 횟수를 정해줄 수 있습니다. 목표 달성을 할 시에는 꼭 ritual을 가지고 인증사진을 공유할 수 있도록 합시다.🥳\n";
returnString += "---------------------\n"
returnString += "0. !신규유저 {본인 이름}\n"
returnString += "ex) !신규유저 김재휘\n\n"
returnString += "신규유저가 들어왔을 때 루틴 리스트를 저장하기 위한 용도로 사용됩니다. !신규유저를 안하신 분들은 꼭 해주세요~\n\n"
returnString += "1. !생성 {루틴 이름}\n"
returnString += "ex) !생성 다이어리\n\n"
returnString += "루틴을 추가하기 위한 용도로 사용합니다. 작성완료의 경우 '다이어리'를 default 값을 가지므로 반드시 다이어리는 루틴에 추가해주세요.\n\n"
returnString += "2. !작성완료 {날짜}\n"
returnString += "ex) !작성완료 2021-02-23\n\n"
returnString += "ex) !작성완료 오늘\n\n"
returnString += "다이어리 작성을 기록하기 위한 용도로 사용합니다. 날짜가 아닌 오늘으로 적으면 자동으로 오늘의 날짜를 적어줍니다. 날짜는 반드시 yyyy-mm-dd 양식으로 만들어주세요.\n\n"
returnString += "3. !루틴완료 {루틴 이름} {날짜}\n"
returnString += "ex) !루틴완료 7시아침기상 2021-02-23\n\n"
returnString += "루틴 완료를 기록하기 위한 용도로 사용합니다. 날짜 형식은 !작성완료와 같습니다.\n\n"
returnString += "4. !나의루틴\n"
returnString += "ex) !나의루틴\n\n"
returnString += "본인의 루틴 리스트를 확인할 수 있습니다.\n\n"
returnString += "5. !삭제루틴 {루틴 이름}\n"
returnString += "ex) !삭제루틴 7시아침기상\n\n"
returnString += "본인의 루틴 중 하나를 루틴 리스트에서 삭제할 수 있습니다.\n\n"
returnString += "6. !삭제끝값 {루틴 이름}\n"
returnString += "ex) !삭제끝값 7시아침기상\n\n"
returnString += "날짜 입력을 잘못한 경우 해당 루틴의 날짜 끝값을 삭제할 수 있습니다.\n\n"
returnString += "7. !현황\n"
returnString += "ex) !현황\n\n"
returnString += "나의 루틴의 달성 현황을 확인할 수 있습니다.\n\n"
returnString += "8. !오늘 {본인 이름}\n"
returnString += "ex) !오늘 김재휘\n\n"
returnString += "오늘 나의 루틴의 달성 현황을 확인할 수 있습니다.\n\n"
returnString += "9. !오늘\n\n"
returnString += "오늘 멤버들의 다이어리 작성 현황을 확인할 수 있습니다.\n\n"
returnString += "10. !이번달\n\n"
returnString += "이번달 나의 다이어리 작성 현황을 확인할 수 있습니다.\n\n"
returnString += "11. !이번달\n\n"
returnString += "이번달 멤버들의 다이어리 작성 현황을 확인할 수 있습니다.\n\n"
returnString += "12. !삭제유저 {유저 이름}\n"
returnString += "ex) !삭제유저 김재휘\n\n"
returnString += "유저 중 한 명을 루틴 리스트에서 삭제할 수 있습니다.\n\n"
returnString += "-------ver 2.---------\n"
returnString += "13. !목표설정 {루틴 이름} {횟수}\n"
returnString += "ex) !목표설정 다이어리 20\n\n"
returnString += "한 달동안 달성할 목표의 횟수를 설정할 수 있습니다.\n\n"
returnString += "14. !루틴올클 {날짜}\n"
returnString += "ex) !루틴올클 오늘\n\n"
returnString += "나의 루틴들을 모두 완료했다고 기록하는 명령입니다.\n\n"
replier.reply(room, returnString)
}
}