Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { NotificationService } from '../../core/services/notification.service';
import { NotificationRuleService } from '../../core/services/notification-rule.service';
export declare class GiftSubscriber {
private readonly notificationService;
private readonly notificationRuleService;
constructor(notificationService: NotificationService, notificationRuleService: NotificationRuleService);
handleGiftCreated(payload: any): Promise<void>;
handleGiftContribution(payload: any): Promise<void>;
}
//# sourceMappingURL=gift.subscriber.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"gift.subscriber.d.ts","sourceRoot":"","sources":["../../../src/gift/subscribers/gift.subscriber.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAC/E,OAAO,EAAE,uBAAuB,EAAE,MAAM,+CAA+C,CAAC;AAExF,qBACa,cAAc;IAEvB,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IACpC,OAAO,CAAC,QAAQ,CAAC,uBAAuB;gBADvB,mBAAmB,EAAE,mBAAmB,EACxC,uBAAuB,EAAE,uBAAuB;IAI7D,iBAAiB,CAAC,OAAO,EAAE,GAAG;IAgB9B,sBAAsB,CAAC,OAAO,EAAE,GAAG;CAc1C"}

View File

@@ -0,0 +1,58 @@
"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.GiftSubscriber = 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 GiftSubscriber = class GiftSubscriber {
constructor(notificationService, notificationRuleService) {
this.notificationService = notificationService;
this.notificationRuleService = notificationRuleService;
}
async handleGiftCreated(payload) {
const { gift } = payload;
const rules = await this.notificationRuleService.getRulesForEvent(gift.tenantId, 'gift', 'gift.created');
for (const rule of rules) {
for (const channel of rule.channels) {
await this.notificationService.send(channel, gift.metadata?.notifyTo || '', 'Nuevo regalo creado', `Se ha creado el regalo: ${gift.name}`);
}
}
}
async handleGiftContribution(payload) {
const { contribution } = payload;
const rules = await this.notificationRuleService.getRulesForEvent(contribution.tenantId, 'gift', 'gift.contribution');
for (const rule of rules) {
for (const channel of rule.channels) {
await this.notificationService.send(channel, contribution.metadata?.notifyTo || '', 'Nuevo aporte a regalo', `Se ha registrado un aporte de ${contribution.amount} al regalo (${contribution.giftId}).`);
}
}
}
};
exports.GiftSubscriber = GiftSubscriber;
__decorate([
(0, event_emitter_1.OnEvent)('gift.created'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object]),
__metadata("design:returntype", Promise)
], GiftSubscriber.prototype, "handleGiftCreated", null);
__decorate([
(0, event_emitter_1.OnEvent)('gift.contribution'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object]),
__metadata("design:returntype", Promise)
], GiftSubscriber.prototype, "handleGiftContribution", null);
exports.GiftSubscriber = GiftSubscriber = __decorate([
(0, common_1.Injectable)(),
__metadata("design:paramtypes", [notification_service_1.NotificationService,
notification_rule_service_1.NotificationRuleService])
], GiftSubscriber);