Advertisement
Guest User

Untitled

a guest
Jul 4th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2.  *  @description Default Imports
  3.  */
  4.  
  5. import * as connectMongo from 'connect-mongo';
  6. import * as express from 'express';
  7. import * as expressSession from 'express-session';
  8. import * as bodyParser from 'body-parser';
  9. import * as mongoose from 'mongoose';
  10. import * as helmet from 'helmet';
  11. import * as compression from 'compression';
  12. import * as dotenvSafe from 'dotenv-safe';
  13. import * as path from 'path';
  14. import * as passport from 'passport';
  15. import * as cors from 'cors';
  16.  
  17. /**
  18.  *  @description Router Imports
  19.  */
  20.  
  21. import { Routes } from './routes/routes';
  22.  
  23. /**
  24.  *  @description Schema Imports
  25.  */
  26.  
  27. import { Credentials } from './schemas/credentials.schema';
  28.  
  29. class App {
  30.     private routePrv: Routes = new Routes();
  31.     public app: express.Application;
  32.  
  33.     /**
  34.      *  @function constructor
  35.      *  @description Initialize default values
  36.      *  @param
  37.      */
  38.     constructor() {
  39.         try {
  40.             this.app = express();
  41.  
  42.             this.initializeEnvironment();
  43.             this.initializeMongo();
  44.             this.initializeExpress();
  45.             this.initializePassport();
  46.  
  47.             this.routePrv.routes(this.app);
  48.         } catch (error) {
  49.             console.log(error);
  50.         }
  51.     }
  52.  
  53.     /**
  54.      *  @function initializeExpress
  55.      *  @description Initialize express server
  56.      *  @param
  57.      */
  58.     private initializeExpress(): void {
  59.         try {
  60.             this.app.use(helmet());
  61.             this.app.use(compression());
  62.             this.app.use(cors());
  63.             this.app.use(bodyParser.json());
  64.             this.app.use(bodyParser.urlencoded({ extended: true }));
  65.  
  66.             const MongoStore = connectMongo(expressSession);
  67.  
  68.             this.app.use(
  69.                 expressSession({
  70.                     resave: true,
  71.                     saveUninitialized: true,
  72.                     secret: 'keyboard cat',
  73.                     store: new MongoStore({
  74.                         mongooseConnection: mongoose.connection,
  75.                         autoReconnect: true,
  76.                     }),
  77.                 }),
  78.             );
  79.         } catch (error) {
  80.             console.log(error);
  81.         }
  82.     }
  83.  
  84.     /**
  85.      *  @function initializeMongo
  86.      *  @description Initialize the mongo database
  87.      *  @param
  88.      */
  89.     private initializeMongo(): void {
  90.         try {
  91.             mongoose.connect(process.env.MONGODB_URI);
  92.         } catch (error) {
  93.             console.log(error);
  94.         }
  95.     }
  96.  
  97.     /**
  98.      *  @function initializePassport
  99.      *  @description Initialize the passport authentication
  100.      *  @param
  101.      */
  102.     private initializePassport(): void {
  103.         try {
  104.             this.app.use(passport.initialize());
  105.             this.app.use(passport.session());
  106.  
  107.             passport.use(Credentials.createStrategy());
  108.             passport.serializeUser(Credentials.serializeUser());
  109.             passport.deserializeUser(Credentials.deserializeUser());
  110.         } catch (error) {
  111.             console.log(error);
  112.         }
  113.     }
  114.  
  115.     /**
  116.      *  @function initializeEnvironment
  117.      *  @description Initialize environment for server
  118.      *  @param
  119.      */
  120.     private initializeEnvironment(): void {
  121.         try {
  122.             process.env.NODE_ENV === 'production'
  123.                 ? dotenvSafe.load({
  124.                         path: path.join(__dirname, './../env.prod'),
  125.                         sample: path.join(__dirname, './../.env.prod'),
  126.                   })
  127.                 : dotenvSafe.load({ path: path.join(__dirname, './../.env.dev'), sample: path.join(__dirname, './../.env.dev') });
  128.         } catch (error) {
  129.             console.log(error);
  130.         }
  131.     }
  132. }
  133.  
  134. export default new App().app;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement