index.js 14.6 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 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 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542

const express = require('express');
const session = require('express-session');
const passport = require('passport'), LocalStrategy = require('passport-local').Strategy;
const fs=require('fs');
const router = express.Router()
const fileStore = require('session-file-store')(session);
const app = express();
var flash = require('connect-flash');
var NaverStrategy = require('passport-naver').Strategy;
var KakaoStrategy = require('passport-kakao').Strategy;




//Middle Ware list
app.use(express.urlencoded({extended:false}));
app.use(session({
    secret: 'secret key',
    resave: false,
    saveUninitialized: false,
    store : new fileStore()
  }));
app.use(passport.initialize());
app.use(passport.session());
app.use(flash());



//사용자 정보 세션 읽기, 쓰기
passport.serializeUser(function(user, done) {   //쓰기
    done(null, user.email);
});

passport.deserializeUser(function(id, done) {   //읽기
    done(null, id);
});

//첫 페이지
app.get('/',(req,res)=>{
    let page = getFirstPage(' 오늘뭐먹지','아직도 먹는게<br>고민된다면..?',authInfo(req));
    res.send(page);
});

//메인 페이지
//Express에서 정적파일(ex: main.html, main.js)들을 사용할경우
//경로를 미리 제시해 주는 부분
app.use(express.static(__dirname + '/main'));

app.get('/main',(req,res)=>{
    res.sendFile(__dirname+'/main/main.html')
})

//youtube html
app.use(express.static(__dirname + '/youtube'));




/*--------------------로그인 처리---------------------- */

//로그인 페이지
app.get('/login',(req,res)=>{
    let page =  getLoginButton(`<a href="/">뒤로가기</a>`);
    res.send(page);
});



//로그인 인증 (Passport)
passport.use(new LocalStrategy({
        //로그인 페이지 input 태그 내 name
        usernameField: 'email',
        passwordField: 'password'
    },
  (id, password, done)=>{
      console.log(id,password);
    //회원 정보가 한개이상 있을때
    if(user){
      console.log(user);

        //아이디가 다를때
        if (id !== user.email){
            //alert("존재하는 아이디가 없습니다.")
            return done(null, false, { message: '아이디가 다르다' });}
        //비밀번호가 다를때
        else if (password !== user.password) {
            //alert("비밀번호가 다릅니다.");
            return done(null, false, { message: '비번이 다르다' });}
        //아이디, 비밀번호 모두 맞을 경우
        return done(null, user);
    }
}));

//로그인 처리 (Passport)
app.post('/login',
passport.authenticate('local', {
    //성공시, 메인페이지 이동
    //실패시 로그인 페이지 이동
    successRedirect: '/',
    failureRedirect: '/login',
    badRequestMessage : 'Missing username or password.',
    failureFlash: true
}));

//로그 아웃 처리
app.get('/logout',(req,res)=>{

  //passport 정보 삭제
  req.logout();
  //서버측 세션 삭제
  req.session.destroy(()=>{
      //클라이언트 측 세션 암호화 쿠키 삭제
      res.cookie('connect.sid','',{maxAge:0});
      res.redirect('/');
  });
});


//로그인 로그아웃 여부
const authInfo = (req)=>{
  if(req.user)
  {
    return `${user.name} | <a href="/logout">로그아웃</a>`;}
  else
  return `<a href="/login">로그인</a>`;
}

// naver 로그인
app.get('/naverlogin', passport.authenticate('naver'));
passport.use('naver',new NaverStrategy({
  clientID: 'CGVVomc0bhMhzfzbytK2',
  clientSecret: 'XHylcjnZxG',
  callbackURL: "http://localhost:3000/",
  svcType: 0,
  authType: 'reauthenticate'  // enable re-authentication
 },

 function(accessToken, refreshToken, profile, done) {
  var _profile = profile._json;
  console.log(_profile.id);
  console.log(_profile.properties.nickname);
 }
 ));


// kakao 로그인
app.get('/kakaologin', passport.authenticate('kakao-login'));
passport.use('kakao-login', new KakaoStrategy({
  clientID: '8a854307a99092b4eeeff5e4a79c0ac0',
  callbackURL: 'http://localhost:3000/'
},
function (accessToken, refreshToken, profile, done) {
  var _profile = profile._json;
  console.log(_profile.id);
  console.log(_profile.properties.nickname);

}
));


/*--------------------회원가입 처리---------------------- */


//회원가입 처리 Post
var user = {};
app.post('/join',(req,res)=>{
  user.email = req.body.email;
  user.password = req.body.password;
  user.name=req.body.name;
  //로그인 페이지로 이동
  console.log(user);
  res.redirect('/login');
});





