Skip to content

Commit

Permalink
[add] 3주차 세미나
Browse files Browse the repository at this point in the history
  • Loading branch information
devkwonsehoon committed Oct 23, 2021
1 parent cadc079 commit 4db38ab
Show file tree
Hide file tree
Showing 14 changed files with 1,049 additions and 0 deletions.
39 changes: 39 additions & 0 deletions Seminar/3rd-seminar/crud/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
var createError = require('http-errors');
var express = require('express');
var path = require('path');
var cookieParser = require('cookie-parser');
var logger = require('morgan');

var indexRouter = require('./routes/index');

var app = express();

// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');

app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));

app.use('/', indexRouter);

// catch 404 and forward to error handler
app.use(function (req, res, next) {
next(createError(404));
});

// error handler
app.use(function (err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};

// render the error page
res.status(err.status || 500);
res.render('error');
});

module.exports = app;
90 changes: 90 additions & 0 deletions Seminar/3rd-seminar/crud/bin/www
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
#!/usr/bin/env node

/**
* Module dependencies.
*/

var app = require('../app');
var debug = require('debug')('crud:server');
var http = require('http');

/**
* Get port from environment and store in Express.
*/

var port = normalizePort(process.env.PORT || '3000');
app.set('port', port);

/**
* Create HTTP server.
*/

var server = http.createServer(app);

/**
* Listen on provided port, on all network interfaces.
*/

server.listen(port);
server.on('error', onError);
server.on('listening', onListening);

/**
* Normalize a port into a number, string, or false.
*/

function normalizePort(val) {
var port = parseInt(val, 10);

if (isNaN(port)) {
// named pipe
return val;
}

if (port >= 0) {
// port number
return port;
}

return false;
}

/**
* Event listener for HTTP server "error" event.
*/

function onError(error) {
if (error.syscall !== 'listen') {
throw error;
}

var bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;

// handle specific listen errors with friendly messages
switch (error.code) {
case 'EACCES':
console.error(bind + ' requires elevated privileges');
process.exit(1);
break;
case 'EADDRINUSE':
console.error(bind + ' is already in use');
process.exit(1);
break;
default:
throw error;
}
}

/**
* Event listener for HTTP server "listening" event.
*/

function onListening() {
var addr = server.address();
var bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
debug('Listening on ' + bind);
}
18 changes: 18 additions & 0 deletions Seminar/3rd-seminar/crud/constants/responseMessage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
NULL_VALUE: '필요한 값이 없습니다',
OUT_OF_VALUE: '파라미터 값이 잘못되었습니다',

// 회원가입
CREATED_USER: '회원 가입 성공',
DELETE_USER: '회원 탈퇴 성공',
ALREADY_EMAIL: '이미 사용중인 이메일입니다.',

// 로그인
LOGIN_SUCCESS: '로그인 성공',
LOGIN_FAIL: '로그인 실패',
NO_USER: '존재하지 않는 회원입니다.',
MISS_MATCH_PW: '비밀번호가 맞지 않습니다.',

// 프로필 조회
READ_PROFILE_SUCCESS: '프로필 조회 성공',
};
12 changes: 12 additions & 0 deletions Seminar/3rd-seminar/crud/constants/statusCode.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module.exports = {
OK: 200,
CREATED: 201,
NO_CONTENT: 204,
BAD_REQUEST: 400,
UNAUTHORIZED: 401,
FORBIDDEN: 403,
NOT_FOUND: 404,
INTERNAL_SERVER_ERROR: 500,
SERVICE_UNAVAILABLE: 503,
DB_ERROR: 600,
};
20 changes: 20 additions & 0 deletions Seminar/3rd-seminar/crud/dbMockup/user.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = [
{
id: 1,
name: '김우영',
password: '123456',
email: '[email protected]',
},
{
id: 2,
name: '서호영',
password: 'qwerty',
email: '[email protected]',
},
{
id: 3,
name: '주어진사랑',
password: 'password',
email: '[email protected]',
},
];
19 changes: 19 additions & 0 deletions Seminar/3rd-seminar/crud/lib/util.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
const util = {
success: (status, message, data) => {
return {
status,
success: true,
message,
data,
};
},
fail: (status, message) => {
return {
status,
success: false,
message,
};
},
};

module.exports = util;
Loading

0 comments on commit 4db38ab

Please sign in to comment.