- Add getUncommittedEvents() and commit() to AggregateRoot base class - Create 6 new domain events: SubscriptionExpired, SubscriptionRenewed, ListingStatusChanged, UserKycUpdated, UserDeactivated, PaymentRefunded - Wire events into entity state changes: SubscriptionEntity (markExpired, renewPeriod), ListingEntity (all transitions), UserEntity (KYC, deactivate), PaymentEntity (markRefunded) - Add 7 new event listeners across notifications, admin, and search modules (25 total @OnEvent handlers) - Fix ReviewDeletedListener to handle LISTING target type - Restore watcher notifications in ListingSoldListener - Update barrel exports and module registrations Resolves: TEC-1564 Co-Authored-By: Paperclip <noreply@paperclip.ing>
68 lines
3.2 KiB
TypeScript
68 lines
3.2 KiB
TypeScript
import { Module } from '@nestjs/common';
|
|
import { CqrsModule } from '@nestjs/cqrs';
|
|
import { SendNotificationHandler } from './application/commands/send-notification/send-notification.handler';
|
|
import { AgentVerifiedListener } from './application/listeners/agent-verified.listener';
|
|
import { InquiryReceivedListener } from './application/listeners/inquiry-received.listener';
|
|
import { ListingApprovedListener } from './application/listeners/listing-approved.listener';
|
|
import { ListingRejectedListener } from './application/listeners/listing-rejected.listener';
|
|
import { ListingSoldListener } from './application/listeners/listing-sold.listener';
|
|
import { PaymentCompletedListener } from './application/listeners/payment-completed.listener';
|
|
import { PaymentFailedListener } from './application/listeners/payment-failed.listener';
|
|
import { PaymentRefundedListener } from './application/listeners/payment-refunded.listener';
|
|
import { QuotaExceededListener } from './application/listeners/quota-exceeded.listener';
|
|
import { SubscriptionExpiredListener } from './application/listeners/subscription-expired.listener';
|
|
import { SubscriptionExpiringListener } from './application/listeners/subscription-expiring.listener';
|
|
import { SubscriptionRenewedListener } from './application/listeners/subscription-renewed.listener';
|
|
import { UserKycUpdatedListener } from './application/listeners/user-kyc-updated.listener';
|
|
import { UserRegisteredListener } from './application/listeners/user-registered.listener';
|
|
import { NOTIFICATION_PREFERENCE_REPOSITORY } from './domain/repositories/notification-preference.repository';
|
|
import { NOTIFICATION_REPOSITORY } from './domain/repositories/notification.repository';
|
|
import { PrismaNotificationPreferenceRepository } from './infrastructure/repositories/prisma-notification-preference.repository';
|
|
import { PrismaNotificationRepository } from './infrastructure/repositories/prisma-notification.repository';
|
|
import { EmailService } from './infrastructure/services/email.service';
|
|
import { FcmService } from './infrastructure/services/fcm.service';
|
|
import { TemplateService } from './infrastructure/services/template.service';
|
|
import { NotificationsController } from './presentation/controllers/notifications.controller';
|
|
|
|
const CommandHandlers = [SendNotificationHandler];
|
|
|
|
const EventListeners = [
|
|
UserRegisteredListener,
|
|
AgentVerifiedListener,
|
|
QuotaExceededListener,
|
|
ListingApprovedListener,
|
|
ListingRejectedListener,
|
|
PaymentCompletedListener,
|
|
PaymentFailedListener,
|
|
PaymentRefundedListener,
|
|
SubscriptionExpiringListener,
|
|
SubscriptionExpiredListener,
|
|
SubscriptionRenewedListener,
|
|
InquiryReceivedListener,
|
|
ListingSoldListener,
|
|
UserKycUpdatedListener,
|
|
];
|
|
|
|
@Module({
|
|
imports: [CqrsModule],
|
|
controllers: [NotificationsController],
|
|
providers: [
|
|
// Repositories
|
|
{ provide: NOTIFICATION_REPOSITORY, useClass: PrismaNotificationRepository },
|
|
{ provide: NOTIFICATION_PREFERENCE_REPOSITORY, useClass: PrismaNotificationPreferenceRepository },
|
|
|
|
// Services
|
|
EmailService,
|
|
FcmService,
|
|
TemplateService,
|
|
|
|
// CQRS
|
|
...CommandHandlers,
|
|
|
|
// Event Listeners
|
|
...EventListeners,
|
|
],
|
|
exports: [EmailService, FcmService, TemplateService],
|
|
})
|
|
export class NotificationsModule {}
|