2016-05-03 04:09:16 +00:00
|
|
|
import Express from 'express';
|
2016-05-13 20:04:16 +00:00
|
|
|
import mongoose from 'mongoose';
|
|
|
|
import bodyParser from 'body-parser';
|
|
|
|
import cookieParser from 'cookie-parser';
|
|
|
|
import session from 'express-session';
|
2016-07-11 13:06:43 +00:00
|
|
|
const MongoStore = require('connect-mongo')(session);
|
2016-05-13 20:04:16 +00:00
|
|
|
import passport from 'passport';
|
2016-05-03 04:09:16 +00:00
|
|
|
import path from 'path';
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
// Webpack Requirements
|
2016-05-03 04:09:16 +00:00
|
|
|
import webpack from 'webpack';
|
2016-06-27 22:46:08 +00:00
|
|
|
import config from '../webpack.config.dev';
|
2016-05-03 04:09:16 +00:00
|
|
|
import webpackDevMiddleware from 'webpack-dev-middleware';
|
|
|
|
import webpackHotMiddleware from 'webpack-hot-middleware';
|
|
|
|
|
|
|
|
const app = new Express();
|
|
|
|
|
2016-06-28 18:41:15 +00:00
|
|
|
// Run Webpack dev server in development mode
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
|
|
|
const compiler = webpack(config);
|
|
|
|
app.use(webpackDevMiddleware(compiler, { noInfo: true, publicPath: config.output.publicPath }));
|
|
|
|
app.use(webpackHotMiddleware(compiler));
|
|
|
|
}
|
2016-05-03 04:09:16 +00:00
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
// Import all required modules
|
2016-05-03 04:09:16 +00:00
|
|
|
import serverConfig from './config';
|
2016-06-09 00:52:59 +00:00
|
|
|
import users from './routes/user.routes';
|
2016-06-14 20:48:16 +00:00
|
|
|
import sessions from './routes/session.routes';
|
2016-06-17 18:11:52 +00:00
|
|
|
import projects from './routes/project.routes';
|
2016-07-13 22:53:56 +00:00
|
|
|
import files from './routes/file.routes';
|
2016-07-15 23:05:18 +00:00
|
|
|
import aws from './routes/aws.routes';
|
2016-06-18 22:33:49 +00:00
|
|
|
import serverRoutes from './routes/server.routes';
|
2016-05-03 04:09:16 +00:00
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
// Body parser, cookie parser, sessions, serve public assets
|
2016-05-17 19:50:37 +00:00
|
|
|
|
2016-05-13 20:49:56 +00:00
|
|
|
app.use(Express.static(path.resolve(__dirname, '../static')));
|
2016-06-23 22:29:55 +00:00
|
|
|
app.use(bodyParser.urlencoded({ extended: true }));
|
2016-05-13 20:04:16 +00:00
|
|
|
app.use(bodyParser.json());
|
|
|
|
app.use(cookieParser());
|
2016-06-13 23:29:33 +00:00
|
|
|
app.use(session({
|
|
|
|
resave: true,
|
|
|
|
saveUninitialized: false,
|
|
|
|
secret: process.env.SESSION_SECRET,
|
|
|
|
proxy: true,
|
|
|
|
name: 'sessionId',
|
|
|
|
cookie: {
|
|
|
|
httpOnly: true,
|
|
|
|
secure: false,
|
|
|
|
},
|
|
|
|
store: new MongoStore({
|
|
|
|
url: process.env.MONGO_URL,
|
|
|
|
autoReconnect: true
|
|
|
|
})
|
|
|
|
}));
|
2016-05-13 20:04:16 +00:00
|
|
|
app.use(passport.initialize());
|
|
|
|
app.use(passport.session());
|
2016-06-18 22:33:49 +00:00
|
|
|
app.use('/api', users);
|
|
|
|
app.use('/api', sessions);
|
|
|
|
app.use('/api', projects);
|
2016-07-13 22:53:56 +00:00
|
|
|
app.use('/api', files);
|
2016-07-15 23:05:18 +00:00
|
|
|
app.use('/api', aws);
|
2016-06-23 22:29:55 +00:00
|
|
|
// this is supposed to be TEMPORARY -- until i figure out
|
2016-06-18 22:33:49 +00:00
|
|
|
// isomorphic rendering
|
|
|
|
app.use('/', serverRoutes);
|
2016-05-03 04:09:16 +00:00
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
// configure passport
|
2016-06-27 17:09:18 +00:00
|
|
|
require('./config/passport');
|
|
|
|
// const passportConfig = require('./config/passport');
|
2016-05-17 19:50:37 +00:00
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
// Connect to MongoDB
|
2016-06-09 17:56:23 +00:00
|
|
|
// mongoose.connect(process.env.MONGODB_URI || process.env.MONGOLAB_URI);
|
|
|
|
mongoose.connect(serverConfig.mongoURL);
|
|
|
|
mongoose.connection.on('error', () => {
|
|
|
|
console.error('MongoDB Connection Error. Please make sure that MongoDB is running.');
|
|
|
|
process.exit(1);
|
|
|
|
});
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
app.get('/', (req, res) => {
|
|
|
|
res.sendFile(path.resolve(`${__dirname}/../index.html`));
|
|
|
|
});
|
2016-05-03 04:09:16 +00:00
|
|
|
|
|
|
|
// start app
|
|
|
|
app.listen(serverConfig.port, (error) => {
|
|
|
|
if (!error) {
|
|
|
|
console.log(`p5js web editor is running on port: ${serverConfig.port}!`); // eslint-disable-line
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
export default app;
|