template-saas/apps/backend/dist/modules/storage/storage.controller.js
rckrdmrd 50a821a415
Some checks failed
CI / Backend CI (push) Has been cancelled
CI / Frontend CI (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / CI Summary (push) Has been cancelled
[SIMCO-V38] feat: Actualizar a SIMCO v3.8.0
- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8
- Actualizaciones de configuracion

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-10 08:53:08 -06:00

120 lines
5.5 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.StorageController = void 0;
const common_1 = require("@nestjs/common");
const jwt_auth_guard_1 = require("../auth/guards/jwt-auth.guard");
const current_user_decorator_1 = require("../auth/decorators/current-user.decorator");
const storage_service_1 = require("./services/storage.service");
const dto_1 = require("./dto");
let StorageController = class StorageController {
constructor(storageService) {
this.storageService = storageService;
}
async getUploadUrl(user, dto) {
return this.storageService.getUploadUrl(user.tenant_id, user.id, dto);
}
async confirmUpload(user, dto) {
return this.storageService.confirmUpload(user.tenant_id, user.id, dto);
}
async listFiles(user, dto) {
return this.storageService.listFiles(user.tenant_id, dto);
}
async getFile(user, fileId) {
return this.storageService.getFile(user.tenant_id, fileId);
}
async getDownloadUrl(user, fileId) {
return this.storageService.getDownloadUrl(user.tenant_id, fileId);
}
async updateFile(user, fileId, dto) {
return this.storageService.updateFile(user.tenant_id, fileId, dto);
}
async deleteFile(user, fileId) {
return this.storageService.deleteFile(user.tenant_id, fileId);
}
async getUsage(user) {
return this.storageService.getUsage(user.tenant_id);
}
};
exports.StorageController = StorageController;
__decorate([
(0, common_1.Post)('upload-url'),
__param(0, (0, current_user_decorator_1.CurrentUser)()),
__param(1, (0, common_1.Body)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, dto_1.GetUploadUrlDto]),
__metadata("design:returntype", Promise)
], StorageController.prototype, "getUploadUrl", null);
__decorate([
(0, common_1.Post)('confirm'),
__param(0, (0, current_user_decorator_1.CurrentUser)()),
__param(1, (0, common_1.Body)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, dto_1.ConfirmUploadDto]),
__metadata("design:returntype", Promise)
], StorageController.prototype, "confirmUpload", null);
__decorate([
(0, common_1.Get)('files'),
__param(0, (0, current_user_decorator_1.CurrentUser)()),
__param(1, (0, common_1.Query)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, dto_1.ListFilesDto]),
__metadata("design:returntype", Promise)
], StorageController.prototype, "listFiles", null);
__decorate([
(0, common_1.Get)('files/:id'),
__param(0, (0, current_user_decorator_1.CurrentUser)()),
__param(1, (0, common_1.Param)('id', common_1.ParseUUIDPipe)),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, String]),
__metadata("design:returntype", Promise)
], StorageController.prototype, "getFile", null);
__decorate([
(0, common_1.Get)('files/:id/download'),
__param(0, (0, current_user_decorator_1.CurrentUser)()),
__param(1, (0, common_1.Param)('id', common_1.ParseUUIDPipe)),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, String]),
__metadata("design:returntype", Promise)
], StorageController.prototype, "getDownloadUrl", null);
__decorate([
(0, common_1.Patch)('files/:id'),
__param(0, (0, current_user_decorator_1.CurrentUser)()),
__param(1, (0, common_1.Param)('id', common_1.ParseUUIDPipe)),
__param(2, (0, common_1.Body)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, String, dto_1.UpdateFileDto]),
__metadata("design:returntype", Promise)
], StorageController.prototype, "updateFile", null);
__decorate([
(0, common_1.Delete)('files/:id'),
__param(0, (0, current_user_decorator_1.CurrentUser)()),
__param(1, (0, common_1.Param)('id', common_1.ParseUUIDPipe)),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, String]),
__metadata("design:returntype", Promise)
], StorageController.prototype, "deleteFile", null);
__decorate([
(0, common_1.Get)('usage'),
__param(0, (0, current_user_decorator_1.CurrentUser)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object]),
__metadata("design:returntype", Promise)
], StorageController.prototype, "getUsage", null);
exports.StorageController = StorageController = __decorate([
(0, common_1.Controller)('storage'),
(0, common_1.UseGuards)(jwt_auth_guard_1.JwtAuthGuard),
__metadata("design:paramtypes", [storage_service_1.StorageService])
], StorageController);
//# sourceMappingURL=storage.controller.js.map