login.js
2.12 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
var express = require('express')
var Conn = require('../database/Connection')
var router = express.Router()
//라우팅 함수 등록
router.get('/',function(req,res){
res.render('login.html')
});
router.post('/process', function(req, res) {
console.log('/login/process 처리함');
var paramId = req.body.id || req.query.id;
var paramPassword = req.body.password || req.query.password;
//GET, POST 모두 고려해서 둘 다 검사
if(Conn.pool){
Conn.authUser(paramId, paramPassword, function(err, rows) {
if(err){
console.error(err.stack);
res.writeHead('200', { 'Content-Type': 'text/html;charset=utf8' });
res.write('<h1>로그인 중 오류</h1>');
res.write('<div><p>Param id : ' + paramId + '</p></div>');
res.write('<div><p>Param password : ' + paramPassword + '</p></div>');
res.write("<br><br><a href ='/login'>로그인 페이지로 돌아가기</a>");
res.end();
return;
}
if (rows){
console.dir(rows);
res.writeHead('200', { 'Content-Type': 'text/html;charset=utf8' });
res.write('<h1>로그인 성공</h1>');
res.write('<div><p>Param name : ' + rows[0].name + '</p></div>');
res.write('<div><p>Param id : ' + paramId + '</p></div>');
res.write("<br><br><a href ='/login'>로그인 페이지로 돌아가기</a>");
res.end();
} else {
res.writeHead('200', { 'Content-Type': 'text/html;charset=utf8' });
res.write('<h1>로그인 실패.</h1>');
res.write('<div><p>Param id : ' + paramId + '</p></div>');
res.write("<br><br><a href ='/login'>로그인 페이지로 돌아가기</a>");
res.end();
}
})
}else{
res.writeHead('200', { 'Content-Type': 'text/html;charset=utf8' });
res.write('<h1>데이터베이스 연결 실패</h1>');
res.end();
}
});
module.exports = router