DESKTOP-PC6TBNS\강환석씨

리팩토링 => socket 부분 간소화

...@@ -5,18 +5,29 @@ const lat = "37.239795"; ...@@ -5,18 +5,29 @@ const lat = "37.239795";
5 const lon = "127.083240"; 5 const lon = "127.083240";
6 module.exports = (server, app) => { 6 module.exports = (server, app) => {
7 7
8 - const io = require('socket.io', )(server, { 8 + const io = require('socket.io')(server, {
9 - transports: ['websocket'] 9 + transports: ['websocket'] // websocket 사용시 polling 사용을 배제하고 안정적인 websocket만 사용함
10 - }); 10 + });
11 + //명시적 형 선언
12 + let Current_Weather = {};
13 + let Sensible_T = {};
14 + let Heat_index = {};
15 + let Discomport_index = {};
16 + let Ultra_Violet_index = {};
17 + let sending_to_client_info = {};
18 + let client_send = {};
19 + let sql;
20 +
21 + let info = {}
11 22
12 - let info = {} 23 + const req_API = (when, what) => {
13 - const CALL = (when, what) => { 24 + //async await 사용하기 위하여 promise 사용
14 - return new Promise((resolve, reject) => { 25 + return new Promise((resolve, reject) => {
15 requesting.get({ 26 requesting.get({
16 - // api를 요청할 주소 -- 시크릿키,위도,경도 입력 27 + // api를 요청할 주소 -- 시크릿키,위도,경도 입력
17 - url: `https://api2.sktelecom.com/weather/${when}/${what}?appKey=${secret_key}&lat=${lat}&lon=${lon}`, 28 + url: `https://api2.sktelecom.com/weather/${when}/${what}?appKey=${secret_key}&lat=${lat}&lon=${lon}`,
18 - json: true 29 + json: true
19 - }, 30 + },
20 //api에게 응답 받았을때 실행되는 callback function 31 //api에게 응답 받았을때 실행되는 callback function
21 function (err, api_res, api_body) { 32 function (err, api_res, api_body) {
22 //err 존재시 promise reject 호출 33 //err 존재시 promise reject 호출
...@@ -24,107 +35,115 @@ module.exports = (server, app) => { ...@@ -24,107 +35,115 @@ module.exports = (server, app) => {
24 35
25 // api의 response이 있을경우 promise resolve 호출 36 // api의 response이 있을경우 promise resolve 호출
26 if (api_res) { 37 if (api_res) {
27 - console.log("call"); 38 + console.log("calling api");
28 - resolve(api_body); 39 + resolve(api_body);
29 - }
30 - });
31 - })
32 - }
33 - io.on('connection', (socket) => { //웹 페이지 연결시 루프 동작
34 - let API_CALL;
35 - //명시적으로 객체임을 선언
36 - let Current_Weather = {};
37 - let Sensible_T = {};
38 - let Heat_index = {};
39 - let Discomport_index = {};
40 - let Ultra_Violet_index = {};
41 - let sending_to_client_info = {};
42 - let client_send = {};
43 - let sql;
44 -
45 - socket.on("connection", () => {
46 - console.log("lala");
47 - // API_CALL = setInterval(() => {
48 - console.log("lala");
49 -
50 -
51 - const API_bundle = async () => {
52 -
53 - try {
54 - Current_Weather = await CALL("current", "minutely"); //현재날씨 (분별)
55 - Sensible_T = await CALL("index", "wct"); //체감온도
56 - Heat_index = await CALL("index", "heat"); //열지수
57 - Discomport_index = await CALL("index", "th"); //불쾌지수
58 - Ultra_Violet_index = await CALL("index", "uv"); //자외선지수
59 - console.log("bundle");
60 -
61 - info = {
62 - heat: Heat_index.weather.wIndex.heatIndex[0].current.index, //열지수
63 - sensible_temperature: Sensible_T.weather.wIndex.wctIndex[0].current.index, //체감온도
64 - discomport: Discomport_index.weather.wIndex.thIndex[0].current.index, //불쾌지수
65 - UV: Ultra_Violet_index.weather.wIndex.uvindex[0].day01.index, //자외선지수
66 - windspd: Current_Weather.weather.minutely[0].wind.wspd, //바람 속도
67 - sky: Current_Weather.weather.minutely[0].sky.code, //하늘 상태
68 - rain: Current_Weather.weather.minutely[0].rain.last24hour, //강수량
69 - current_temperature: Current_Weather.weather.minutely[0].temperature.tc, //현재 온도
70 - lightning: Current_Weather.weather.minutely[0].lightning, //현재 낙뢰
71 - warning: Current_Weather.common.alertYn, //현재 특보 유무
72 - typhoon: Current_Weather.common.stormYn, //현재 태풍
73 - time: Current_Weather.weather.minutely[0].timeObservation, // 불러온 시각
74 - death_prob: 0 //확률
75 - }
76 - console.log("callback")
77 - console.log(info);
78 -
79 - // ------------------------------ death_prob 정의 ------------------------------
80 -
81 - info.death_prob += info.sky.substr(5)*1 //하늘 상태에 따라 확률 증가
82 -
83 - if(info.lightning===1) //낙뢰시에 확률 증가
84 - info.death_prob += 10;
85 - if(info.typhoon === "Y") //태풍시에 확률 증가
86 - info.death_prob += 10;
87 - if(info.warning === "Y") // 특보 발령시 확률 증가
88 - info.death_prob += 5
89 -
90 - //죽을 확률 계산(내맘대로 커스텀)
91 - info.death_prob =(
92 - (info.heat/8) + (Math.abs(info.sensible_temperature-15)/2) + (info.discomport/10) + (info.UV/5)
93 - + (info.windspd*3) + (info.rain/10) + (Math.abs(info.current_temperature-15)/2)
94 - );
95 -
96 - //이벤트 기반으로 일정 시간 간격으로 클라이언트에게 보낼 정보
97 - client_send={
98 - time : info.time,
99 - wind : info.windspd,
100 - temperature : info.current_temperature,
101 - rain : info.rain,
102 - death : info.death_prob
103 - };
104 -
105 - //만약 날이 너무 안좋아서 확률이 100을 넘긴다면 100으로 예외처리
106 - if(client_send.death>=100){
107 - client_send.death=100;
108 - }
109 -
110 - console.log(client_send)
111 - } catch (err) { //promise err or try err catch
112 - console.log("================Error Occured !!================\n",err);
113 - }
114 } 40 }
115 - API_bundle();
116 -
117 - // //db에 저장
118 - // sql="INSERT INTO weatherInfo (time,wind,temperature,rain,prob) VALUES (?,?,?,?,?)";
119 - // db.query(sql,[client_send.time,client_send.wind,client_send.temperature,client_send.rain,client_send.death],(err,result)=>{
120 - // if(err) console.log(err);
121 - // socket.emit("weatherInfo_minutely_send_to_client",client_send); // 클라이언트에게 정보 담아서 이벤트 발산
122 - // })
123 - // }, 1* 1000); //1분마다 호출
124 }); 41 });
42 + })
43 +
44 + }
45 + const API_bundle = async () => {
46 +
47 + try {
48 + Current_Weather = await req_API("current", "minutely"); //현재날씨 (분별)
49 + Sensible_T = await req_API("index", "wct"); //체감온도
50 + Heat_index = await req_API("index", "heat"); //열지수
51 + Discomport_index = await req_API("index", "th"); //불쾌지수
52 + Ultra_Violet_index = await req_API("index", "uv"); //자외선지수
53 + console.log("bundle");
54 +
55 + info = {
56 + heat: Heat_index.weather.wIndex.heatIndex[0].current.index, //열지수
57 + sensible_temperature: Sensible_T.weather.wIndex.wctIndex[0].current.index, //체감온도
58 + discomport: Discomport_index.weather.wIndex.thIndex[0].current.index, //불쾌지수
59 + UV: Ultra_Violet_index.weather.wIndex.uvindex[0].day01.index, //자외선지수
60 + windspd: Current_Weather.weather.minutely[0].wind.wspd, //바람 속도
61 + sky: Current_Weather.weather.minutely[0].sky.code, //하늘 상태
62 + rain: Current_Weather.weather.minutely[0].rain.last24hour, //강수량
63 + current_temperature: Current_Weather.weather.minutely[0].temperature.tc, //현재 온도
64 + lightning: Current_Weather.weather.minutely[0].lightning, //현재 낙뢰
65 + warning: Current_Weather.common.alertYn, //현재 특보 유무
66 + typhoon: Current_Weather.common.stormYn, //현재 태풍
67 + time: Current_Weather.weather.minutely[0].timeObservation, // 불러온 시각
68 + death_prob: 0 //확률
69 + }
70 + console.log("callback")
71 + console.log(info);
72 +
73 + // ------------------------------ death_prob 정의 ------------------------------
74 +
75 + info.death_prob += info.sky.substr(5) * 1 //하늘 상태에 따라 확률 증가
76 +
77 + if (info.lightning === 1) //낙뢰시에 확률 증가
78 + info.death_prob += 10;
79 + if (info.typhoon === "Y") //태풍시에 확률 증가
80 + info.death_prob += 10;
81 + if (info.warning === "Y") // 특보 발령시 확률 증가
82 + info.death_prob += 5
83 +
84 + //죽을 확률 계산(내맘대로 커스텀)
85 + info.death_prob = (
86 + (info.heat / 8) + (Math.abs(info.sensible_temperature - 15) / 2) + (info.discomport / 10) + (info.UV / 5)
87 + + (info.windspd * 3) + (info.rain / 10) + (Math.abs(info.current_temperature - 15) / 2)
88 + );
89 +
90 + //이벤트 기반으로 일정 시간 간격으로 클라이언트에게 보낼 정보
91 + client_send = {
92 + time: info.time,
93 + wind: info.windspd,
94 + temperature: info.current_temperature,
95 + rain: info.rain,
96 + death: info.death_prob
97 + };
98 + function getRandom_add_prob(min, max) {
99 + return Math.random() * (max - min) + min;
100 + }
101 +
102 + // 심장마비로 갑자기 확률 증가 할 수 있음
103 + Math.random() * 2 >= 1 ? client_send.death += getRandom_add_prob(0,10) : client_send.death -= getRandom_add_prob(0,10) ;
104 +
125 105
126 - socket.on('disconnecting', (reason) => { 106 + //만약 날이 너무 안좋아서 확률이 100을 넘긴다면 100으로 예외처리
127 - clearInterval(API_CALL); //연결 종료시 해제 107 + if (client_send.death >= 100) {
128 - }) 108 + client_send.death = 100;
109 + }
110 +
111 + console.log(client_send)
112 +
113 + app.get("socket").emit("weatherInfo_minutely_send_to_client", client_send); // 클라이언트에게 정보 담아서 이벤트 발산
114 + console.log("emit");
115 +
116 + //db에 저장
117 + sql = "INSERT INTO weatherInfo (time,wind,temperature,rain,prob) VALUES (?,?,?,?,?)";
118 + db.query(sql, [client_send.time, client_send.wind, client_send.temperature, client_send.rain, client_send.death], (err, result) => {
119 + if (err) console.log(err);
129 }) 120 })
121 + } catch (err) { //promise err or try err catch
122 + console.log("================Error Occured !!================\n", err);
130 } 123 }
124 + }
125 +
126 + let call_interval;
127 +
128 + const Start_Interval = (second, CALL) => {
129 + CALL(); //처음 불러올때 한번 호출하고
130 + call_interval = setInterval(CALL, second * 1000); //그 후에 1분마다 호출
131 + }
132 +
133 + io.on('connection', (socket) => { //프론트와 소켓 연결시 이벤트 루프 동작
134 +
135 + app.set("socket", socket);
136 + socket.on("connection", () => {
137 + console.log("SOCKET CONNECTED");
138 +
139 + Start_Interval(60, API_bundle); //소켓 연결후 interval 활성화하여 1분마다 API 호출
140 +
141 + });
142 +
143 + socket.on('disconnect', (reason) => {
144 + console.log("disconnected");
145 + clearInterval(call_interval); //연결 종료시 interval 해제
146 + })
147 + })
148 +
149 +}
......