2022-06-29 09:23:07 +00:00
|
|
|
import { Injectable, Inject } from '@nestjs/common';
|
2022-06-29 02:30:10 +00:00
|
|
|
import { ClientProxy } from "@nestjs/microservices";
|
|
|
|
import { map } from "rxjs/operators";
|
|
|
|
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class AppService {
|
|
|
|
constructor(
|
2022-06-29 09:23:07 +00:00
|
|
|
@Inject('SERVICIO_USUARIOS') private readonly clientUserApp: ClientProxy,
|
2022-06-29 10:12:27 +00:00
|
|
|
@Inject('SERVICIO_COMUNIDADES') private readonly clientCommunityApp: ClientProxy,
|
2022-07-01 07:39:52 +00:00
|
|
|
@Inject('SERVICIO_AREAS_COMUNES') private readonly clientCommonAreaApp: ClientProxy,
|
2022-07-01 09:09:48 +00:00
|
|
|
@Inject('SERVICIO_INVITADOS') private readonly clientGuestApp: ClientProxy,
|
2022-07-01 09:48:27 +00:00
|
|
|
@Inject('SERVICIO_PAGOS') private readonly clientPaymentApp: ClientProxy,
|
2022-07-01 10:15:02 +00:00
|
|
|
@Inject('SERVICIO_RESERVACIONES') private readonly clientReservationApp: ClientProxy,
|
2022-07-01 20:53:38 +00:00
|
|
|
@Inject('SERVICIO_POSTS') private readonly clientPostApp: ClientProxy,
|
2022-07-01 23:11:32 +00:00
|
|
|
@Inject('SERVICIO_REPORTES') private readonly clientReportApp: ClientProxy,
|
2022-07-01 09:59:39 +00:00
|
|
|
@Inject('SERVICIO_NOTIFICACIONES') private readonly clientNotificationtApp: ClientProxy,
|
2022-07-01 01:42:50 +00:00
|
|
|
) { }
|
|
|
|
|
|
|
|
// ====================== USERS ===============================
|
|
|
|
|
2022-06-29 09:23:07 +00:00
|
|
|
//POST parameter from API
|
|
|
|
createUser(dni: string, name: string, last_name: string, email: string, phone: number
|
2022-07-01 01:42:50 +00:00
|
|
|
, password: string, user_type: string, status: string, date_entry: Date, community_id: string) {
|
2022-06-29 09:23:07 +00:00
|
|
|
const pattern = { cmd: 'createUser' };
|
2022-07-01 01:42:50 +00:00
|
|
|
const payload = {
|
|
|
|
dni: dni, name: name, last_name: last_name, email: email, phone: phone,
|
2022-07-01 07:39:52 +00:00
|
|
|
password: password, user_type: user_type, status: status, date_entry: date_entry,
|
2022-07-01 01:42:50 +00:00
|
|
|
community_id: community_id
|
|
|
|
};
|
2022-06-29 09:23:07 +00:00
|
|
|
return this.clientUserApp
|
2022-07-01 01:42:50 +00:00
|
|
|
.send<string>(pattern, payload)
|
2022-06-29 09:23:07 +00:00
|
|
|
.pipe(
|
2022-07-01 01:42:50 +00:00
|
|
|
map((message: string) => ({ message })),
|
2022-06-29 09:23:07 +00:00
|
|
|
);
|
|
|
|
}
|
2022-06-29 02:30:10 +00:00
|
|
|
|
2022-07-01 01:42:50 +00:00
|
|
|
//POST parameter from API
|
|
|
|
createAdminSystem(dni: string, name: string, last_name: string, email: string, phone: number
|
|
|
|
, password: string, user_type: string, status: string, date_entry: Date) {
|
|
|
|
const pattern = { cmd: 'createAdminSystem' };
|
|
|
|
const payload = {
|
|
|
|
dni: dni, name: name, last_name: last_name, email: email, phone: phone,
|
|
|
|
password: password, user_type: user_type, status: status, date_entry: date_entry
|
|
|
|
};
|
2022-07-16 01:02:17 +00:00
|
|
|
return this.clientUserApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
testSendMail(dni: string, name: string, last_name: string, email: string, phone: number
|
|
|
|
, password: string, user_type: string, status: string, date_entry: Date) {
|
|
|
|
const pattern = { cmd: 'testSendMail' };
|
|
|
|
const payload = {
|
|
|
|
dni: dni, name: name, last_name: last_name, email: email, phone: phone,
|
|
|
|
password: password, user_type: user_type, status: status, date_entry: date_entry
|
|
|
|
};
|
2022-07-01 01:42:50 +00:00
|
|
|
return this.clientUserApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
allUsers() {
|
2022-06-29 09:23:07 +00:00
|
|
|
const pattern = { cmd: 'findAllUsers' };
|
2022-06-29 02:30:10 +00:00
|
|
|
const payload = {};
|
2022-06-29 09:23:07 +00:00
|
|
|
return this.clientUserApp
|
2022-07-01 01:42:50 +00:00
|
|
|
.send<string>(pattern, payload)
|
2022-06-29 02:30:10 +00:00
|
|
|
.pipe(
|
2022-07-01 01:42:50 +00:00
|
|
|
map((message: string) => ({ message })),
|
2022-06-29 02:30:10 +00:00
|
|
|
);
|
|
|
|
}
|
2022-06-29 10:12:27 +00:00
|
|
|
|
2022-07-15 01:01:02 +00:00
|
|
|
allUsersAdminSistema() {
|
|
|
|
const pattern = { cmd: 'findAdminSistema' };
|
|
|
|
const payload = {};
|
|
|
|
return this.clientUserApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-07-15 03:16:02 +00:00
|
|
|
allUsersAdminComunidad() {
|
|
|
|
const pattern = { cmd: 'findAdminComunidad' };
|
|
|
|
const payload = {};
|
|
|
|
return this.clientUserApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-07-01 01:42:50 +00:00
|
|
|
//GET parameter from API
|
|
|
|
findUser(paramUserDNI: string) {
|
|
|
|
const pattern = { cmd: 'findUserDNI' };
|
|
|
|
const payload = { dni: paramUserDNI };
|
2022-06-29 10:12:27 +00:00
|
|
|
return this.clientUserApp
|
2022-07-01 01:42:50 +00:00
|
|
|
.send<string>(pattern, payload)
|
2022-06-29 10:12:27 +00:00
|
|
|
.pipe(
|
2022-07-01 01:42:50 +00:00
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
2022-06-29 10:12:27 +00:00
|
|
|
}
|
|
|
|
|
2022-07-11 02:22:34 +00:00
|
|
|
inicioSesion(pEmail: string, pPassword: string) {
|
|
|
|
const pattern = { cmd: 'loginUser' };
|
|
|
|
const payload = { email: pEmail, password: pPassword};
|
|
|
|
return this.clientUserApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-07-01 01:42:50 +00:00
|
|
|
// ====================== COMMUNITIES ===============================
|
2022-06-29 10:12:27 +00:00
|
|
|
|
|
|
|
//POST parameter from API
|
|
|
|
createCommunity(name: string, province: string, canton: string, district: string
|
2022-07-01 03:22:54 +00:00
|
|
|
, num_houses: number, phone: number, quote: number, status: string, date_entry: Date, houses: [{}]) {
|
2022-06-29 10:12:27 +00:00
|
|
|
const pattern = { cmd: 'createCommunity' };
|
2022-07-01 01:42:50 +00:00
|
|
|
const payload = {
|
|
|
|
name: name, province: province, canton: canton, district: district, num_houses: num_houses,
|
|
|
|
phone: phone, quote: quote, status: status, date_entry: date_entry, houses
|
|
|
|
};
|
2022-06-29 10:12:27 +00:00
|
|
|
return this.clientCommunityApp
|
2022-07-01 01:42:50 +00:00
|
|
|
.send<string>(pattern, payload)
|
2022-06-29 10:12:27 +00:00
|
|
|
.pipe(
|
2022-07-01 01:42:50 +00:00
|
|
|
map((message: string) => ({ message })),
|
2022-06-29 10:12:27 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-07-01 01:42:50 +00:00
|
|
|
allCommunities() {
|
2022-06-29 10:12:27 +00:00
|
|
|
const pattern = { cmd: 'findAllCommunities' };
|
|
|
|
const payload = {};
|
|
|
|
return this.clientCommunityApp
|
2022-07-01 01:42:50 +00:00
|
|
|
.send<string>(pattern, payload)
|
2022-06-29 10:12:27 +00:00
|
|
|
.pipe(
|
2022-07-01 01:42:50 +00:00
|
|
|
map((message: string) => ({ message })),
|
2022-06-29 10:12:27 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-07-01 01:42:50 +00:00
|
|
|
//GET parameter from API
|
|
|
|
findCommunity(paramCommunityId: string) {
|
2022-06-29 10:12:27 +00:00
|
|
|
const pattern = { cmd: 'findOneCommunity' };
|
2022-07-01 01:42:50 +00:00
|
|
|
const payload = { id: paramCommunityId };
|
2022-06-29 10:12:27 +00:00
|
|
|
return this.clientCommunityApp
|
2022-07-01 01:42:50 +00:00
|
|
|
.send<string>(pattern, payload)
|
2022-06-29 10:12:27 +00:00
|
|
|
.pipe(
|
2022-07-01 01:42:50 +00:00
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
2022-06-29 10:12:27 +00:00
|
|
|
}
|
2022-07-01 07:39:52 +00:00
|
|
|
|
2022-07-15 03:16:02 +00:00
|
|
|
findCommunityName(paramCommunityId: string) {
|
|
|
|
const pattern = { cmd: 'findCommunityName' };
|
|
|
|
const payload = { id: paramCommunityId };
|
|
|
|
return this.clientCommunityApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-07-01 07:39:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
// ====================== COMMON AREAS ===============================
|
|
|
|
//POST parameter from API
|
|
|
|
createCommonArea(name: string, hourMin: string, hourMax: string,
|
|
|
|
bookable: number, community_id: string) {
|
|
|
|
const pattern = { cmd: 'createCommonArea' };
|
|
|
|
const payload = {
|
|
|
|
name: name, hourMin: hourMin, hourMax: hourMax, bookable: bookable,
|
|
|
|
community_id: community_id
|
|
|
|
};
|
|
|
|
return this.clientCommonAreaApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
allCommonAreas() {
|
|
|
|
const pattern = { cmd: 'findAllCommonAreas' };
|
|
|
|
const payload = {};
|
|
|
|
return this.clientCommonAreaApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//GET parameter from API
|
|
|
|
findCommonArea(paramCommonAreaId: string) {
|
|
|
|
const pattern = { cmd: 'findOneCommonArea' };
|
|
|
|
const payload = { id: paramCommonAreaId };
|
|
|
|
return this.clientCommonAreaApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-07-01 09:09:48 +00:00
|
|
|
|
|
|
|
// ====================== GUESTS ===============================
|
|
|
|
|
|
|
|
|
|
|
|
//POST parameter from API
|
|
|
|
createGuest(name: string, last_name: string, dni: string, number_plate: string, phone: number
|
|
|
|
, status: string, date_entry: Date) {
|
|
|
|
const pattern = { cmd: 'createGuest' };
|
|
|
|
const payload = {
|
|
|
|
name: name, last_name: last_name, dni: dni, number_plate: number_plate, phone: phone,
|
|
|
|
status: status, date_entry: date_entry
|
|
|
|
};
|
|
|
|
return this.clientGuestApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
allGuests() {
|
|
|
|
const pattern = { cmd: 'findAllGuests' };
|
|
|
|
const payload = {};
|
|
|
|
return this.clientGuestApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//GET parameter from API
|
|
|
|
findGuest(paramGuestDNI: string) {
|
|
|
|
const pattern = { cmd: 'findGuestDNI' };
|
|
|
|
const payload = { dni: paramGuestDNI };
|
|
|
|
return this.clientGuestApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-07-01 09:48:27 +00:00
|
|
|
// ====================== PAYMENTS ===============================
|
|
|
|
|
|
|
|
//POST parameter from API
|
|
|
|
createPayment(date_payment: Date, mount: number, description: string, period: string
|
|
|
|
, status: string, user_id: string, communty_id: string) {
|
|
|
|
const pattern = { cmd: 'createPayment' };
|
|
|
|
const payload = {
|
|
|
|
date_payment: date_payment, mount: mount, description: description,
|
|
|
|
period: period, status: status, user_id: user_id, communty_id: communty_id
|
|
|
|
};
|
|
|
|
return this.clientPaymentApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
allPayments() {
|
|
|
|
const pattern = { cmd: 'findAllPayments' };
|
|
|
|
const payload = {};
|
|
|
|
return this.clientPaymentApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//GET parameter from API
|
|
|
|
findPayment(paramPaymentId: string) {
|
|
|
|
const pattern = { cmd: 'findOnePayment' };
|
|
|
|
const payload = { id: paramPaymentId };
|
|
|
|
return this.clientPaymentApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-01 20:01:21 +00:00
|
|
|
// ====================== RESERVATIONS ===============================
|
|
|
|
|
|
|
|
//POST parameter from API
|
|
|
|
createReservation(start_time: string, finish_time: string, status: string,
|
|
|
|
date_entry: Date, user_id: string, common_area_id: string) {
|
|
|
|
const pattern = { cmd: 'createReservation' };
|
|
|
|
const payload = {
|
|
|
|
start_time: start_time, finish_time: finish_time, status: status,
|
|
|
|
date_entry: date_entry, user_id: user_id, common_area_id: common_area_id
|
|
|
|
};
|
|
|
|
return this.clientReservationApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
allReservations() {
|
|
|
|
const pattern = { cmd: 'findAllReservations' };
|
|
|
|
const payload = {};
|
|
|
|
return this.clientReservationApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//GET parameter from API
|
|
|
|
findReservation(paramReservationId: string) {
|
|
|
|
const pattern = { cmd: 'findOneReservation' };
|
|
|
|
const payload = { id: paramReservationId };
|
|
|
|
return this.clientReservationApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-01 20:53:38 +00:00
|
|
|
// ====================== POSTS ===============================
|
|
|
|
|
|
|
|
//POST parameter from API
|
|
|
|
createPost(post: string, date_entry: Date, user_id: string,
|
|
|
|
community_id: string) {
|
|
|
|
const pattern = { cmd: 'createPost' };
|
|
|
|
const payload = {
|
|
|
|
post: post, date_entry: date_entry, user_id: user_id,
|
|
|
|
community_id: community_id
|
|
|
|
};
|
|
|
|
return this.clientPostApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
allPosts() {
|
|
|
|
const pattern = { cmd: 'findAllPosts' };
|
|
|
|
const payload = {};
|
|
|
|
return this.clientPostApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//GET parameter from API
|
|
|
|
findPost(paramPostId: string) {
|
|
|
|
const pattern = { cmd: 'findOnePost' };
|
|
|
|
const payload = { id: paramPostId };
|
|
|
|
return this.clientPostApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
2022-07-01 20:01:21 +00:00
|
|
|
|
2022-07-01 22:27:19 +00:00
|
|
|
// ====================== COMMNENT POSTS ===============================
|
|
|
|
|
|
|
|
//Comment parameter from API
|
|
|
|
createComment(comment: string, date_entry: Date, user_id: string,
|
|
|
|
post_id: string) {
|
|
|
|
const pattern = { cmd: 'createComment' };
|
|
|
|
const payload = {
|
|
|
|
comment: comment, date_entry: date_entry, user_id: user_id,
|
|
|
|
post_id: post_id
|
|
|
|
};
|
|
|
|
return this.clientPostApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
allComments() {
|
|
|
|
const pattern = { cmd: 'findAllComments' };
|
|
|
|
const payload = {};
|
|
|
|
return this.clientPostApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//GET parameter from API
|
|
|
|
findComment(paramCommentId: string) {
|
|
|
|
const pattern = { cmd: 'findOneComment' };
|
|
|
|
const payload = { id: paramCommentId };
|
|
|
|
return this.clientPostApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
2022-07-01 23:11:32 +00:00
|
|
|
|
|
|
|
// ====================== REPORTS ===============================
|
|
|
|
|
|
|
|
//Report parameter from API
|
|
|
|
createReport(action: string, description: string, date_entry: Date,
|
|
|
|
user_id: string) {
|
|
|
|
const pattern = { cmd: 'createReport' };
|
|
|
|
const payload = {
|
|
|
|
action: action, description: description, date_entry: date_entry,
|
|
|
|
user_id: user_id
|
|
|
|
};
|
|
|
|
return this.clientReportApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
allReports() {
|
|
|
|
const pattern = { cmd: 'findAllReports' };
|
|
|
|
const payload = {};
|
|
|
|
return this.clientReportApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//GET parameter from API
|
|
|
|
findReport(paramReportId: string) {
|
|
|
|
const pattern = { cmd: 'findOneReport' };
|
|
|
|
const payload = { id: paramReportId };
|
|
|
|
return this.clientReportApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
2022-07-16 00:36:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
sendMail(email: string) {
|
|
|
|
const pattern = { cmd: 'sendMail' };
|
|
|
|
const payload = { email: email};
|
|
|
|
return this.clientNotificationtApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
html(email: string, name: string) {
|
|
|
|
const pattern = { cmd: 'html' };
|
|
|
|
const payload = { email: email, name: name};
|
|
|
|
return this.clientNotificationtApp
|
|
|
|
.send<string>(pattern, payload)
|
|
|
|
.pipe(
|
|
|
|
map((message: string) => ({ message })),
|
|
|
|
);
|
|
|
|
}
|
2022-06-29 02:30:10 +00:00
|
|
|
}
|