app.js
2.49 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
// 모듈 불러오기
var express = require('express');
var http = require('http');
var bodyParser = require('body-parser');
var singer = require('./content')
var app = express(); // express 객체 저장
//body-parser 미들웨어 사용
app.use(bodyParser.urlencoded({extended: false}));
app.use(bodyParser.json());
// http://서버주소/keyboard
app.get('/keyboard', function(req,res){
var data = {
'type' : 'buttons',
'buttons' : ['일본', '한국']};
res.json(data);
});
//9090포트로 서버 접속
http.createServer(app).listen(8080, () => {
console.log('Server running..');
});
// http://서버주소/message
app.post('/message', function(req,res){
//유저가 입력한 데이터
var msg = req.body.content;
console.log('전달받은 메시지 : ' + msg);
var send = {};
function hell_callback(msg, callback){
switch(msg){
case '일본' :
send = {
'message' : {
'text' : '등록된 가수 목록입니다.'
},
keyboard : {
'type' : 'buttons',
'buttons' : ['Reol', '米津玄師', 'yanaginagi', 'ヨルシカ', 'ダズビ', 'Polkadot Stingray', 'Aimyong']
}
};
break;
case '한국' :
send = {
'message' : {
'text' : '등록된 가수 목록입니다.'
},
keyboard : {
'type' : 'buttons',
'buttons' : ['볼빨간 사춘기', 'MOT', 'Gukkasten', 'ZICO', 'DEAN', 'IU', 'Heize']
}
};
break;
default:
send = singer.jpSinger(msg)
var album_info = [];
var album;
console.log(discography[0].json_album[1]);
for (var i = 0; i < discography[0].json_album.lenth; i++) {
album = discography[0].json_album[i] + ' 발매일 : ' + discography[0].json_year[i];
console.log(album);
}
});
if(send == '')
send = singer.krSinger(msg);
break;
}
callback(send);
}
console.log(send);
hell_callback(msg,function(hell_send){
res.json(hell_send);
})
})