content.js
5.91 KB
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
var webcrawl = require('./crawling/Reol')
function jpSinger(msg, discography){
var test;
var discography;
var send = {};
return new Promise(function(resolve, reject){
function delay(discography) {
switch (msg) {
case 'Reol':
send = {
'message': {
'text': '이름 : Reol(れをる) \n성별 : 여성 \n생년월일 : 1993년 11월 9일 \n혈액형 : AB형',
'photo': {
'url': 'https://www.reol.jp/images/profile/reol_Aphoto_2.png',
'width': 1000,
'height': 667
},
'message_button': {
'label': '공식 홈페이지',
'url': "https://www.reol.jp/"
}
},
keyboard: {
'type': 'buttons',
'buttons': ['Reol-Discography']
}
};
break;
case 'Reol-Discography':
console.log(discography);
send = {
'message': {
'text': '앨범 목록입니다.'
},
keyboard: {
'type': 'buttons',
'buttons': ['a']
}
}
break;
case '米津玄師':
send = {
'message': {
'text': '이름 : 米津玄師(Yonezu Kenshi) \n 성별 : 남성 \n생년월일 : 1991년 3월 10일 \n혈액형 : O형',
'photo': {
'url': 'http://reissuerecords.net/rr/wp-content/uploads/flamingo_photo2.jpg',
'width': 1000,
'height': 667
},
'message_button': {
'label': '공식 홈페이지',
'url': "http://reissuerecords.net/"
}
},
keyboard: {
'type': 'buttons',
'buttons': ['米津玄師-Discography']
}
};
break;
case '米津玄師-Discography':
send = {
'message': {
'text': 'Album List'
},
keyboard: {
'type': 'buttons',
'buttons': ['Reol', '米津玄師', 'yanaginagi', 'ヨルシカ', 'ダズビ', 'Polkadot Stingray', 'Aimyong']
}
};
break;
default:
break;
}
return send;
}
webcrawl.crawl_Reol('https://namu.wiki/w/%EB%A0%88%EC%98%A4%EB%A3%A8/%EC%9D%8C%EB%B0%98#toc').then(function (Result) {
discography = Result;
return function () {
return Result;
}
}).catch(function (err) {
console.error(err);
}).then(function () {
delay(discography)
})
if(send)
resolve(send)
reject(new Error("Request is failed"));
})
}
function krSinger(msg){
var send = {};
switch(msg){
case '볼빨간사춘기' :
send = {
'message' : {
'text' : 'Reol',
'photo' : {
'url' : 'https://www.reol.jp/images/profile/reol_Aphoto_2.png',
'width' : 1000,
'height' : 667
},
'message_button' : {
'label' : '공식 홈페이지',
'url' : "https://www.reol.jp/"
},
},
keyboard : {
'type' : 'buttons',
'buttons' : ['Reol-Discography', 'Reol-Profile']
}
};
break;
case 'Reol-Discography' :
send = {
'message' : {
'text' : 'Album List.'
},
keyboard : {
'type' : 'buttons',
'buttons' : ['Reol', '米津玄師', 'yanaginagi', 'ヨルシカ', 'ダズビ', 'Polkadot Stingray', 'Aimyong']
}
};
break;
case '米津玄師' :
send = {
'message' : {
'text' : '米津玄師',
'photo' : {
'url' : 'https://www.reol.jp/images/profile/reol_Aphoto_2.png',
'width' : 1000,
'height' : 667
},
'message_button' : {
'label' : '공식 홈페이지',
'url' : "https://www.reol.jp/"
}
},
keyboard : {
'type' : 'buttons',
'buttons' : ['Reol-Discography','Reol-Profile']
}
};
break;
default:
send = {
'message' : {
'text' : '등록되지 않은 가수입니다.'
},
keyboard : {
'type' : 'buttons',
'buttons' : ['한국', '일본']
}
}
break;
}
return send;
}
exports.jpSinger = jpSinger;
exports.krSinger = krSinger;