forked from kriasoft/graphql-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
152 lines (136 loc) · 3.86 KB
/
app.js
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
/**
* Copyright © 2016-present Kriasoft.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
/* @flow */
import path from 'path';
import express from 'express';
import cors from 'cors';
import compression from 'compression';
import cookieParser from 'cookie-parser';
import bodyParser from 'body-parser';
import session from 'express-session';
import connectRedis from 'connect-redis';
import flash from 'express-flash';
import i18next from 'i18next';
import i18nextMiddleware, {
LanguageDetector,
} from 'i18next-express-middleware';
import i18nextBackend from 'i18next-node-fs-backend';
import expressGraphQL from 'express-graphql';
import PrettyError from 'pretty-error';
import { printSchema } from 'graphql';
import email from './email';
import redis from './redis';
import passport from './passport';
import accountRoutes from './routes/account';
import schema from './schema';
import Context from './Context';
import errors from './errors';
i18next
.use(LanguageDetector)
.use(i18nextBackend)
.init({
preload: ['en', 'de'],
ns: ['common', 'email'],
fallbackNS: 'common',
detection: {
lookupCookie: 'lng',
},
backend: {
loadPath: path.resolve(__dirname, '../locales/{{lng}}/{{ns}}.json'),
addPath: path.resolve(
__dirname,
'../locales/{{lng}}/{{ns}}.missing.json',
),
},
});
const app = express();
app.set('trust proxy', 'loopback');
app.use(
cors({
origin(origin, cb) {
const whitelist = process.env.CORS_ORIGIN
? process.env.CORS_ORIGIN.split(',')
: [];
cb(null, whitelist.includes(origin));
},
credentials: true,
}),
);
app.use(compression());
app.use(cookieParser());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.use(
session({
store: new (connectRedis(session))({ client: redis }),
name: 'sid',
resave: true,
saveUninitialized: true,
secret: process.env.SESSION_SECRET,
}),
);
app.use(i18nextMiddleware.handle(i18next));
app.use(passport.initialize());
app.use(passport.session());
app.use(flash());
app.use(accountRoutes);
// The following routes are intended to be used in development mode only
if (process.env.NODE_ENV !== 'production') {
// A route for testing email templates
app.get('/:email(email|emails)/:template', (req, res) => {
const message = email.render(req.params.template, { t: req.t, v: 123 });
res.send(message.html);
});
// A route for testing authentication/authorization
app.get('/', (req, res) => {
if (req.user) {
res.send(
`<p>${req.t('Welcome, {{user}}!', {
user: req.user.displayName,
})} (<a href="javascript:fetch('/login/clear', { method: 'POST', credentials: 'include' }).then(() => window.location = '/')">${req.t(
'log out',
)}</a>)</p>`,
);
} else {
res.send(
`<p>${req.t('Welcome, guest!')} (<a href="/login/facebook">${req.t(
'sign in',
)}</a>)</p>`,
);
}
});
}
app.get('/graphql/schema', (req, res) => {
res.type('text/plain').send(printSchema(schema));
});
app.use(
'/graphql',
expressGraphQL(req => ({
schema,
context: new Context(req),
graphiql: process.env.NODE_ENV !== 'production',
pretty: process.env.NODE_ENV !== 'production',
formatError: (error: any) => {
errors.report(error.originalError || error);
return {
message: error.message,
code: error.originalError && error.originalError.code,
state: error.originalError && error.originalError.state,
locations: error.locations,
path: error.path,
};
},
})),
);
const pe = new PrettyError();
pe.skipNodeFiles();
pe.skipPackage('express');
app.use((err, req, res, next) => {
process.stderr.write(pe.render(err));
next();
});
export default app;