//회원가입 페이지 Get
app.get('/join',(req,res)=>{
  let page = getPage('회원가입',`
  <html>
  <head>
  <script> function congratulation()
      {
          alert("새로운 회원이 되신걸 축하합니다!:D \n 레시피 찾을 준비 되셨나요?");
      } </script>
  <style>
  body {
    padding-top: 15px;
    font-size: 12px
  }
  .main {
    max-width: 320px;
    margin-top:300px auto;
    margin: 0 auto;
  }
  .login-or {
    position: relative;
    font-size: 18px;
    color: rgb(7, 7, 7);
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .span-or {
    display: block;
    position: absolute;
    left: 50%;
    top: -2px;
    margin-left: -25px;
    background-color: #fff;
    width: 50px;
    text-align: center;
  }
  .hr-or {
    background-color: #cdcdcd;
    height: 1px;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  h3 {
    text-align: center;
    line-height: 300%;
    margin-top:10px auto;
  }
  img{
      width:320px;
      height:150px;
      object-fit:cover;
      margin-bottom:30px;
  }
  </style><link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>

</head>

  <body>
  <div class="container">
  <div class="row">
    <div class="main">
    <img src="https://images.unsplash.com/photo-1600577916048-804c9191e36c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1632&q=80" alt=""/>
      <h3>Sign-Up</h3>
  <form action="/join" method="post">
  <div class="form-group">
      <input type="email" class="form-control" name="email" placeholder="email"><br>
  </div>
  <div class="form-group">
      <input type="password" name="password" class="form-control" placeholder="****"><br>
  </div>
  <div class="form-group">
      <input type="name" name="name" class="form-control" placeholder="이름"><br>
  </div>
      <button type="submit" value="회원가입" class="btn btn btn-primary" onClick="javascript:congratulation()">
      회원가입
      </button>
  </form>
  </html>

  `,'<a href="/login">뒤로가기</a>');
  res.send(page);
});



//포트 연결
app.listen(3000,()=>console.log(`http://localhost:3000`));



//페이지 템플릿
const getPage = (title, content, auth) =>{
    return `
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Passport Example</title>
    </head>
    <body>
    ${auth}
        <h1>${title}</h1>
        <p>${content}</p>
    </body>
    </html>
    `;
}

//로그인 버튼
const getLoginButton = (auth) =>{
    return `
    <!DOCTYPE html>
    <html>
    <head>
    <style>
    body {
        padding-top: 15px;
        font-size: 12px
      }
      .main {
        max-width: 320px;
        margin-top:300px auto;
        margin: 0 auto;
      }
      .login-or {
        position: relative;
        font-size: 18px;
        color: rgb(7, 7, 7);
        margin-top: 10px;
        margin-bottom: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
      }
      .span-or {
        display: block;
        position: absolute;
        left: 50%;
        top: -2px;
        margin-left: -25px;
        background-color: #fff;
        width: 50px;
        text-align: center;
      }
      .hr-or {
        background-color: #cdcdcd;
        height: 1px;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
      }
      h3 {
        text-align: center;
        line-height: 300%;
        margin-top:10px auto;
      }
      img{
          width:300px;
          height:150px;
          object-fit:cover;
          margin-bottom:30px;
      }
      </style>
    <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
    <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
    <script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
    <script type="text/javascript" src="https://static.nid.naver.com/js/naverLogin_implicit-1.0.3.js" charset="utf-8"></script>
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
    <title><%= title %></title>
    </head>
    <body>
    ${auth}
    <div class="container">
    <div class="row">
      <div class="main">
      <img src="https://i.ibb.co/k2zSVcn/142437038-e7b564cb-978a-4018-8834-9984cc3b119e.png" alt=""/>
      <!--이미지 아래부분이 살짝 잘림 -->
      <!--로그인,회원가입버튼 오른쪽 맞추는게 더 깔끔할거같음 -->

        <h3>Login</h3>
        <form role="form" method="POST" action="/login">
          <div class="form-group">
            <label for="userId">아이디</label>
            <input type="text" class="form-control" id="email" name="email">
          </div>
          <div class="form-group">
            <label for="password">비밀번호</label>
            <input type="password" class="form-control" id="password" name="password">
          </div>
          <button type="submit" class="btn btn btn-primary">
            로그인
          </button>
            <button type="submit" class="btn btn btn-primary">
           <a href="/join" style="color:white;text-decoration-line:none;"> 회원가입</a>
        </form>

      </div>
    </div>
  </div>

  <div>
  <a href="/naverlogin" class="btn btn-block btn-lg btn-success btn_login">Naver</a>
  <a href="/kakaologin" class="btn btn-block btn-lg btn-warning btn_login">KaKao</a>
  </div>


</body>
</html>
    `;
}


