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,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.GuestSubscriber = 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 GuestSubscriber = class GuestSubscriber {
constructor(notificationService, notificationRuleService) {
this.notificationService = notificationService;
this.notificationRuleService = notificationRuleService;
}
async handleGuestInvited(payload) {
const { guest } = payload;
const rules = await this.notificationRuleService.getRulesForEvent(guest.tenantId, 'guest', 'guest.invited');
for (const rule of rules) {
for (const channel of rule.channels) {
await this.notificationService.send(channel, guest.email || guest.phone || '', 'Has sido invitado', `Hola ${guest.name}, has sido invitado al evento.`);
}
}
}
async handleGuestRsvp(payload) {
const { guest } = payload;
const rules = await this.notificationRuleService.getRulesForEvent(guest.tenantId, 'guest', 'guest.rsvp');
for (const rule of rules) {
for (const channel of rule.channels) {
await this.notificationService.send(channel, guest.email || guest.phone || '', 'RSVP actualizado', `Hola ${guest.name}, tu RSVP ha sido actualizado.`);
}
}
}
};
exports.GuestSubscriber = GuestSubscriber;
__decorate([
(0, event_emitter_1.OnEvent)('guest.invited'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object]),
__metadata("design:returntype", Promise)
], GuestSubscriber.prototype, "handleGuestInvited", null);
__decorate([
(0, event_emitter_1.OnEvent)('guest.rsvp'),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object]),
__metadata("design:returntype", Promise)
], GuestSubscriber.prototype, "handleGuestRsvp", null);
exports.GuestSubscriber = GuestSubscriber = __decorate([
(0, common_1.Injectable)(),
__metadata("design:paramtypes", [notification_service_1.NotificationService,
notification_rule_service_1.NotificationRuleService])
], GuestSubscriber);