mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-20 12:56:20 +00:00
7520e9012c
* Refactor watch-contract CLI to cli package * Use watch-contract from cli in eden and erc721 watchers * Use watch-contract from cli in all watchers * Pass an object containing clients to refactored CLI Co-authored-by: nabarun <nabarun@deepstacksoft.com>
81 lines
2.5 KiB
TypeScript
81 lines
2.5 KiB
TypeScript
import { Application } from 'express';
|
|
import { ApolloServer } from 'apollo-server-express';
|
|
import { createServer } from 'http';
|
|
import { WebSocketServer } from 'ws';
|
|
import { useServer } from 'graphql-ws/lib/use/ws';
|
|
import { ApolloServerPluginDrainHttpServer, ApolloServerPluginLandingPageLocalDefault } from 'apollo-server-core';
|
|
import debug from 'debug';
|
|
import responseCachePlugin from 'apollo-server-plugin-response-cache';
|
|
import { InMemoryLRUCache } from '@apollo/utils.keyvaluecache';
|
|
import queue from 'express-queue';
|
|
|
|
import { TypeSource } from '@graphql-tools/utils';
|
|
import { makeExecutableSchema } from '@graphql-tools/schema';
|
|
|
|
import { DEFAULT_MAX_GQL_CACHE_SIZE } from './constants';
|
|
import { ServerConfig } from './config';
|
|
|
|
const log = debug('vulcanize:server');
|
|
|
|
export const createAndStartServer = async (
|
|
app: Application,
|
|
typeDefs: TypeSource,
|
|
resolvers: any,
|
|
serverConfig: ServerConfig
|
|
): Promise<ApolloServer> => {
|
|
const { host, port, gqlCache: gqlCacheConfig, maxSimultaneousRequests, maxRequestQueueLimit } = serverConfig;
|
|
|
|
app.use(queue({ activeLimit: maxSimultaneousRequests || 1, queuedLimit: maxRequestQueueLimit || -1 }));
|
|
|
|
// Create HTTP server
|
|
const httpServer = createServer(app);
|
|
|
|
// Create the schema
|
|
const schema = makeExecutableSchema({ typeDefs, resolvers });
|
|
|
|
// Create our WebSocket server using the HTTP server we just set up.
|
|
const wsServer = new WebSocketServer({
|
|
server: httpServer,
|
|
path: '/graphql'
|
|
});
|
|
const serverCleanup = useServer({ schema }, wsServer);
|
|
|
|
// Setup in-memory GQL cache
|
|
let gqlCache;
|
|
if (gqlCacheConfig && gqlCacheConfig.enabled) {
|
|
const maxSize = gqlCacheConfig.maxCacheSize ? gqlCacheConfig.maxCacheSize : DEFAULT_MAX_GQL_CACHE_SIZE;
|
|
gqlCache = new InMemoryLRUCache({ maxSize });
|
|
}
|
|
|
|
const server = new ApolloServer({
|
|
schema,
|
|
csrfPrevention: true,
|
|
cache: gqlCache,
|
|
plugins: [
|
|
// Proper shutdown for the HTTP server
|
|
ApolloServerPluginDrainHttpServer({ httpServer }),
|
|
// Proper shutdown for the WebSocket server
|
|
{
|
|
async serverWillStart () {
|
|
return {
|
|
async drainServer () {
|
|
await serverCleanup.dispose();
|
|
}
|
|
};
|
|
}
|
|
},
|
|
// GQL response cache plugin
|
|
responseCachePlugin(),
|
|
ApolloServerPluginLandingPageLocalDefault({ embed: true })
|
|
]
|
|
});
|
|
await server.start();
|
|
server.applyMiddleware({ app });
|
|
|
|
httpServer.listen(port, host, () => {
|
|
log(`Server is listening on ${host}:${port}${server.graphqlPath}`);
|
|
});
|
|
|
|
return server;
|
|
};
|