Initial commit - Event Planner application
This commit is contained in:
10
dist/guest/subscribers/guest.subscriber.d.ts
vendored
Normal file
10
dist/guest/subscribers/guest.subscriber.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { NotificationService } from '../../core/services/notification.service';
|
||||
import { NotificationRuleService } from '../../core/services/notification-rule.service';
|
||||
export declare class GuestSubscriber {
|
||||
private readonly notificationService;
|
||||
private readonly notificationRuleService;
|
||||
constructor(notificationService: NotificationService, notificationRuleService: NotificationRuleService);
|
||||
handleGuestInvited(payload: any): Promise<void>;
|
||||
handleGuestRsvp(payload: any): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=guest.subscriber.d.ts.map
|
||||
1
dist/guest/subscribers/guest.subscriber.d.ts.map
vendored
Normal file
1
dist/guest/subscribers/guest.subscriber.d.ts.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"guest.subscriber.d.ts","sourceRoot":"","sources":["../../../src/guest/subscribers/guest.subscriber.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAC/E,OAAO,EAAE,uBAAuB,EAAE,MAAM,+CAA+C,CAAC;AAExF,qBACa,eAAe;IAExB,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IACpC,OAAO,CAAC,QAAQ,CAAC,uBAAuB;gBADvB,mBAAmB,EAAE,mBAAmB,EACxC,uBAAuB,EAAE,uBAAuB;IAI7D,kBAAkB,CAAC,OAAO,EAAE,GAAG;IAgB/B,eAAe,CAAC,OAAO,EAAE,GAAG;CAcnC"}
|
||||
58
dist/guest/subscribers/guest.subscriber.js
vendored
Normal file
58
dist/guest/subscribers/guest.subscriber.js
vendored
Normal 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);
|
||||
Reference in New Issue
Block a user