이종규
Committed by EC2 Default User

Final_Update

const express = require('express');
const fs = require('fs');
const path = require('path');
const HTTPS = require('https');
const domain = "2020105107.osschatbot.cf"
const sslport = 23023;
const app = express();
app.use(express.urlencoded({ extended: false }));
app.use(express.json());
var club = require('./club');
var haksik = require('./haksik');
var haksa = require('./haksa');
app.post('/message', (req, res) => {
const question = req.body.userRequest.utterance;
const goMain = '처음으로';
var data;
// 학사정보 간편보기
if(question == "간편하게 보는 학사정보"){
data = haksa.Haksa_Information(data);
}
//동아리 정보 보기 - 서울캠 공연
if(question== "바운스" || question == "bounce"){
data = club.Bounce(data);
}else if(question == "GLEE" || question == "glee"){
data = club.GLEE(data);
}else if(question == "MDOP" || question == "mdop"){
data = club.MDOP(data);
}else if(question == "NAKED" || question == "네이키드"){
data = club.NAKED(data);
}else if(question == "경희극장"){
data = club.Khutheatre(data);
}else if(question == "노래여울"){
data = club.Noraeyeoul(data);
}else if(question == "발광"){
data = club.Balgwang(data);
}else if(question == "발라드림"){
data = club.Balladream(data);
}else if(question == "칸타빌레"){
data = club.Cantabile(data);
}
//동아리 정보 보기 - 서울캠 학술
if(question == "ABS" || question == "abs"){
data = club.ABS(data);
}else if(question == "ACE" || question == "ace"){
data = club.ACE(data);
}else if(question == "IDS" || question == "ids"){
data = club.IDS(data);
}else if(question == "SEN경희" || question == "sen경희"){
data = club.SENkh(data);
}else if(question == "UNSA" || question == "unsa"){
data = club.UNSA(data);
}else if(question == "이감"){
data = club.Egam(data);
}
//동아리 정보 보기 - 서울캠 봉사
if(question == "miraKHle" || question == "mirakhle"){
data = club.miraKHle(data);
}else if(question == "PTPI" || question == "ptpi"){
data = club.PTPI(data);
}else if(question == "바인"){
data = club.VINE(data);
}
//동아리 정보 보기 - 서울캠 체육
if(question == "BRAVES" || question == "braves"){
data = club.BRAVES(data);
}else if(question == "ESpers" || question == "espers"){
data = club.ESpers(data);
}else if(question == "FAKIE" || question == "fakie"){
data = club.FAKIE(data);
}else if(question == "KUTA" || question == "kuta"){
data = club.KUTA(data);
}else if(question == "WBA" || question == "wba"){
data = club.WBA(data);
}else if(question == "검도부"){
data = club.KENDO(data);
}else if(question == "경희랑달리기"){
data = club.Running_with_kyunghee(data);
}else if(question == "산악부"){
data = club.Alpine(data);
}else if(question == "스키부"){
data = club.SKI(data);
}else if(question == "유혼"){
data = club.JUDO(data);
}else if(question == "태권도부"){
data = club.TKD(data);
}
//동아리 정보 보기 - 서울캠 종교
if(question == "CCC" || question == "ccc"){
data = club.CCC(data);
}else if(question == "IVF" || question == "ivf"){
data = club.IVF(data);
}else if(question == "JOY" || question == "joy"){
data = club.JOY(data);
}else if(question == "SFC" || question == "sfc"){
data = club.SFC(data);
}else if(question == "경불회"){
data = club.Buddha(data);
}else if(question == "네비게이토"){
data = club.Navigators(data);
}else if(question == "경희기독교연합동아리"){
data = club.CCC_agape(data);
}
//동아리 정보 보기 - 서울캠 취미, 교양
if(question == "PLANET-X" || question == "planet-x"){
data = club.PLANET_X(data);
}else if(question == "SENET" || question == "senet"){
data = club.SENET(data);
}else if(question == "유스호스텔"){
data = club.YH(data);
}
//동아리 정보 보기 -서울캠 전시, 창작
if(question == "KHPC" || question == "khpc"){
data = club.KHPC(data);
}else if(question == "경희서도회"){
data = club.Groups_kh(data);
}else if(question == "그림자 놀이" || question == "그림자놀이"){
data = club.ShadowPlay(data);
}else if(question == "문맥"){
data = club.Munmaek(data);
}else if(question == "카피울림"){
data = club.CopyWoolim(data);
}
//학식
if (question == "서울캠퍼스") {
data = haksik.Seoul(data);
}else if (question == "국제캠퍼스") {
data = haksik.Global(data);
}
res.json(data);
});
try {
const option = {
ca: fs.readFileSync('/etc/letsencrypt/live/' + domain +'/fullchain.pem'),
key: fs.readFileSync(path.resolve(process.cwd(), '/etc/letsencrypt/live/' + domain +'/privkey.pem'), 'utf8').toString(),
cert: fs.readFileSync(path.resolve(process.cwd(), '/etc/letsencrypt/live/' + domain +'/cert.pem'), 'utf8').toString(),
};
HTTPS.createServer(option, app).listen(sslport, () => {
console.log(`[HTTPS] Server is started on port ${sslport}`);
});
} catch (error) {
console.log('[HTTPS] HTTPS 오류가 발생하였습니다. HTTPS 서버는 실행되지 않습니다.');
console.log(error);
}
const express = require('express');
const app = express();
app.use(express.urlencoded({ extended: false }));
app.use(express.json());
var club_data;
//동아리 정보 보기
//BOUNCE
module.exports.Bounce = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "BOUNCE"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/official_bnc/"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://m.facebook.com/khubounce"
}
},
{
"title": "Youtube",
"description": "유튜브로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/187/187209.png",
"link": {
"web": "https://m.youtube.com/channel/UCdqjjUiX3nTsr0neeC1ovvw"
}
}
]
}
}
]
}
}
return club_data;
}
//GLEE
module.exports.GLEE = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "GLEE"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/khu_glee_choir"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/gleekhu"
}
},
{
"title": "Youtube",
"description": "유튜브로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/187/187209.png",
"link": {
"web": "https://www.youtube.com/channel/UCCr7JucZypMTEFWlfRZaPpQ"
}
}
]
}
}
]
}
}
return club_data;
}
//MDOP
module.exports.MDOP = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "MDOP"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "http://www.instagram.com/khu_mdop"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "http://www.facebook.com/khumdop"
}
},
{
"title": "Youtube",
"description": "유튜브로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/187/187209.png",
"link": {
"web": "https://www.youtube.com/channel/UCDF_aWEw_geoDWi6KDhsYjQ/featured"
}
}
]
}
}
]
}
}
return club_data;
}
//NAKED
module.exports.NAKED = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "NAKED"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/khunaked707?igshid=xotf371lj448"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://m.facebook.com/khunaked707/"
}
},
{
"title": "Youtube",
"description": "유튜브로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/187/187209.png",
"link": {
"web": "https://m.youtube.com/channel/UCMwOGeMFAB3HZQ1i8FwWvUg"
}
}
]
}
}
]
}
}
return club_data;
}
//경희극장
module.exports.Khutheatre = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "경희극장"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "http://www.instagram.com/khutheatre"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "http://www.facebook.com/khutheatre"
}
},
{
"title": "Youtube",
"description": "유튜브로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/187/187209.png",
"link": {
"web": "https://www.youtube.com/channel/UCbv8P2HP47MdpqIZfCz6SHA"
}
}
]
}
}
]
}
}
return club_data;
}
//노래여울
module.exports.Noraeyeoul = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "노래여울"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/khu_noraeyeoul"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/groups/khunoraeyeoul"
}
}
]
}
}
]
}
}
return club_data;
}
//발광
module.exports.Balgwang = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "발광"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/balgwang_official?igshid=19lktk6i8edt9"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/groups/356266174420488/?ref=share"
}
},
{
"title": "Youtube",
"description": "유튜브로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/187/187209.png",
"link": {
"web": "https://www.youtube.com/c/BalGwangKH/featured"
}
}
]
}
}
]
}
}
return club_data;
}
//발라드림
module.exports.Balladream = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "발라드림"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/balladream_khu/"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/balladreamkhu/"
}
},
{
"title": "Youtube",
"description": "유튜브로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/187/187209.png",
"link": {
"web": "https://youtube.com/channel/UCclYm0zH7QGsSKAX1hArJXA"
}
}
]
}
}
]
}
}
return club_data;
}
//칸타빌레
module.exports.Cantabile = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "칸타빌레"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/cantabile_khu"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://facebook.com/khucantabile"
}
}
]
}
}
]
}
}
return club_data;
}
//ABS
module.exports.ABS = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "ABS"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/khu.abs"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://m.facebook.com/KHUABS"
}
}
]
}
}
]
}
}
return club_data;
}
//ACE
module.exports.ACE = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "ACE"
},
"items": [
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "http://www.facebook.com/groups/137902359636682"
}
}
]
}
}
]
}
}
return club_data;
}
//IDS
module.exports.IDS = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "IDS"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/ids_khu?igshid=p5j2ehidjx5"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/khuids"
}
}
]
}
}
]
}
}
return club_data;
}
//SEN경희
module.exports.SENkh = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "SEN경희"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/senkyunghee/"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "http://www.facebook.com/SenKh"
}
}
]
}
}
]
}
}
return club_data;
}
//UNSA
module.exports.UNSA = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "UNSA"
},
"items": [
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/khunsarok"
}
}
]
}
}
]
}
}
return club_data;
}
//이감
module.exports.Egam = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "이감"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "http://www.instagram.com/khu_egam"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "http://www.facebook.com/khuegam"
}
},
{
"title": "Youtube",
"description": "유튜브로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/187/187209.png",
"link": {
"web": "https://www.youtube.com/channel/UCNabfFaCLjk96Gu_QhsIdEw/featured"
}
}
]
}
}
]
}
}
return club_data;
}
//miraKHle
module.exports.miraKHle = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "miraKHle"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/mirakhle_khu/"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/miraKHle"
}
}
]
}
}
]
}
}
return club_data;
}
//PTPI
module.exports.PTPI = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "PTPI"
},
"items": [
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/khuptpi/"
}
}
]
}
}
]
}
}
return club_data;
}
//바인
module.exports.VINE = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "바인"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/vine_khu/"
}
}
]
}
}
]
}
}
return club_data;
}
//BRAVES
module.exports.BRAVES = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "BRAVES"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/khu_braves/"
}
}
]
}
}
]
}
}
return club_data;
}
//ESpers
module.exports.ESpers = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "ESpers"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/khu_espers"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/KHUESPers"
}
},
{
"title": "Youtube",
"description": "유튜브로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/187/187209.png",
"link": {
"web": "https://www.youtube.com/channel/UCTO0oNF-0Ih_ECiDykhVnJA"
}
}
]
}
}
]
}
}
return club_data;
}
//FAKIE
module.exports.FAKIE = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "FAKIE"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/fakie_khu?igshid=1efy6hh5zh4f"
}
}
]
}
}
]
}
}
return club_data;
}
//KUTA
module.exports.KUTA = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "KUTA"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/kuta_tennis?igshid=1nvufgi0d4rvb"
}
}
]
}
}
]
}
}
return club_data;
}
//WBA
module.exports.WBA = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "WBA"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/khu_wba"
}
}
]
}
}
]
}
}
return club_data;
}
//검도부
module.exports.KENDO = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "WBA"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "http://www.instagram.com/khu_kendo"
}
}
]
}
}
]
}
}
return club_data;
}
//경희랑달리기
module.exports.Running_with_kyunghee = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "경희랑달리기"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "http://www.instagram.com/running_with_kyunghee"
}
}
]
}
}
]
}
}
return club_data;
}
//산악부
module.exports.Alpine = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "산악부"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/kyunghee_alpine1949/"
}
}
]
}
}
]
}
}
return club_data;
}
//스키부
module.exports.SKI = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "스키부"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/khu_ski_/"
}
}
]
}
}
]
}
}
return club_data;
}
//유혼
module.exports.JUDO = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "유혼"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/khu_judo/"
}
}
]
}
}
]
}
}
return club_data;
}
//태권도부
module.exports.TKD = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "태권도부"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/khutkd.lv?igshid=hgefdtv3oz0o"
}
}
]
}
}
]
}
}
return club_data;
}
//CCC
module.exports.CCC = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "CCC"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/khu_ccc/"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/KHUTips/"
}
},
{
"title": "Youtube",
"description": "유튜브로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/187/187209.png",
"link": {
"web": "https://youtube.com/channel/UClHgGjKz8_kIvfiHEHoMZMw"
}
}
]
}
}
]
}
}
return club_data;
}
//IVF
module.exports.IVF = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "IVF"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "http://www.instagram.com/khu_ivf"
}
}
]
}
}
]
}
}
return club_data;
}
//JOY
module.exports.JOY = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "JOY"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/withjoy2021?igshid=lu1ogs1tbw47"
}
}
]
}
}
]
}
}
return club_data;
}
//SFC
module.exports.SFC = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "SFC"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/seoul_u_sfc?igshid=1fq90pq0mzvyh"
}
}
]
}
}
]
}
}
return club_data;
}
//경불회
module.exports.Buddha = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "경불회"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "http://www.instagram.com/buddha_khu"
}
}
]
}
}
]
}
}
return club_data;
}
//네비게이토
module.exports.Navigators = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "네비게이토"
},
"items": [
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://facebook.com/khunavigators/"
}
}
]
}
}
]
}
}
return club_data;
}
//경희기독교연합동아리
module.exports.CCC_agape = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "네비게이토"
},
"items": [
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.instagram.com/khu_ccc_agape/"
}
}
]
}
}
]
}
}
return club_data;
}
//PLANET-X
module.exports.PLANET_X = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "PLANET-X"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "http://www.instagram.com/khu_planet_x"
}
}
]
}
}
]
}
}
return club_data;
}
//SENET
module.exports.SENET = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "SENET"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/senet_khu/"
}
}
]
}
}
]
}
}
return club_data;
}
//유스호스텔
module.exports.YH = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "유스호스텔"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/khu_youthhostel?igshid=2rx4dyodd3lv"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/%EA%B2%BD%ED%9D%AC-%EC%9C%A0%EC%8A%A4%ED%98%B8%EC%8A%A4%ED%85%94-100627254629228/?ref=page_internal"
}
}
]
}
}
]
}
}
return club_data;
}
//KHPC
module.exports.KHPC = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "KHPC"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://instagram.com/khpc2021?igshid=tht4hur641xn"
}
},
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "http://www.facebook.com/khpc1970"
}
}
]
}
}
]
}
}
return club_data;
}
//경희서도회
module.exports.Groups_kh = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "경희서도회"
},
"items": [
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/groups/288267494577090"
}
}
]
}
}
]
}
}
return club_data;
}
//그림자 놀이
module.exports.ShadowPlay = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "그림자 놀이"
},
"items": [
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "https://www.facebook.com/KHUSHADOWPLAY/"
}
},
{
"title": "Youtube",
"description": "유튜브로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/187/187209.png",
"link": {
"web": "https://youtube.com/user/Shadowplay60khu"
}
}
]
}
}
]
}
}
return club_data;
}
//문맥
module.exports.Munmaek = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "문맥"
},
"items": [
{
"title": "Facebook",
"description": "페이스북으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/145/145802.png",
"link": {
"web": "http://www.facebook.com/munmaek"
}
}
]
}
}
]
}
}
return club_data;
}
//카피울림
module.exports.CopyWoolim = function(club_data){
club_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "카피울림"
},
"items": [
{
"title": "Instagram",
"description": "인스타그램으로 이동",
"imageUrl": "https://cdn-icons-png.flaticon.com/128/733/733558.png",
"link": {
"web": "https://www.instagram.com/copywoolim/?hl=ko"
}
}
]
}
}
]
}
}
return club_data;
}
\ No newline at end of file
const express = require('express');
const app = express();
app.use(express.urlencoded({ extended: false }));
app.use(express.json());
var haksa_data;
//학사정보 간편보기
module.exports.Haksa_Information = function(haksa_data){
haksa_data = {
"version": "2.0",
"template": {
"outputs": [
{
"listCard": {
"header": {
"title": "KHU 학사정보 알리미"
},
"items": [
{
"title": "장학금 공지사항",
"description": "챗봇으로 손쉽게 알아보는 학사정보",
"imageUrl": "https://mblogthumb-phinf.pstatic.net/20140716_293/envicontest_1405437648963lV4y4_GIF/University_Seal.gif?type=w2",
"link": {
"web": "https://www.khu.ac.kr/kor/notice/list.do?category=SCHOLARSHIP&page=1"
}
},
{
"title": "공용 소프트웨어가 필요할 땐?",
"description": "경희대학교 정보처를 이용해보세요.",
"imageUrl": "https://cdn-icons.flaticon.com/png/128/2888/premium/2888407.png?token=exp=1638455259~hmac=d58c655e0ac8a16809b48323ea83a75f",
"link": {
"web": "https://ois.khu.ac.kr/index.do?sso=ok"
}
},
{
"title": "학사 공지사항",
"description": "학사 일정 공지사항 알아보기",
"imageUrl": "https://cdn-icons.flaticon.com/png/128/3277/premium/3277431.png?token=exp=1638455425~hmac=4fe1afa937ad2ca62e17e25a34aa342e",
"link": {
"web": "https://www.khu.ac.kr/kor/notice/list.do?category=UNDERGRADUATE&page=1"
}
}
],
"buttons": [
{
"label": "홈페이지 구경가기",
"action": "webLink",
"webLinkUrl": "https://www.khu.ac.kr/kor/main/index.do"
}
]
}
}
]
}
}
return haksa_data;
}
\ No newline at end of file
const express = require('express');
const app = express();
app.use(express.urlencoded({ extended: false }));
app.use(express.json());
var haksik_data;
module.exports.Seoul = function(haksik_data){
const goMain = '처음으로';
haksik_data = {
'version': '2.0',
'template': {
'outputs': [{
'simpleImage': {
'imageUrl': "https://coop.khu.ac.kr/wp-content/uploads/2021/11/20211129-1301x2048.png",
'altText' : "서울캠퍼스 식단입니다."
}
}],
'quickReplies': [{
'label': goMain,
'action': 'message',
'messageText': goMain
}]
}
}
return haksik_data;
}
module.exports.Global = function(haksik_data){
const goMain = '처음으로';
haksik_data = {
"version": "2.0",
"template": {
"outputs": [
{
"basicCard": {
"title": "국제캠퍼스 학식",
"description": "오늘의 학식은 무엇일까?!",
"thumbnail": {
"imageUrl": "https://ww.namu.la/s/e38da99cb3bbad5d4a7f19a015fc2a888e01a7c996bb18465f8ba242a21ac5b3d1f2f977094552b00c706aab9c5c7e48dedae0103ed84d8039376458bebeaf0c43c7642b2544a52a016d0633eeab043924071315d41e15ef8df134009508ec03"
},
"profile": {
"imageUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT4BJ9LU4Ikr_EvZLmijfcjzQKMRCJ2bO3A8SVKNuQ78zu2KOqM",
"nickname": "학식"
},
"social": {
"like": 1238,
"comment": 8,
"share": 780
},
"buttons": [
{
"action": "webLink",
"label": "학식보기",
"webLinkUrl": "https://www.khu.ac.kr/kor/forum/list.do?type=RESTAURANT&category=INTL&page=1"
}
]
}
}
]
}
}
return haksik_data;
}
This diff could not be displayed because it is too large.
{
"name": "project",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "이종규",
"license": "ISC",
"dependencies": {
"axios": "^0.24.0",
"cheerio": "^1.0.0-rc.10",
"express": "^4.17.1",
"pm2": "^5.1.2"
}
}