UNPKG

@bitloops/bl-boilerplate-infra-nest-auth-passport

Version:
90 lines (89 loc) 4.93 kB
"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); }; var __param = (this && this.__param) || function (paramIndex, decorator) { return function (target, key) { decorator(target, key, paramIndex); } }; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.UserPostgresRepository = void 0; const bl_boilerplate_core_1 = require("@bitloops/bl-boilerplate-core"); const common_1 = require("@nestjs/common"); const bl_boilerplate_infra_postgres_1 = require("@bitloops/bl-boilerplate-infra-postgres"); const user_registered_integration_event_1 = require("./user-registered.integration-event"); const constants_1 = require("../constants"); let UserPostgresRepository = class UserPostgresRepository { constructor(connection, integrationEventBus) { this.connection = connection; this.integrationEventBus = integrationEventBus; this.tableName = 'users'; } getByEmail(email) { return __awaiter(this, void 0, void 0, function* () { const result = yield this.connection.query(`SELECT * FROM ${this.tableName} WHERE email = $1`, [ email, ]); if (!result.rows.length) { return null; } const user = result.rows[0]; return user; }); } checkDoesNotExistAndCreate(user) { return __awaiter(this, void 0, void 0, function* () { // note: we don't try/catch this because if connecting throws an exception // we don't need to dispose of the client (it will be undefined) const client = yield this.connection.connect(); try { yield client.query('BEGIN'); const userExistsQuery = `SELECT * FROM ${this.tableName} WHERE email = $1`; const res = yield client.query(userExistsQuery, [user.email]); if (res.rows.length > 0) { throw new bl_boilerplate_core_1.Application.Repo.Errors.Conflict(user.email); } const insertUserText = `INSERT INTO ${this.tableName} (id, email, password) VALUES ($1, $2, $3);`; const { id, email, password } = user; const insertUserValues = [id, email, password]; yield this.connection.query(insertUserText, insertUserValues); yield client.query('COMMIT'); const event = new user_registered_integration_event_1.UserRegisteredIntegrationEvent({ userId: id, email }); this.integrationEventBus.publish(event); return (0, bl_boilerplate_core_1.ok)(); } catch (e) { yield client.query('ROLLBACK'); if (e instanceof bl_boilerplate_core_1.Application.Repo.Errors.Conflict) { return (0, bl_boilerplate_core_1.fail)(e); } console.log('Error in transaction:', e); return (0, bl_boilerplate_core_1.fail)(new bl_boilerplate_core_1.Application.Repo.Errors.Unexpected(e.message)); } finally { client.release(); } }); } }; UserPostgresRepository = __decorate([ (0, common_1.Injectable)(), __param(0, (0, common_1.Inject)(bl_boilerplate_infra_postgres_1.constants.pg_connection)), __param(1, (0, common_1.Inject)(constants_1.IntegrationEventBusToken)), __metadata("design:paramtypes", [Object, Object]) ], UserPostgresRepository); exports.UserPostgresRepository = UserPostgresRepository;