8b4b9ef8da
Forcing "type" to be explicit, works best will rollup on the frontend to exclude depdendencies
183 lines
6.0 KiB
TypeScript
183 lines
6.0 KiB
TypeScript
import { Injectable, UnauthorizedException } from '@nestjs/common';
|
|
import { ContextIdFactory, ModuleRef } from '@nestjs/core';
|
|
import { type GqlOptionsFactory } from '@nestjs/graphql';
|
|
|
|
import {
|
|
type YogaDriverConfig,
|
|
type YogaDriverServerContext,
|
|
} from '@graphql-yoga/nestjs';
|
|
import * as Sentry from '@sentry/node';
|
|
import { GraphQLError, GraphQLSchema } from 'graphql';
|
|
import GraphQLJSON from 'graphql-type-json';
|
|
import {
|
|
type GraphQLSchemaWithContext,
|
|
type YogaInitialContext,
|
|
} from 'graphql-yoga';
|
|
import { JsonWebTokenError, TokenExpiredError } from 'jsonwebtoken';
|
|
|
|
import { NodeEnvironment } from 'src/engine/core-modules/twenty-config/interfaces/node-environment.interface';
|
|
|
|
import { useThrottler } from 'src/engine/api/graphql/graphql-config/hooks/use-throttler';
|
|
import { WorkspaceSchemaFactory } from 'src/engine/api/graphql/workspace-schema.factory';
|
|
import { type AuthContext } from 'src/engine/core-modules/auth/types/auth-context.type';
|
|
import { CoreEngineModule } from 'src/engine/core-modules/core-engine.module';
|
|
import { ExceptionHandlerService } from 'src/engine/core-modules/exception-handler/exception-handler.service';
|
|
import { useSentryTracing } from 'src/engine/core-modules/exception-handler/hooks/use-sentry-tracing';
|
|
import { useGraphQLErrorHandlerHook } from 'src/engine/core-modules/graphql/hooks/use-graphql-error-handler.hook';
|
|
import { MetricsService } from 'src/engine/core-modules/metrics/metrics.service';
|
|
import { TwentyConfigService } from 'src/engine/core-modules/twenty-config/twenty-config.service';
|
|
import { type User } from 'src/engine/core-modules/user/user.entity';
|
|
import { type Workspace } from 'src/engine/core-modules/workspace/workspace.entity';
|
|
import { handleExceptionAndConvertToGraphQLError } from 'src/engine/utils/global-exception-handler.util';
|
|
import { renderApolloPlayground } from 'src/engine/utils/render-apollo-playground.util';
|
|
|
|
export interface GraphQLContext extends YogaDriverServerContext<'express'> {
|
|
user?: User;
|
|
workspace?: Workspace;
|
|
}
|
|
|
|
@Injectable()
|
|
export class GraphQLConfigService
|
|
implements GqlOptionsFactory<YogaDriverConfig<'express'>>
|
|
{
|
|
constructor(
|
|
private readonly exceptionHandlerService: ExceptionHandlerService,
|
|
private readonly twentyConfigService: TwentyConfigService,
|
|
private readonly moduleRef: ModuleRef,
|
|
private readonly metricsService: MetricsService,
|
|
) {}
|
|
|
|
createGqlOptions(): YogaDriverConfig {
|
|
const isDebugMode =
|
|
this.twentyConfigService.get('NODE_ENV') === NodeEnvironment.DEVELOPMENT;
|
|
const plugins = [
|
|
useThrottler({
|
|
ttl: this.twentyConfigService.get('API_RATE_LIMITING_TTL'),
|
|
limit: this.twentyConfigService.get('API_RATE_LIMITING_LIMIT'),
|
|
identifyFn: (context) => {
|
|
return context.req.user?.id ?? context.req.ip ?? 'anonymous';
|
|
},
|
|
}),
|
|
useGraphQLErrorHandlerHook({
|
|
metricsService: this.metricsService,
|
|
exceptionHandlerService: this.exceptionHandlerService,
|
|
twentyConfigService: this.twentyConfigService,
|
|
}),
|
|
];
|
|
|
|
if (Sentry.isInitialized()) {
|
|
plugins.push(useSentryTracing());
|
|
}
|
|
|
|
const config: YogaDriverConfig = {
|
|
autoSchemaFile: true,
|
|
include: [CoreEngineModule],
|
|
conditionalSchema: async (context) => {
|
|
let user: User | null | undefined;
|
|
let workspace: Workspace | undefined;
|
|
|
|
try {
|
|
const {
|
|
user,
|
|
workspace,
|
|
apiKey,
|
|
workspaceMemberId,
|
|
userWorkspaceId,
|
|
} = context.req;
|
|
|
|
if (!workspace) {
|
|
return new GraphQLSchema({});
|
|
}
|
|
|
|
return await this.createSchema(context, {
|
|
user,
|
|
workspace,
|
|
apiKey,
|
|
workspaceMemberId,
|
|
userWorkspaceId,
|
|
});
|
|
} catch (error) {
|
|
if (error instanceof UnauthorizedException) {
|
|
throw new GraphQLError('Unauthenticated', {
|
|
extensions: {
|
|
code: 'UNAUTHENTICATED',
|
|
},
|
|
});
|
|
}
|
|
|
|
if (error instanceof JsonWebTokenError) {
|
|
//mockedUserJWT
|
|
throw new GraphQLError('Unauthenticated', {
|
|
extensions: {
|
|
code: 'UNAUTHENTICATED',
|
|
},
|
|
});
|
|
}
|
|
|
|
if (error instanceof TokenExpiredError) {
|
|
throw new GraphQLError('Unauthenticated', {
|
|
extensions: {
|
|
code: 'UNAUTHENTICATED',
|
|
},
|
|
});
|
|
}
|
|
|
|
throw handleExceptionAndConvertToGraphQLError(
|
|
error,
|
|
this.exceptionHandlerService,
|
|
user
|
|
? {
|
|
id: user.id,
|
|
email: user.email,
|
|
firstName: user.firstName,
|
|
lastName: user.lastName,
|
|
}
|
|
: undefined,
|
|
workspace
|
|
? {
|
|
id: workspace.id,
|
|
displayName: workspace.displayName,
|
|
activationStatus: workspace.activationStatus,
|
|
}
|
|
: undefined,
|
|
);
|
|
}
|
|
},
|
|
resolvers: { JSON: GraphQLJSON },
|
|
plugins: plugins,
|
|
};
|
|
|
|
if (isDebugMode) {
|
|
config.renderGraphiQL = () => {
|
|
return renderApolloPlayground();
|
|
};
|
|
}
|
|
|
|
return config;
|
|
}
|
|
|
|
async createSchema(
|
|
context: YogaDriverServerContext<'express'> & YogaInitialContext,
|
|
data: AuthContext,
|
|
): Promise<GraphQLSchemaWithContext<YogaDriverServerContext<'express'>>> {
|
|
// Create a new contextId for each request
|
|
const contextId = ContextIdFactory.create();
|
|
|
|
if (this.moduleRef.registerRequestByContextId) {
|
|
// Register the request in the contextId
|
|
this.moduleRef.registerRequestByContextId(context.req, contextId);
|
|
}
|
|
|
|
// Resolve the WorkspaceSchemaFactory for the contextId
|
|
const workspaceFactory = await this.moduleRef.resolve(
|
|
WorkspaceSchemaFactory,
|
|
contextId,
|
|
{
|
|
strict: false,
|
|
},
|
|
);
|
|
|
|
return await workspaceFactory.createGraphQLSchema(data);
|
|
}
|
|
}
|