"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.TodoSubscriber = void 0; const event_emitter_1 = require("@nestjs/event-emitter"); const common_1 = require("@nestjs/common"); const notification_service_1 = require("../../core/services/notification.service"); const notification_rule_service_1 = require("../../core/services/notification-rule.service"); let TodoSubscriber = class TodoSubscriber { constructor(notificationService, notificationRuleService) { this.notificationService = notificationService; this.notificationRuleService = notificationRuleService; } async handleTodoCreated(payload) { const { todo } = payload; const rules = await this.notificationRuleService.getRulesForEvent(todo.tenantId, 'todo', 'todo.created'); for (const rule of rules) { for (const channel of rule.channels) { await this.notificationService.send(channel, todo.metadata?.notifyTo || '', 'Nueva tarea creada', `Se creó la tarea: ${todo.title}`); } } } async handleTodoCompleted(payload) { const { todo } = payload; const rules = await this.notificationRuleService.getRulesForEvent(todo.tenantId, 'todo', 'todo.completed'); for (const rule of rules) { for (const channel of rule.channels) { await this.notificationService.send(channel, todo.metadata?.notifyTo || '', 'Tarea completada', `La tarea "${todo.title}" se ha marcado como completada.`); } } } }; exports.TodoSubscriber = TodoSubscriber; __decorate([ (0, event_emitter_1.OnEvent)('todo.created'), __metadata("design:type", Function), __metadata("design:paramtypes", [Object]), __metadata("design:returntype", Promise) ], TodoSubscriber.prototype, "handleTodoCreated", null); __decorate([ (0, event_emitter_1.OnEvent)('todo.completed'), __metadata("design:type", Function), __metadata("design:paramtypes", [Object]), __metadata("design:returntype", Promise) ], TodoSubscriber.prototype, "handleTodoCompleted", null); exports.TodoSubscriber = TodoSubscriber = __decorate([ (0, common_1.Injectable)(), __metadata("design:paramtypes", [notification_service_1.NotificationService, notification_rule_service_1.NotificationRuleService]) ], TodoSubscriber);