-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver1.js
338 lines (254 loc) · 9.62 KB
/
server1.js
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
const express = require("express");
const app = express();
const MongoClient = require("mongodb").MongoClient;
require("dotenv").config();
const axios = require("axios")
const bodyParser = require("body-parser");
app.use(express.json());
const bcrypt = require("bcrypt")
const jwt = require('jsonwebtoken');
// const secretKey = require('./config/jwt')
const SECRET_KEY = "secretKey";
//db 설정
var db;
MongoClient.connect(process.env.DB_URL, function (에러, client) {
if (에러) return console.log(에러);
db = client.db("CUT");
app.listen(process.env.PORT, function () {
console.log("listening on 8080");
});
});
//로그인
const passport = require("passport");
//--------------------- xr 통신
// app.post("/rbals", (요청, 응답) => {
// const xrdata = 요청.body;
// console.log("규민이 와썽용");
// console.log(xrdata);
// console.log(typeof(xrdata));
// // xrdata -> 디비에 저장하는 코드
// 응답.status(200).json({ good: "한이 와썽용" });
// });
//--ㅊ창우손
app.post("/chatBot", async (요청, 응답) => {
const xrdata = 요청.body;
console.log("규민이 와썽용");
console.log(xrdata);
console.log(xrdata.contents)
console.log(요청.body.contents)
// aiCall(xrdata);
db.collection("aiTest").insertOne(
{ key: xrdata.key, contents: xrdata.contents },
// function (에러, 결과) {
// 응답.send("에러");
// }
);
const aidata2 = await aiCall(xrdata)
// JSON.stringify(aidata2); //그냥 member 사용하면 error 발생!
// const aidata3 = JSON.stringify(aidata2);
aidata2
console.log(aidata2)
// aidata2 = parseConnectionString(aidata2);
응답.status(200).json({ good: aidata2 });
});
//---------------------------회원가입
app.post("/signUp", function(요청, 응답){
const xrlogin_id = 요청.body.id;
const xrlogin_pw = 요청.body.pw;
const xrlogin_nickname = 요청.body.nickname;
const salt = 10;
// //비동기 콜백
// bcrypt.hash(xrlogin_pw, salt, (err, encryptedPW) => {
// })
//동기 콜백
//암호화 비크립트 처리
const xrlogin_pw2 = bcrypt.hashSync(xrlogin_pw, salt);
// hashSync 동기
// const hash = await bcrypt.hash(xrlogin_pw, slat);
// async/ await 사용
console.log("회원가입 아이디 : " + xrlogin_id)
console.log("회원가입 암호화전 비번 :" + xrlogin_pw)
console.log("회원가입 암호화 완료 비번 : " + xrlogin_pw2)
console.log("닉네임 :" + xrlogin_nickname)
console.log("규민이 회원가입 와썽용");
// console.log(xrlogin);
db.collection("login").insertOne(
{ id:xrlogin_id, pw: xrlogin_pw2, nikname: xrlogin_nickname},
// function (에러, 결과) {
// if(에러){
// 응답.status(200).json({ good: "규민아 있는 아이디란다 .... "});
// }}
);
응답.status(200).json({ good: "nice"})
})
//----------------------로그인 검사하기
app.post("/login", function(요청, 응답){
const xrlogin_id = 요청.body.id;
const xrlogin_pw = 요청.body.pw;
console.log("규민로그인 와썽용");
console.log("아이디 : " + xrlogin_id);
console.log("비번 : " + xrlogin_pw);
//암호화된 비번 찾기
// console.log("암호화 된 비번 : " + xrlogin_pw2);
// bcrypt.compare(xrlogin_pw , xrlogin_pw2, (err ,same) => {
// console.log("암호화된 비번 :" + xrlogin_pw);
// console.log("db에 저장된 비번 :" + xrlogin_pw2)
// db.collection("login").findOne({ id: xrlogin_id, pw:xrlogin_pw}
// // , function (에러, 결과) {
// // done(null, 결과)}
// );
// // function (에러, 결과) {
// // 응답.redirect("/");
// // }
// 응답.status(200).json({ good: "한이 암호화 로그인 가능이용"})
// })
//동기방식
//login
db.collection("login").findOne({ id: xrlogin_id}, function(에러, 결과){
if(결과 == null){
return 응답.status(200).json({ good: "bad"});
}
if (bcrypt.compareSync(xrlogin_pw,결과.pw)){
console.log("결과 pw 출력값 : " + 결과.pw)
const userId = xrlogin_id;
// jwt 토큰
token = jwt.sign(
{
type : 'JWT',
id : userId,
}, SECRET_KEY, {
expiresIn: '20m', //만료시간 20 분
issuer: 'Choi_Han'
});
//응답
응답.cookie('jwt',token)
return 응답.status(200).json({
code: 200,
good: 'nice',
jwt: token,
gender: "male"
, bodyType: 0
, hairType: 0
, shirtsType: 0
, legsType: 0
, feetsType: 0
, glassesType: 0
, hatType: 0
, shirtsTexture: 0
, legsTexture: 0
, feetsTexture: 0
, hatsTexture: 0
, hairColor: "#FFFFFF"
, shirtsColor: "#FFFFFF"
, legsColor: "#FFFFFF"
, feetsColor: "#FFFFFF"
, glassesColor: "#FFFFFF"
, hatsColor: "#FFFFFF"
});
}
응답.status(200).json({ good: "bad"})
}
// , function (에러, 결과) {
// done(null, 결과)}
);
// function (에러, 결과) {
// 응답.redirect("/");
// } 응답.status(200).json({ good: "bad"}
// else{
// console.log("아이디비번 일치하지 않음");
// 응답.status(200).json({ good: "bad"});
// }
});
//-----------------아바타 db셋
app.put("/avatar",function(요청,응답){
console.log("규민이 아바타 와썽용")
const jwt = 요청.body.jwt;
const xrlogin_id = 요청.body.id;
const gender = 요청.body.gender;
const bodyType = 요청.body.bodyType;
const hairType = 요청.body.hairType;
const shirtsType = 요청.body.shirtsType;
const legsType = 요청.body.legsType;
const feetsType = 요청.body.feetsType;
const glassesType = 요청.body.glassesType;
const hatType = 요청.body.hatType;
const shirtsTexture = 요청.body.shirtsTexture;
const legsTexture = 요청.body.legsTexture;
const feetsTexture = 요청.body.feetsTexture;
const hatsTexture = 요청.body.hatsTexture;
const hairColor = 요청.body.hairColor;
const shirtsColor = 요청.body.shirtsColor;
const legsColor = 요청.body.legsColor;
const feetsColor = 요청.body.feetsColor;
const glassesColor = 요청.body.glassesColor;
const hatsColor = 요청.body.hatsColor;
// const zeroTest = 0;
// const zeroTest2 = "0";
// find로 디비를 찾고 안에 잇는 아바타 정보를 업데이트 시키기
//db찾기
//db.collection('login').findOne({id : xrlogin_id}, function(에러, 결과){
// })
console.log("규민이 로그인 셀렉트")
db.collection("login").updateOne(
{ id: xrlogin_id},
{ gender: gender
, bodyType: bodyType
, hairType: hairType
, shirtsType: shirtsType
, legsType: legsType
, feetsType: feetsType
, glassesType: glassesType
, hatType: hatType
, shirtsTexture: shirtsTexture
, legsTexture: legsTexture
, feetsTexture: feetsTexture
, hatsTexture: hatsTexture
, hairColor: hairColor
, shirtsColor: shirtsColor
, legsColor: legsColor
, feetsColor: feetsColor
, glassesColor: glassesColor
, hatsColor: hatsColor
},
function(에러, 결과){
console.log("규민이 로그인 업뎃");
}
)
// function (에러, 결과) {
// 응답.redirect("/");
// }
응답.status(200).json({ good: "한이 아바타 세팅 완료 "})
});
///-0---- ai 통신 11.12
const aiCall = (xrdata) =>
axios({
method: "post", // 요청 방식
url: "http://192.168.0.11:5003", // 요청 주소
data: {
id: "aidata_1",
contents: xrdata // contents 는 xr ai와 협의한 변수명 사용
}, // 제공 데이터(body)
})
.then(function (res) {
console.log(res.data);
return res.data;
})
.catch(function (err) {
console.log(err); // 에러 처리 내용
});
// ai 통신(xr없이 테스트 )
// const aidata = axios({
// method: "post", // 요청 방식
// url: "http://192.168.0.11:5003", // 요청 주소
// data: {
// id: "aidata_1",
// contents: "영화 스파이더맨 정보",
// }, // 제공 데이터(body)
// })
// .then(function (res) {
// console.log(res.data);
// return res.data;
// })
// .catch(function (err) {
// console.log(err); // 에러 처리 내용
// })