69 lines
2.5 KiB
TypeScript
69 lines
2.5 KiB
TypeScript
import type { Logger } from '@core/shared/domain/Logger';
|
|
import type { UseCase } from '@core/shared/application/UseCase';
|
|
import { Result } from '@core/shared/domain/Result';
|
|
import type { ApplicationErrorCode } from '@core/shared/errors/ApplicationErrorCode';
|
|
import { EngagementEvent } from '../../domain/entities/EngagementEvent';
|
|
import type { EngagementRepository } from '../../domain/repositories/EngagementRepository';
|
|
import type { EngagementAction, EngagementEntityType } from '../../domain/types/EngagementEvent';
|
|
|
|
export interface RecordEngagementInput {
|
|
action: EngagementAction;
|
|
entityType: EngagementEntityType;
|
|
entityId: string;
|
|
actorId?: string;
|
|
actorType: 'anonymous' | 'driver' | 'sponsor';
|
|
sessionId: string;
|
|
metadata?: Record<string, string | number | boolean>;
|
|
}
|
|
|
|
export interface RecordEngagementOutput {
|
|
eventId: string;
|
|
engagementWeight: number;
|
|
}
|
|
|
|
export type RecordEngagementErrorCode = 'REPOSITORY_ERROR';
|
|
|
|
export class RecordEngagementUseCase implements UseCase<RecordEngagementInput, RecordEngagementOutput, RecordEngagementErrorCode> {
|
|
constructor(
|
|
private readonly engagementRepository: EngagementRepository,
|
|
private readonly logger: Logger,
|
|
) {}
|
|
|
|
async execute(input: RecordEngagementInput): Promise<Result<RecordEngagementOutput, ApplicationErrorCode<RecordEngagementErrorCode, { message: string }>>> {
|
|
try {
|
|
const engagementEvent = EngagementEvent.create({
|
|
id: crypto.randomUUID(),
|
|
action: input.action,
|
|
entityType: input.entityType,
|
|
entityId: input.entityId,
|
|
actorType: input.actorType,
|
|
sessionId: input.sessionId,
|
|
...(input.actorId !== undefined && { actorId: input.actorId }),
|
|
...(input.metadata !== undefined && { metadata: input.metadata }),
|
|
});
|
|
|
|
await this.engagementRepository.save(engagementEvent);
|
|
|
|
const resultModel: RecordEngagementOutput = {
|
|
eventId: engagementEvent.id,
|
|
engagementWeight: engagementEvent.getEngagementWeight(),
|
|
};
|
|
|
|
this.logger.info('Engagement event recorded', {
|
|
engagementId: engagementEvent.id,
|
|
action: input.action,
|
|
entityId: input.entityId,
|
|
entityType: input.entityType,
|
|
});
|
|
|
|
return Result.ok(resultModel);
|
|
} catch (error) {
|
|
const err = error as Error;
|
|
this.logger.error('Failed to record engagement event', err, { input });
|
|
return Result.err({
|
|
code: 'REPOSITORY_ERROR',
|
|
details: { message: err.message ?? 'Failed to record engagement event' },
|
|
});
|
|
}
|
|
}
|
|
} |