mirror of
https://github.com/cerc-io/watcher-ts
synced 2026-03-27 18:34:13 +00:00
89 lines
2.4 KiB
TypeScript
89 lines
2.4 KiB
TypeScript
//
|
|
// Copyright 2021 Vulcanize, Inc.
|
|
//
|
|
|
|
import assert from 'assert';
|
|
import 'reflect-metadata';
|
|
import express, { Application } from 'express';
|
|
import { ApolloServer, PubSub } from 'apollo-server-express';
|
|
import yargs from 'yargs';
|
|
import { hideBin } from 'yargs/helpers';
|
|
import debug from 'debug';
|
|
import { createServer } from 'http';
|
|
|
|
import { getCache } from '@cerc-io/cache';
|
|
import { EthClient } from '@cerc-io/ipld-eth-client';
|
|
import { DEFAULT_CONFIG_PATH, getConfig } from '@cerc-io/util';
|
|
|
|
import typeDefs from './schema';
|
|
|
|
import { createResolvers } from './resolvers';
|
|
import { Indexer } from './indexer';
|
|
import { EventWatcher } from './events';
|
|
|
|
const log = debug('vulcanize:server');
|
|
|
|
export const main = async (): Promise<any> => {
|
|
const argv = await yargs(hideBin(process.argv))
|
|
.option('f', {
|
|
alias: 'config-file',
|
|
demandOption: true,
|
|
describe: 'configuration file path (toml)',
|
|
type: 'string',
|
|
default: DEFAULT_CONFIG_PATH
|
|
})
|
|
.argv;
|
|
|
|
const config = await getConfig(argv.f);
|
|
|
|
assert(config.server, 'Missing server config');
|
|
|
|
const { host, port } = config.server;
|
|
|
|
const { upstream } = config;
|
|
|
|
assert(upstream, 'Missing upstream config');
|
|
const { ethServer: { gqlApiEndpoint }, cache: cacheConfig } = upstream;
|
|
assert(gqlApiEndpoint, 'Missing upstream ethServer.gqlApiEndpoint');
|
|
|
|
const cache = await getCache(cacheConfig);
|
|
const ethClient = new EthClient({
|
|
gqlEndpoint: gqlApiEndpoint,
|
|
cache
|
|
});
|
|
|
|
const indexer = new Indexer(config, ethClient);
|
|
|
|
// Note: In-memory pubsub works fine for now, as each watcher is a single process anyway.
|
|
// Later: https://www.apollographql.com/docs/apollo-server/data/subscriptions/#production-pubsub-libraries
|
|
const pubsub = new PubSub();
|
|
const eventWatcher = new EventWatcher(ethClient, indexer, pubsub);
|
|
await eventWatcher.start();
|
|
|
|
const resolvers = await createResolvers(eventWatcher);
|
|
|
|
const app: Application = express();
|
|
const server = new ApolloServer({
|
|
typeDefs,
|
|
resolvers
|
|
});
|
|
|
|
await server.start();
|
|
server.applyMiddleware({ app });
|
|
|
|
const httpServer = createServer(app);
|
|
server.installSubscriptionHandlers(httpServer);
|
|
|
|
httpServer.listen(port, host, () => {
|
|
log(`Server is listening on host ${host} port ${port}`);
|
|
});
|
|
|
|
return { app, server };
|
|
};
|
|
|
|
main().then(() => {
|
|
log('Starting server...');
|
|
}).catch(err => {
|
|
log(err);
|
|
});
|