- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8 - Actualizaciones de configuracion Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
81 lines
3.2 KiB
JavaScript
81 lines
3.2 KiB
JavaScript
"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); }
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.TenantsService = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const typeorm_1 = require("@nestjs/typeorm");
|
|
const typeorm_2 = require("typeorm");
|
|
const tenant_entity_1 = require("./entities/tenant.entity");
|
|
let TenantsService = class TenantsService {
|
|
constructor(tenantRepository) {
|
|
this.tenantRepository = tenantRepository;
|
|
}
|
|
async findOne(id) {
|
|
const tenant = await this.tenantRepository.findOne({
|
|
where: { id },
|
|
});
|
|
if (!tenant) {
|
|
throw new common_1.NotFoundException('Tenant no encontrado');
|
|
}
|
|
return tenant;
|
|
}
|
|
async findBySlug(slug) {
|
|
return this.tenantRepository.findOne({
|
|
where: { slug },
|
|
});
|
|
}
|
|
async create(dto) {
|
|
const existingTenant = await this.findBySlug(dto.slug);
|
|
if (existingTenant) {
|
|
throw new common_1.ConflictException('Ya existe un tenant con este slug');
|
|
}
|
|
const tenant = this.tenantRepository.create({
|
|
name: dto.name,
|
|
slug: dto.slug,
|
|
domain: dto.domain || null,
|
|
logo_url: dto.logo_url || null,
|
|
status: 'trial',
|
|
settings: dto.settings || {},
|
|
trial_ends_at: new Date(Date.now() + 14 * 24 * 60 * 60 * 1000),
|
|
});
|
|
return this.tenantRepository.save(tenant);
|
|
}
|
|
async update(id, dto) {
|
|
const tenant = await this.findOne(id);
|
|
if (dto.name !== undefined) {
|
|
tenant.name = dto.name;
|
|
}
|
|
if (dto.logo_url !== undefined) {
|
|
tenant.logo_url = dto.logo_url;
|
|
}
|
|
if (dto.settings !== undefined) {
|
|
tenant.settings = {
|
|
...tenant.settings,
|
|
...dto.settings,
|
|
};
|
|
}
|
|
return this.tenantRepository.save(tenant);
|
|
}
|
|
async slugExists(slug) {
|
|
const tenant = await this.findBySlug(slug);
|
|
return !!tenant;
|
|
}
|
|
};
|
|
exports.TenantsService = TenantsService;
|
|
exports.TenantsService = TenantsService = __decorate([
|
|
(0, common_1.Injectable)(),
|
|
__param(0, (0, typeorm_1.InjectRepository)(tenant_entity_1.Tenant)),
|
|
__metadata("design:paramtypes", [typeorm_2.Repository])
|
|
], TenantsService);
|
|
//# sourceMappingURL=tenants.service.js.map
|