//첫 페이지 화면
const getFirstPage =(title, content, auth) =>{
  return `
  <!DOCTYPE html>
  <html lang="en">
  <head>
      <meta charset="UTF-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title>Food_recipe_Info</title>
      <style>
      @import url(//fonts.googleapis.com/earlyaccess/nanumpenscript.css);
        body{
          height: 100vh;
          background-image: url('https://images.unsplash.com/photo-1614548539924-5c1f205b3747?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80');
          background-position: center;
          background-repeat: no-repeat;
          background-size: cover;
          background-attachment: scroll;
        }
      
        .hey {
          position: relative;
          left: 50%;
          top: 33%;
          transform: translate(-50%, -47%);
          text-align: center;
          font-size: 8em;
          font-family: 'Nanum Pen Script', cursive;
        }
        p {
          position: relative;
          left: 50%;
          top: 31%;
          transform: translate(-50%, -47%);
          font-size: 4em;
          text-align: center;
          font-family: 'Nanum Pen Script', cursive;
        }
        div {
          position: relative;
          font-size: 1.3em;
          text-align: center;
        }
        .box1{
          position: relative;
          left: 50%;
          top: 40%;
          transform: translate(-50%, -50%);
        }
        .box2{
          position: absolute;
          left: 50%;
          top: 77%;
          transform: translate(-50%, -54%);
        }
      </style>
      <!-- Bootstrap cdn 설정 -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>

  </head>
  <body>
  <!-- 네비게이션(nav) 컨트롤에 사요하는 드롭다운. -->
  <div style="margin:20px;">
  <nav id="navbar-example" class="navbar navbar-default navbar-static">
  <div class="container-fluid">
  <!-- 네비게이션(nav)의 기본 설정으로 모바일일 때, 메뉴 버튼이 나온다. -->
  <div class="navbar-header">
  <button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target=".navbar-collapse">
  <span class="sr-only">Toggle navigation</span>
  <span class="icon-bar"></span>
  <span class="icon-bar"></span>
  <span class="icon-bar"></span>
  </button>
  <!-- 타이틀임. -->
  <a class="navbar-brand" href="#">카테고리</a>
  </div>
  <!-- 메뉴 설정 -->
  <div class="collapse navbar-collapse">
  <!-- 메뉴는 왼쪽으로 두개 설정 -->
  <ul class="nav navbar-nav">

  <li>
  <a href="#" class="dropdown-toggle" data-toggle="dropdown">
 Asian Food
  <!-- 아래 화살표 -->
  <span class="caret"></span>
  </a>
  <ul class="dropdown-menu">
  <li><a href="Japan.html">Japanese Food</a></li>
  <li><a href="China.html">Chinese Food</a></li>
  <li><a href="Korea.html">Korean Food</a></li>
  </ul>
  </li>

  <li>
  <a href="#" class="dropdown-toggle" data-toggle="dropdown">
  American Food
  <!-- 아래 화살표 -->
  <span class="caret"></span>
  </a>
  <ul class="dropdown-menu">
  <li><a href="America.html">US Food</a></li>
  <li><a href="Mexico.html">Mexican Food</a></li>
  </ul>
  </li>
  </ul>
  <!-- 메뉴를 오른쪽 정렬로 설정 가능 -->
  <ul class="nav navbar-nav navbar-right">
  <!-- 메뉴 이름은 Right!로 서브 옵션은 Test5와 Test6가 있다. -->
  <li>
  <a href="#" class="dropdown-toggle" data-toggle="dropdown">
 European Food
  <!-- 아래 화살표 -->
  <span class="caret"></span>
  </a>
  <ul class="dropdown-menu">
  <li><a href="Italy.html">Italian Food</a></li>
  <li><a href="France.html">French Food</a></li>

  </ul>
  </li>
  </ul>
  </div>
  </div>
  </nav>
  </div>
      <div class="hey">${title}</div>
      <p>${content}</p>
      <div class="box1">
      ${auth}
      </div>
      <div class="box2">
      <input type="button" value="레시피 보러가기" onClick="movepage()"/>
      </div>
      <script type="text/javascript">
      function movepage(){
          location.href="main";
      }</script>
  </body>
  </html>
  `;
}