check.js
9.79 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
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
var Info = require('./Info');
var ids = require('./all_ids')
const request = require('request');
const fs = require('fs');
const TARGET_URL = 'https://api.line.me/v2/bot/message/reply'
var { google } = require('googleapis');
var service = google.youtube('v3');
//세팅값
var setting_userId = []; //유저아이디보관
var setting_Thumbnail = []; // 1:썸네일 출력(기본값) / 0:미출력
var setting_SendAmount = []; // 보낼 양 (1이상, 10이하의 정수) (기본값:1)
var setting_SendAddress = []; // 1:유튜브 주소 출력(기본값) / 0:미출력
function SEND(replyToken,title,url2,thumbnail,SendAmount,sendaddress) //검색해서 나온 내용 전송하는 함수
{
//sendMessage = JSON.stringify(response.data.items[0].snippet.title);
sendMessage = "";
var temp_title = [], temp_url = [], temp_url2 = [], temp_thumpnail = [];
for (var i = 0; i < SendAmount; i++) {
temp_title[i] = title[i];
temp_url2[i] = url2[i];
temp_url[i] = 'https://www.youtube.com/watch?v=' + (temp_url2[i].replace(/\"/gi, ""));
sendMessage += temp_title[i] + "\n" +
temp_url[i] + "\n" + "\n";
}
console.log(sendMessage);
if (thumbnail==1) //썸네일을 활성화시켰을 경우, 맨 첫번째 작품 리스트 썸네일만 보여줌.
request.post(
{
url: TARGET_URL,
headers:
{
'Authorization': `Bearer ${Info.TOKEN}`
},
json:
{
"replyToken": replyToken,
"messages":
[
{
"type": "image",
"originalContentUrl": "https://img.youtube.com/vi/" + url2[0] + "/hqdefault.jpg",
"previewImageUrl": "https://img.youtube.com/vi/" + url2[0] + "/hqdefault.jpg"
},
{
"type": "text",
"text": sendMessage
}
]
}
}
);
}
function SEND_TEXT(replyToken,sendMessage) //단순 텍스트 전송하는 함수
{
console.log(sendMessage);
request.post(
{
url: TARGET_URL,
headers:
{
'Authorization': `Bearer ${Info.TOKEN}`
},
json:
{
"replyToken": replyToken,
"messages":
[
{
"type": "text",
"text": sendMessage
}
]
}
}
);
}
function SEND_LIST(replyToken,response,choice,thumbnail,SendAmount,sendaddress)//플레이리스트에서 나온 내용 전송하는 함수
{
//sendMessage = JSON.stringify(response.data.items[0].snippet.title);
sendMessage = "";
var temp_title = [], temp_url = [], temp_url2 = [], temp_thumpnail = [];
for (var i = 0; i < SendAmount; i++) {
temp_title[i] = JSON.stringify(response.data.items[i].snippet.title).replace(/\"/gi, "");
temp_url2[i] = JSON.stringify(response.data.items[i].snippet.resourceId.videoId);
//temp_url2[i] = choice;
temp_url[i] = 'https://www.youtube.com/watch?v=' + (temp_url2[i].replace(/\"/gi, ""));
//temp_thumpnail[i] = "https://img.youtube.com/vi/" + JSON.stringify(response.data.items[i].snippet.thumbnails.high.url).replace(/\"/gi, "") + "/hqdefault.jpg";
// 썸네일 : 사용자가 플레이리스트로 입력 시 리턴으로 너무 많은 정보들을 줘야함. 그래서 뺌.
sendMessage += temp_title[i] + "\n" +
temp_url[i] + "\n" + "\n";
// temp_thumpnail[i] + "\n" + "\n";
}
console.log(sendMessage);
if (thumbnail==1) //썸네일을 활성화시켰을 경우, 맨 첫번째 작품 리스트 썸네일만 보여줌.
request.post(
{
url: TARGET_URL,
headers:
{
'Authorization': `Bearer ${Info.TOKEN}`
},
json:
{
"replyToken": replyToken,
"messages":
[
{
"type": "image",
"originalContentUrl": "https://img.youtube.com/vi/" + (temp_url2[0].replace(/\"/gi, "")) + "/hqdefault.jpg",
"previewImageUrl": "https://img.youtube.com/vi/" + (temp_url2[0].replace(/\"/gi, "")) + "/hqdefault.jpg"
},
{
"type": "text",
"text": sendMessage
}
]
}
}
);
}
exports.check = function (message, replyToken, userId) {
if (setting_userId.indexOf(userId)==-1)
{
setting_userId.push(userId);
setting_Thumbnail.push(1);
setting_SendAmount.push(1);
setting_SendAddress.push(1);
console.log("없당");
}
else
{
console.log("있당");
}
//const rand_0to9 = Math.floor(Math.random() * 10); // 0~9까지 난수생성
var choice;
var choose;
switch (message) {
case "힙합 플레이리스트":
choose = 101;
choice = ids.all_ids[choose]
break;
case "피아노 플레이리스트":
choose = 102;
choice = ids.all_ids[choose]
break;
case "팝 플레이리스트":
choose = 103;
choice = ids.all_ids[choose]
break;
case "신나는 플레이리스트":
choose = 201;
choice = ids.all_ids[choose]
break;
case "슬픈 플레이리스트":
choose = 202;
choice = ids.all_ids[choose]
break;
case "블랙핑크 플레이리스트":
choose = 301;
choice = ids.all_ids[choose]
break;
case "아이유 플레이리스트":
choose = 302;
choice = ids.all_ids[choose]
break;
case "레드벨벳 플레이리스트":
choose = 303;
choice = ids.all_ids[choose]
break;
case "트와이스 플레이리스트":
choose = 304;
choice = ids.all_ids[choose]
break;
case "도움말":
choose = 001;
choice = 0;
break;
case "설정":
choose = 002;
choice = 0;
break;
// 아래는 case 추가를 위한 템플릿
// case "":
// choose = ;
// choice = ids.all_ids[choose]
default:
choose = 500;
choice = 0;
}
if (choose == 500) { //일반 검색
var optionParams={
q:message,
part:"snippet",
key:"AIzaSyBInggOtXxPFYIRee0Xs3vb5iZ9YE9_518",
maxResults:10
};
optionParams.q=encodeURI(optionParams.q);
var url="https://www.googleapis.com/youtube/v3/search?";
for(var option in optionParams){
url+=option+"="+optionParams[option]+"&";
}
//url의마지막에 붙어있는 & 정리
url=url.substr(0, url.length-1);
request(url, function(err, res, body){
var title=[]
var url2=[]
var data=JSON.parse(body).items;
for(var content in data)
{
title.push(data[content].snippet.title);
url2.push(data[content].id.videoId);
}
if (title.length==0)
console.log('검색된 동영상이 없습니다.');
else
SEND(replyToken,title,url2,1,3,1);
});
/*
service.videos.list
(
{
key: 'AIzaSyBInggOtXxPFYIRee0Xs3vb5iZ9YE9_518',
part: 'snippet',
id: choice,
fields: 'items(snippet(title))'
},
function (err, response) {
if (err) {
console.log('The API returned an error: ', err);
return;
}
var video = response.data.items;
if (video.length == 0) {
console.log('검색된 동영상이 없습니다.');
}
else {
SEND(replyToken,response,choice,1,1,1);
}
}
)
*/
}
else if (choose == 001){ // 도움말
sendMessage = "도움말 예시";
SEND_TEXT(replyToken,sendMessage);
}
else if (choose == 002) { // 설정
sendMessage = "설정 예시";
SEND_TEXT(replyToken,sendMessage);
}
else { //플레이리스트
service.playlistItems.list(
{
key: 'AIzaSyBInggOtXxPFYIRee0Xs3vb5iZ9YE9_518',
part: 'snippet',
fields: 'items(snippet(title,resourceId,thumbnails(high(url))))', //제목, VideoId, Thumbnail 이미지 정보.
maxResults: 10,
playlistId: choice
}, function (err, response){
if (err) {
console.log('The API returned an error: ', err);
return;
}
var video = response.data.items;
if (video.length == 0)
console.log('검색된 동영상이 없습니다.');
else
SEND_LIST(replyToken,response,choice,1,10,1);
}
)
}
}