Add Telemetry (#466)
* Telemetry v1 * Add package-lock.json to gitignore
This commit is contained in:
15
server/src/core/analytics/dto/create-event.input.ts
Normal file
15
server/src/core/analytics/dto/create-event.input.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import { ArgsType, Field } from '@nestjs/graphql';
|
||||
import GraphQLJSON from 'graphql-type-json';
|
||||
import { IsNotEmpty, IsString, IsObject } from 'class-validator';
|
||||
|
||||
@ArgsType()
|
||||
export class CreateEventInput {
|
||||
@Field({ description: 'Type of the event' })
|
||||
@IsNotEmpty()
|
||||
@IsString()
|
||||
type: string;
|
||||
|
||||
@Field(() => GraphQLJSON, { description: 'Event data in JSON format' })
|
||||
@IsObject()
|
||||
data: JSON;
|
||||
}
|
||||
9
server/src/core/analytics/event.entity.ts
Normal file
9
server/src/core/analytics/event.entity.ts
Normal file
@ -0,0 +1,9 @@
|
||||
import { ObjectType, Field, Int } from '@nestjs/graphql';
|
||||
|
||||
@ObjectType()
|
||||
export class Event {
|
||||
@Field(() => Boolean, {
|
||||
description: 'Boolean that confirms query was dispatched',
|
||||
})
|
||||
success: boolean;
|
||||
}
|
||||
10
server/src/core/analytics/event.module.ts
Normal file
10
server/src/core/analytics/event.module.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { EventService } from './event.service';
|
||||
import { EventResolver } from './event.resolver';
|
||||
import { HttpModule } from '@nestjs/axios';
|
||||
|
||||
@Module({
|
||||
providers: [EventResolver, EventService],
|
||||
imports: [HttpModule],
|
||||
})
|
||||
export class EventModule {}
|
||||
19
server/src/core/analytics/event.resolver.spec.ts
Normal file
19
server/src/core/analytics/event.resolver.spec.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { EventResolver } from './event.resolver';
|
||||
import { EventService } from './event.service';
|
||||
|
||||
describe('EventResolver', () => {
|
||||
let resolver: EventResolver;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
providers: [EventResolver, EventService],
|
||||
}).compile();
|
||||
|
||||
resolver = module.get<EventResolver>(EventResolver);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(resolver).toBeDefined();
|
||||
});
|
||||
});
|
||||
24
server/src/core/analytics/event.resolver.ts
Normal file
24
server/src/core/analytics/event.resolver.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Resolver, Mutation, Args, Context } from '@nestjs/graphql';
|
||||
import { EventService } from './event.service';
|
||||
import { Event } from './event.entity';
|
||||
import { CreateEventInput } from './dto/create-event.input';
|
||||
import { OptionalJwtAuthGuard } from 'src/guards/optional-jwt.auth.guard';
|
||||
import { UseGuards } from '@nestjs/common';
|
||||
import { AuthWorkspace } from 'src/decorators/auth-workspace.decorator';
|
||||
import { User, Workspace } from '@prisma/client';
|
||||
import { AuthUser } from 'src/decorators/auth-user.decorator';
|
||||
|
||||
@UseGuards(OptionalJwtAuthGuard)
|
||||
@Resolver(() => Event)
|
||||
export class EventResolver {
|
||||
constructor(private readonly eventService: EventService) {}
|
||||
|
||||
@Mutation(() => Event)
|
||||
createEvent(
|
||||
@Args() createEventInput: CreateEventInput,
|
||||
@AuthWorkspace() workspace: Workspace | undefined,
|
||||
@AuthUser() user: User | undefined,
|
||||
) {
|
||||
return this.eventService.create(createEventInput, user, workspace);
|
||||
}
|
||||
}
|
||||
18
server/src/core/analytics/event.service.spec.ts
Normal file
18
server/src/core/analytics/event.service.spec.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { EventService } from './event.service';
|
||||
|
||||
describe('EventService', () => {
|
||||
let service: EventService;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
providers: [EventService],
|
||||
}).compile();
|
||||
|
||||
service = module.get<EventService>(EventService);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(service).toBeDefined();
|
||||
});
|
||||
});
|
||||
38
server/src/core/analytics/event.service.ts
Normal file
38
server/src/core/analytics/event.service.ts
Normal file
@ -0,0 +1,38 @@
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { CreateEventInput } from './dto/create-event.input';
|
||||
import { HttpService } from '@nestjs/axios';
|
||||
import { anonymize } from 'src/utils/anonymize';
|
||||
import { User, Workspace } from '@prisma/client';
|
||||
|
||||
@Injectable()
|
||||
export class EventService {
|
||||
constructor(private readonly httpService: HttpService) {}
|
||||
|
||||
create(
|
||||
createEventInput: CreateEventInput,
|
||||
user: User | undefined,
|
||||
workspace: Workspace | undefined,
|
||||
) {
|
||||
if (process.env.IS_TELEMETRY_ENABLED === 'false') {
|
||||
return;
|
||||
}
|
||||
|
||||
const data = {
|
||||
type: createEventInput.type,
|
||||
data: {
|
||||
userUUID: user ? anonymize(user.id) : undefined,
|
||||
workspaceUUID: workspace ? anonymize(workspace.id) : undefined,
|
||||
workspaceDomain: workspace ? workspace.domainName : undefined,
|
||||
...createEventInput.data,
|
||||
},
|
||||
};
|
||||
|
||||
this.httpService
|
||||
.post('https://t.twenty.com/api/v1/s2s/event?noToken', data)
|
||||
.subscribe({
|
||||
error: () => null,
|
||||
});
|
||||
|
||||
return { success: true };
|
||||
}
|
||||
}
|
||||
@ -6,6 +6,7 @@ import { PersonModule } from './person/person.module';
|
||||
import { PipelineModule } from './pipeline/pipeline.module';
|
||||
import { AuthModule } from './auth/auth.module';
|
||||
import { WorkspaceModule } from './workspace/workspace.module';
|
||||
import { EventModule } from './analytics/event.module';
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
@ -16,6 +17,7 @@ import { WorkspaceModule } from './workspace/workspace.module';
|
||||
PersonModule,
|
||||
PipelineModule,
|
||||
WorkspaceModule,
|
||||
EventModule,
|
||||
],
|
||||
exports: [
|
||||
AuthModule,
|
||||
@ -25,6 +27,7 @@ import { WorkspaceModule } from './workspace/workspace.module';
|
||||
PersonModule,
|
||||
PipelineModule,
|
||||
WorkspaceModule,
|
||||
EventModule,
|
||||
],
|
||||
})
|
||||
export class CoreModule {}
|
||||
|
||||
Reference in New Issue
Block a user