index.js
5.85 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
// See https://github.com/dialogflow/dialogflow-fulfillment-nodejs
// for Dialogflow fulfillment library docs, samples, and to report issues
'use strict';
const functions = require('firebase-functions');
const {WebhookClient} = require('dialogflow-fulfillment');
const {Card, Suggestion} = require('dialogflow-fulfillment');
process.env.DEBUG = 'dialogflow:debug'; // enables lib debugging statements
exports.dialogflowFirebaseFulfillment = functions.https.onRequest((request, response) => {
const agent = new WebhookClient({ request, response });
console.log('Dialogflow Request headers: ' + JSON.stringify(request.headers));
console.log('Dialogflow Request body: ' + JSON.stringify(request.body));
function welcome(agent) {
agent.add(`안녕하세요 효율적인 수면패턴을 도와드릴 꿀잠봇 입니다!`);
}
function fallback(agent) {
agent.add(`잘못된 입력값 입니다`);
}
//기상시간 입력 및 추천 cycle 반환
function mytime1(agent) {
const hour = agent.parameters['number-integer'];
const min = agent.parameters['number-integer1'];
const gothour = String(hour).length > 0;
const gotmin = String(min).length > 0;
const sethour = 0<=hour && hour<=24;
const setmin = 0<=min && min<=59;
var myhour1,myhour2, myhour3,myhour4,mymin1,mymin2,mymin3,mymin4;
if(min-30>0){
myhour1 = Number(hour)-9;
mymin1 = Number(min);
myhour2 = Number(hour)-7;
mymin2 = Number(min)-30;
myhour3 = Number(hour)-6;
mymin3 = Number(min);
myhour4 = Number(hour)-4;
mymin4 = Number(min)-30;
//시간이 -값이 될때 값 설정
if(myhour1<0){myhour1=24+myhour1;}
if(myhour2<0){myhour2=24+myhour2;}
if(myhour3<0){myhour3=24+myhour3;}
if(myhour4<0){myhour4=24+myhour4;}
if(mymin1<0){mymin1=60+mymin1;}
if(mymin2<0){mymin1=60+mymin2;}
if(mymin3<0){mymin1=60+mymin3;}
if(mymin4<0){mymin1=60+mymin4;}
}else if(Number(min)-30<0){
myhour1 = Number(hour)-9;
mymin1 = Number(min);
myhour2 = Number(hour)-8;
mymin2 = Number(min)+30;
myhour3 = Number(hour)-6;
mymin3 = Number(min);
myhour4 = Number(hour)-5;
mymin4 = Number(min)+30;
//시간이 -값이 될때 값 설정
if(myhour1<0){myhour1=24+myhour1;}
if(myhour2<0){myhour2=24+myhour2;}
if(myhour3<0){myhour3=24+myhour3;}
if(myhour4<0){myhour4=24+myhour4;}
if(mymin1<0){mymin1=60+mymin1;}
if(mymin2<0){mymin1=60+mymin2;}
if(mymin3<0){mymin1=60+mymin3;}
if(mymin4<0){mymin1=60+mymin4;}
}
if(gothour && gotmin && sethour && setmin) {
agent.add(`좋습니다. 당신의 기상시간은 ${hour}시 ${min}분 입니다.`);
agent.add(`한 번의 수면 cycle은 1시간 30분 (90분)입니다.\n 당신의 기상시간을 참고한 결과 총 4개의 권장 취침 시간(cycle)이 있습니다.\n 1. ${myhour1}시 ${myhour1}분(6cycle) \n 2. ${myhour2}시 ${myhour2}분(5cycle) \n 3. ${myhour3}시 ${myhour3}분(4cycle) \n 4. ${myhour4}시 ${myhour4}(3cycle)분 \n 원하는 시간에 주무시길 추천드립니다.`);
agent.add(`꿀잠 주무시길 바랄게요:)`);
} else {
agent.add('기상시간을 입력해 주세요( 예시 - 6:26 21:40 ) ');
}
}
function mytime2(agent) {
const hour = agent.parameters['number-integer'];
const min = agent.parameters['number-integer1'];
const gothour = String(hour).length > 0;
const gotmin = String(min).length > 0;
const sethour = 0<=hour && hour<=24;
const setmin = 0<=min && min<=59;
var myhour1,myhour2, myhour3,myhour4,mymin1,mymin2,mymin3,mymin4;
if(min+30<60){
myhour1 = Number(hour)+1;
mymin1 = Number(min)+30;
myhour2 = Number(hour)+6;
mymin2 = Number(min);
myhour3 = Number(hour)+7;
mymin3 = Number(min)+30;
myhour4 = Number(hour)+9;
mymin4 = Number(min);
//시간이 -값이 될때 값 설정
if(myhour1>24){myhour1=myhour1-24;}
if(myhour2>24){myhour2=myhour2-24;}
if(myhour3>24){myhour3=myhour3-24;}
if(myhour4>24){myhour4=myhour4-24;}
if(mymin1>60){mymin1=mymin1-60;}
if(mymin2>60){mymin1=mymin2-60;}
if(mymin3>60){mymin1=mymin3-60;}
if(mymin4>60){mymin1=mymin4-60;}
}else if(min+30>60){
myhour1 = Number(hour)+2;
mymin1 = Number(min)-30;
myhour2 = Number(hour)+6;
mymin2 = Number(min);
myhour3 = Number(hour)+8;
mymin3 = Number(min)-30;
myhour4 = Number(hour)+9;
mymin4 = Number(min);
//시간이 -값이 될때 값 설정
//시간이 -값이 될때 값 설정
if(myhour1>24){myhour1=myhour1-24;}
if(myhour2>24){myhour2=myhour2-24;}
if(myhour3>24){myhour3=myhour3-24;}
if(myhour4>24){myhour4=myhour4-24;}
if(mymin1>60){mymin1=mymin1-60;}
if(mymin2>60){mymin1=mymin2-60;}
if(mymin3>60){mymin1=mymin3-60;}
if(mymin4>60){mymin1=mymin4-60;}
}
if(gothour && gotmin && sethour && setmin) {
agent.add(`좋습니다. 당신의 취침시간은 ${hour}시 ${min}분 입니다.`);
agent.add(`한 번의 수면 cycle은 1시간 30분 (90분)입니다.\n 당신의 취침시간을 참고한 결과 총 4개의 권장 기상시간(cycle)이 있습니다.\n 1. ${myhour1}시 ${myhour1}분(6cycle) \n 2. ${myhour2}시 ${myhour2}분(5cycle) \n 3. ${myhour3}시 ${myhour3}분(4cycle) \n 4. ${myhour4}시 ${myhour4}(3cycle)분 \n 원하는 시간에 기상 하시길 추천드립니다.`);
agent.add(`꿀잠 주무시길 바랄게요:)`);
} else {
agent.add('기상시간을 입력해 주세요( 예시 - 6:26 21:40 ) ');
}
}
let intentMap = new Map();
intentMap.set('Default Welcome Intent', welcome);
intentMap.set('Default Fallback Intent', fallback);
intentMap.set('time',mytime1);
intentMap.set('time2',mytime2);
agent.handleRequest(intentMap);
});