mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 03:05:24 +08:00
190 lines
5.6 KiB
JavaScript
190 lines
5.6 KiB
JavaScript
const express = require('express');
|
|
const bodyParser = require('body-parser');
|
|
const morgan = require('morgan');
|
|
const path = require('path');
|
|
const helmet = require('helmet');
|
|
const authentication = require('./middleware/authentication');
|
|
const {passport} = require('./services/passport');
|
|
const plugins = require('./services/plugins');
|
|
const pubsub = require('./services/pubsub');
|
|
const i18n = require('./services/i18n');
|
|
const enabled = require('debug').enabled;
|
|
const errors = require('./errors');
|
|
const {createGraphOptions} = require('./graph');
|
|
const apollo = require('graphql-server-express');
|
|
const accepts = require('accepts');
|
|
const compression = require('compression');
|
|
const cookieParser = require('cookie-parser');
|
|
|
|
const app = express();
|
|
|
|
// Middleware declarations.
|
|
|
|
// Add the logging middleware only if we aren't testing.
|
|
if (app.get('env') !== 'test') {
|
|
app.use(morgan('dev'));
|
|
}
|
|
|
|
//==============================================================================
|
|
// APP MIDDLEWARE
|
|
//==============================================================================
|
|
|
|
app.set('trust proxy', 1);
|
|
|
|
// We disable frameward on helmet to allow crossdomain injection of the embed
|
|
app.use(helmet({
|
|
frameguard: false
|
|
}));
|
|
app.use(compression());
|
|
app.use(cookieParser());
|
|
app.use(bodyParser.json());
|
|
|
|
//==============================================================================
|
|
// STATIC FILES
|
|
//==============================================================================
|
|
|
|
// If the application is in production mode, then add gzip rewriting for the
|
|
// content.
|
|
if (process.env.NODE_ENV === 'production') {
|
|
app.get('*.js', (req, res, next) => {
|
|
const accept = accepts(req);
|
|
if (accept.encoding(['gzip']) === 'gzip') {
|
|
|
|
// Adjsut the headers on the request by adding a content type header
|
|
// because express won't be able to detect the mime-type with the .gz
|
|
// extension and we need to decalre support for the gzip encoding.
|
|
res.set('Content-Type', 'application/javascript');
|
|
res.set('Content-Encoding', 'gzip');
|
|
|
|
// Rewrite the url so that the gzip version will be served instead.
|
|
req.url = `${req.url}.gz`;
|
|
}
|
|
|
|
next();
|
|
});
|
|
}
|
|
|
|
app.use('/client', express.static(path.join(__dirname, 'dist')));
|
|
app.use('/public', express.static(path.join(__dirname, 'public')));
|
|
|
|
//==============================================================================
|
|
// VIEW CONFIGURATION
|
|
//==============================================================================
|
|
|
|
app.set('views', path.join(__dirname, 'views'));
|
|
app.set('view engine', 'ejs');
|
|
|
|
//==============================================================================
|
|
// PASSPORT MIDDLEWARE
|
|
//==============================================================================
|
|
|
|
const passportDebug = require('debug')('talk:passport');
|
|
|
|
// Install the passport plugins.
|
|
plugins.get('server', 'passport').forEach((plugin) => {
|
|
passportDebug(`added plugin '${plugin.plugin.name}'`);
|
|
|
|
// Pass the passport.js instance to the plugin to allow it to inject it's
|
|
// functionality.
|
|
plugin.passport(passport);
|
|
});
|
|
|
|
// Setup the PassportJS Middleware.
|
|
app.use(passport.initialize());
|
|
|
|
// Attach the authentication middleware, this will be responsible for decoding
|
|
// (if present) the JWT on the request.
|
|
app.use('/api', authentication);
|
|
|
|
// To handle dependancy injection safer, we inject the pubsub handle onto the
|
|
// request object.
|
|
app.use('/api', (req, res, next) => {
|
|
|
|
// Attach the pubsub handle to the requests.
|
|
req.pubsub = pubsub.createClient();
|
|
|
|
// Forward on the request.
|
|
next();
|
|
});
|
|
|
|
//==============================================================================
|
|
// GraphQL Router
|
|
//==============================================================================
|
|
|
|
// GraphQL endpoint.
|
|
app.use('/api/v1/graph/ql', apollo.graphqlExpress(createGraphOptions));
|
|
|
|
// Only include the graphiql tool if we aren't in production mode.
|
|
if (app.get('env') !== 'production') {
|
|
|
|
// Interactive graphiql interface.
|
|
app.use('/api/v1/graph/iql', (req, res) => {
|
|
res.render('graphiql', {
|
|
endpointURL: '/api/v1/graph/ql'
|
|
});
|
|
});
|
|
|
|
// GraphQL documention.
|
|
app.get('/admin/docs', (req, res) => {
|
|
res.render('admin/docs');
|
|
});
|
|
|
|
}
|
|
|
|
//==============================================================================
|
|
// ROUTES
|
|
//==============================================================================
|
|
|
|
app.use('/', require('./routes'));
|
|
|
|
//==============================================================================
|
|
// ERROR HANDLING
|
|
//==============================================================================
|
|
|
|
// Catch 404 and forward to error handler.
|
|
app.use((req, res, next) => {
|
|
next(errors.ErrNotFound);
|
|
});
|
|
|
|
// General error handler. Respond with the message and error if we have it while
|
|
// returning a status code that makes sense.
|
|
app.use('/api', (err, req, res, next) => {
|
|
if (err !== errors.ErrNotFound) {
|
|
if (app.get('env') !== 'test' || enabled('talk:errors')) {
|
|
console.error(err);
|
|
}
|
|
}
|
|
|
|
if (err instanceof errors.APIError) {
|
|
res.status(err.status).json({
|
|
message: err.message,
|
|
error: err
|
|
});
|
|
} else {
|
|
res.status(500).json({});
|
|
}
|
|
});
|
|
|
|
app.use('/', (err, req, res, next) => {
|
|
if (err !== errors.ErrNotFound) {
|
|
console.error(err);
|
|
}
|
|
|
|
i18n.init(req);
|
|
|
|
if (err instanceof errors.APIError) {
|
|
res.status(err.status);
|
|
res.render('error', {
|
|
message: err.message,
|
|
error: app.get('env') === 'development' ? err : {}
|
|
});
|
|
} else {
|
|
res.render('error', {
|
|
message: err.message,
|
|
error: app.get('env') === 'development' ? err : {}
|
|
});
|
|
}
|
|
});
|
|
|
|
module.exports = app;
|