-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathapp.ts
129 lines (117 loc) · 4.52 KB
/
app.ts
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
import { loadRestRoutes } from './modules/common/loadRestRoutes';
import { env } from './app/env';
import createExpressApp from 'express';
import { corsMiddleware } from './app/middleware/corsMiddleware';
import { contextMiddleware } from './app/middleware/contextMiddleware';
import { sessionMiddleware } from './app/middleware/sessionMiddleware';
import * as http from 'http';
import { ApolloServer } from 'apollo-server-express';
import {
ApolloServerPluginDrainHttpServer,
ApolloServerPluginLandingPageGraphQLPlayground,
ApolloServerPluginUsageReporting,
} from 'apollo-server-core';
import { schema } from './graphql_schema_generated';
import { resolvers } from './app/gql/resolvers';
import helmet from 'helmet';
import GraphQLJSON from 'graphql-type-json';
import * as Sentry from '@sentry/node';
import { ProfilingIntegration } from '@sentry/profiling-node';
import { sentryPlugin } from './app/gql/sentry-apollo-plugin';
import { startWorker } from './worker/worker';
import { startScheduler } from './worker/scheduler';
import { prisma } from './prisma/prisma-client';
async function startServer() {
const app = createExpressApp();
Sentry.init({
dsn: env.SENTRY_DSN,
environment: `multichain-${env.DEPLOYMENT_ENV}`,
enabled: env.NODE_ENV === 'production',
ignoreErrors: [/.*error: Provide.*chain.*param/],
integrations: [
// new Sentry.Integrations.Apollo(),
// new Sentry.Integrations.GraphQL(),
// new Sentry.Integrations.Prisma({ client: prisma }),
new Sentry.Integrations.Express({ app }),
new Sentry.Integrations.Http({ tracing: true }),
new ProfilingIntegration(),
],
tracesSampleRate: 0.005,
profilesSampleRate: 0.1,
beforeSend(event, hint) {
const error = hint.originalException as string;
if (error?.toString().includes('Unknown token:')) {
console.log(`The following error occurred but was not sent to Sentry: ${error}`);
return null;
}
if (
error?.toString().includes('SOR: invalid swap amount input') &&
event.request?.headers &&
event.request.headers['user-agent'].includes('Python')
) {
console.log(`The following error occurred but was not sent to Sentry: ${error}`);
return null;
}
if (error?.toString().includes('No potential swap paths provided')) {
console.log(`The following error occurred but was not sent to Sentry: ${error}`);
return null;
}
return event;
},
});
app.use(Sentry.Handlers.requestHandler());
app.use(Sentry.Handlers.tracingHandler());
// app.use(Sentry.Handlers.errorHandler());
app.use(helmet.dnsPrefetchControl());
app.use(helmet.expectCt());
app.use(helmet.frameguard());
app.use(helmet.hidePoweredBy());
app.use(helmet.hsts());
app.use(helmet.ieNoOpen());
app.use(helmet.noSniff());
app.use(helmet.originAgentCluster());
app.use(helmet.permittedCrossDomainPolicies());
app.use(helmet.referrerPolicy());
app.use(helmet.xssFilter());
app.use(corsMiddleware);
app.use(contextMiddleware);
app.use(sessionMiddleware);
loadRestRoutes(app);
const httpServer = http.createServer(app);
const plugins = [
ApolloServerPluginDrainHttpServer({ httpServer }),
ApolloServerPluginLandingPageGraphQLPlayground({
settings: { 'schema.polling.interval': 20000 },
}),
sentryPlugin,
];
if (process.env.APOLLO_SCHEMA_REPORTING && process.env.APOLLO_SCHEMA_REPORTING === 'true') {
plugins.push(
ApolloServerPluginUsageReporting({
sendVariableValues: { all: true },
sendHeaders: { all: true },
}),
);
}
const server = new ApolloServer({
resolvers: {
JSON: GraphQLJSON,
...resolvers,
},
typeDefs: schema,
introspection: true,
plugins,
context: ({ req }) => req.context,
});
await server.start();
server.applyMiddleware({ app });
await new Promise<void>((resolve) => httpServer.listen({ port: env.PORT }, resolve));
console.log(`🚀 Server ready at http://localhost:${env.PORT}${server.graphqlPath}`);
}
if (process.env.WORKER === 'true') {
startWorker();
} else if (process.env.SCHEDULER === 'true') {
startScheduler();
} else {
startServer();
}