app.js
3.35 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
var express = require('express');
var bodyParser = require('body-parser');
var request = require('request');
var cheerio = require('cheerio');
var app =express();
const HTTPS = require('https');
const domain = "www.stagefive.tk"
const sslport = 80;
app.set('view engine','ejs');
app.set('views','./views')
app.use(express.urlencoded( {extended : false } ));
app.use(express.static(__dirname + '/public'));
app.locals.pretty=true;
// app.set('view engine','pug');
app.use(express.static('public'));
var http = require('http');
var fs = require('fs');
//?page=페이지번호&?perPage=페이지당 데이터수
const $base_url = `https://api.odcloud.kr/api/apnmOrg/v1/list`;
const $key = '4US0H%2BXj%2BmS8IR4YL0%2BUb9H4CcbTr92QxhYULfOEz1DT%2BZaaos4sRfNh6cmAD2Icli862Ysc31%2BaE4pWywDBIA%3D%3D';
const $page=1;
const $perPage=30000;
const $api_url = $base_url + '?serviceKey='+$key+'&page='+$page+'&perPage='+$perPage;
console.log($api_url);
//해당 URL로 요청
app.post('/',function(req,res,next){
const searchWord = req.body.region; //지역 키워드
request($api_url,function(err,response,body){
if(err) throw err;
// console.log(body);
//data부분만 추출
var obj = JSON.parse(body).data;
// console.log(obj);
//검색한 지역 포함한 모든 data 담기
let searchList = obj.filter(searchList => {
return searchList.orgZipaddr.includes(searchWord);
});
// console.log(searchList);
//result라는 변수에 담아 결과 보내기
// var hey = searchList[0].orgZipaddr.split(',');
var timeList=[];
for(var i=0; i<searchList.length; i++){ //시간정보 파싱
var eachtime=[];
console.log(searchList[i]);
if(searchList[i].lunchSttTm == null)
eachtime.push('');
else
eachtime.push(searchList[i].lunchSttTm.substr(0,2));
if(searchList[i].lunchSttTm == null)
eachtime.push('');
else
eachtime.push(searchList[i].lunchSttTm.substr(2,2));
if(searchList[i].lunchEndTm == null)
eachtime.push('');
else
eachtime.push(searchList[i].lunchEndTm.substr(0,2));
if(searchList[i].lunchEndTm == null)
eachtime.push('');
else
eachtime.push(searchList[i].lunchEndTm.substr(2,2));
if(searchList[i].sttTm == null)
eachtime.push('');
else
eachtime.push(searchList[i].sttTm.substr(0,2));
if(searchList[i].sttTm == null)
eachtime.push('');
else
eachtime.push(searchList[i].sttTm.substr(2,2));
if(searchList[i].endTm == null)
eachtime.push('');
else
eachtime.push(searchList[i].endTm.substr(0,2));
if(searchList[i].endTm == null)
eachtime.push('');
else
eachtime.push(searchList[i].endTm.substr(2,2));
timeList.push(eachtime);
}
res.render('index', {result:JSON.stringify(searchList),info:searchList ,timeList:timeList});
})
})
app.get('/',function(req,res){
res.render('index');
})
app.listen(3000,function(){
console.log('Connected 3000 port!');
});