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';
|
2017-03-23 18:53:16 +00:00
|
|
|
import cors from 'cors';
|
2016-05-13 20:04:16 +00:00
|
|
|
import session from 'express-session';
|
2017-02-22 19:29:35 +00:00
|
|
|
import connectMongo from 'connect-mongo';
|
2016-05-13 20:04:16 +00:00
|
|
|
import passport from 'passport';
|
2016-05-03 04:09:16 +00:00
|
|
|
import path from 'path';
|
2018-08-21 20:09:41 +00:00
|
|
|
import basicAuth from 'express-basic-auth';
|
2016-05-03 04:09:16 +00:00
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
// Webpack Requirements
|
2016-05-03 04:09:16 +00:00
|
|
|
import webpack from 'webpack';
|
|
|
|
import webpackDevMiddleware from 'webpack-dev-middleware';
|
|
|
|
import webpackHotMiddleware from 'webpack-hot-middleware';
|
2018-09-26 20:14:06 +00:00
|
|
|
import config from '../webpack/config.dev';
|
2016-05-03 04:09:16 +00:00
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
// Import all required modules
|
2019-08-30 18:26:57 +00:00
|
|
|
import api from './routes/api.routes';
|
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';
|
2019-07-08 10:06:13 +00:00
|
|
|
import collections from './routes/collection.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-09-05 20:08:08 +00:00
|
|
|
import embedRoutes from './routes/embed.routes';
|
2017-11-28 19:48:50 +00:00
|
|
|
import assetRoutes from './routes/asset.routes';
|
2017-06-26 17:58:58 +00:00
|
|
|
import { requestsOfTypeJSON } from './utils/requestsOfType';
|
2016-05-03 04:09:16 +00:00
|
|
|
|
2016-11-08 23:11:12 +00:00
|
|
|
import { renderIndex } from './views/index';
|
2017-01-06 18:08:03 +00:00
|
|
|
import { get404Sketch } from './views/404Page';
|
2016-11-08 23:11:12 +00:00
|
|
|
|
2017-02-22 19:29:35 +00:00
|
|
|
const app = new Express();
|
|
|
|
const MongoStore = connectMongo(session);
|
|
|
|
|
2018-08-21 21:52:42 +00:00
|
|
|
app.get('/health', (req, res) => res.json({ success: true }));
|
2018-08-21 21:39:34 +00:00
|
|
|
|
2018-08-21 20:09:41 +00:00
|
|
|
// For basic auth, in setting up beta editor
|
|
|
|
if (process.env.BASIC_USERNAME && process.env.BASIC_PASSWORD) {
|
|
|
|
app.use(basicAuth({
|
|
|
|
users: {
|
|
|
|
[process.env.BASIC_USERNAME]: process.env.BASIC_PASSWORD
|
|
|
|
},
|
|
|
|
challenge: true
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2017-03-23 18:53:16 +00:00
|
|
|
const corsOriginsWhitelist = [
|
|
|
|
/p5js\.org$/,
|
|
|
|
];
|
|
|
|
|
2017-02-22 19:29:35 +00:00
|
|
|
// Run Webpack dev server in development mode
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
|
|
|
const compiler = webpack(config);
|
2019-08-28 20:08:40 +00:00
|
|
|
app.use(webpackDevMiddleware(compiler, { noInfo: true, publicPath: config.output.publicPath }));
|
2017-02-22 19:29:35 +00:00
|
|
|
app.use(webpackHotMiddleware(compiler));
|
2017-03-23 18:53:16 +00:00
|
|
|
|
|
|
|
corsOriginsWhitelist.push(/localhost/);
|
2017-02-22 19:29:35 +00:00
|
|
|
}
|
|
|
|
|
2018-09-26 20:14:06 +00:00
|
|
|
const mongoConnectionString = process.env.MONGO_URL;
|
2018-07-03 20:02:46 +00:00
|
|
|
app.set('trust proxy', true);
|
2018-06-25 23:13:31 +00:00
|
|
|
|
2017-03-23 18:53:16 +00:00
|
|
|
// Enable Cross-Origin Resource Sharing (CORS) for all origins
|
|
|
|
const corsMiddleware = cors({
|
|
|
|
credentials: true,
|
|
|
|
origin: corsOriginsWhitelist,
|
|
|
|
});
|
|
|
|
app.use(corsMiddleware);
|
|
|
|
// Enable pre-flight OPTIONS route for all end-points
|
|
|
|
app.options('*', corsMiddleware);
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
// Body parser, cookie parser, sessions, serve public assets
|
2016-05-17 19:50:37 +00:00
|
|
|
|
2018-05-04 20:36:59 +00:00
|
|
|
app.use(Express.static(path.resolve(__dirname, '../dist/static'), {
|
2017-12-08 20:01:39 +00:00
|
|
|
maxAge: process.env.STATIC_MAX_AGE || (process.env.NODE_ENV === 'production' ? '1d' : '0')
|
|
|
|
}));
|
2017-05-10 19:07:40 +00:00
|
|
|
app.use(bodyParser.urlencoded({ limit: '50mb', extended: true }));
|
|
|
|
app.use(bodyParser.json({ limit: '50mb' }));
|
2016-05-13 20:04:16 +00:00
|
|
|
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({
|
2018-06-25 23:13:31 +00:00
|
|
|
url: mongoConnectionString,
|
2016-06-13 23:29:33 +00:00
|
|
|
autoReconnect: true
|
|
|
|
})
|
|
|
|
}));
|
2017-06-26 17:58:58 +00:00
|
|
|
|
2016-05-13 20:04:16 +00:00
|
|
|
app.use(passport.initialize());
|
|
|
|
app.use(passport.session());
|
2019-08-30 18:26:57 +00:00
|
|
|
app.use('/api/v1', requestsOfTypeJSON(), api);
|
2019-08-30 18:39:45 +00:00
|
|
|
app.use('/editor', requestsOfTypeJSON(), users);
|
|
|
|
app.use('/editor', requestsOfTypeJSON(), sessions);
|
|
|
|
app.use('/editor', requestsOfTypeJSON(), files);
|
|
|
|
app.use('/editor', requestsOfTypeJSON(), projects);
|
|
|
|
app.use('/editor', requestsOfTypeJSON(), aws);
|
2019-07-08 10:06:13 +00:00
|
|
|
app.use('/editor', requestsOfTypeJSON(), collections);
|
2019-05-15 12:07:09 +00:00
|
|
|
|
|
|
|
// This is a temporary way to test access via Personal Access Tokens
|
|
|
|
// Sending a valid username:<personal-access-token> combination will
|
|
|
|
// return the user's information.
|
2019-08-30 18:39:45 +00:00
|
|
|
app.get(
|
|
|
|
'/api/v1/auth/access-check',
|
|
|
|
passport.authenticate('basic', { session: false }), (req, res) => res.json(req.user)
|
|
|
|
);
|
2019-05-15 12:07:09 +00:00
|
|
|
|
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
|
2018-01-08 21:12:55 +00:00
|
|
|
app.use('/', serverRoutes);
|
2016-09-05 20:08:08 +00:00
|
|
|
|
2019-09-09 16:54:16 +00:00
|
|
|
app.use(assetRoutes);
|
|
|
|
|
2018-01-08 21:12:55 +00:00
|
|
|
app.use('/', embedRoutes);
|
2016-08-31 16:57:47 +00:00
|
|
|
app.get('/auth/github', passport.authenticate('github'));
|
|
|
|
app.get('/auth/github/callback', passport.authenticate('github', { failureRedirect: '/login' }), (req, res) => {
|
2018-04-18 20:38:02 +00:00
|
|
|
res.redirect('/');
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/auth/google', passport.authenticate('google'));
|
|
|
|
app.get('/auth/google/callback', passport.authenticate('google', { failureRedirect: '/login' }), (req, res) => {
|
2016-08-31 16:57:47 +00:00
|
|
|
res.redirect('/');
|
|
|
|
});
|
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
|
2019-03-01 20:47:17 +00:00
|
|
|
mongoose.Promise = global.Promise;
|
2019-11-07 18:38:02 +00:00
|
|
|
mongoose.connect(mongoConnectionString, { useNewUrlParser: true, useUnifiedTopology: true });
|
|
|
|
mongoose.set('useCreateIndex', true);
|
2016-06-09 17:56:23 +00:00
|
|
|
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) => {
|
2016-11-08 23:11:12 +00:00
|
|
|
res.sendFile(renderIndex());
|
2016-06-23 22:29:55 +00:00
|
|
|
});
|
2016-05-03 04:09:16 +00:00
|
|
|
|
2019-07-21 14:31:14 +00:00
|
|
|
// Handle API errors
|
|
|
|
app.use('/api', (error, req, res, next) => {
|
|
|
|
if (error && error.code && !res.headersSent) {
|
|
|
|
res.status(error.code).json({ error: error.message });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
next(error);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2017-01-06 18:08:03 +00:00
|
|
|
// Handle missing routes.
|
|
|
|
app.get('*', (req, res) => {
|
|
|
|
res.status(404);
|
|
|
|
if (req.accepts('html')) {
|
|
|
|
get404Sketch(html => res.send(html));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (req.accepts('json')) {
|
|
|
|
res.send({ error: 'Not found.' });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
res.type('txt').send('Not found.');
|
|
|
|
});
|
|
|
|
|
2016-05-03 04:09:16 +00:00
|
|
|
// start app
|
2018-05-18 00:45:48 +00:00
|
|
|
app.listen(process.env.PORT, (error) => {
|
2016-05-03 04:09:16 +00:00
|
|
|
if (!error) {
|
2018-05-18 00:45:48 +00:00
|
|
|
console.log(`p5js web editor is running on port: ${process.env.PORT}!`); // eslint-disable-line
|
2016-05-03 04:09:16 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
export default app;
|