feat: implement billing, usage tracking, and administrative geocoding features in API with infrastructure updates
This commit is contained in:
+74
@@ -0,0 +1,74 @@
|
||||
"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.TenantController = void 0;
|
||||
const common_1 = require("@nestjs/common");
|
||||
const auth_service_1 = require("./auth.service");
|
||||
const create_key_dto_1 = require("./dto/management/create-key.dto");
|
||||
const swagger_1 = require("@nestjs/swagger");
|
||||
const firebase_auth_guard_1 = require("./guards/firebase-auth.guard");
|
||||
let TenantController = class TenantController {
|
||||
authService;
|
||||
constructor(authService) {
|
||||
this.authService = authService;
|
||||
}
|
||||
async createKey(req, dto) {
|
||||
if (req.user && req.user.email_verified === false) {
|
||||
throw new common_1.ForbiddenException('You must verify your email address before creating an API key.');
|
||||
}
|
||||
const tenantId = req.tenant.id;
|
||||
return this.authService.createApiKey(tenantId, dto.name, dto.rateLimit, dto.allowedOrigins);
|
||||
}
|
||||
async getKeys(req) {
|
||||
const tenantId = req.tenant.id;
|
||||
return this.authService.getApiKeys(tenantId);
|
||||
}
|
||||
async getMe(req) {
|
||||
return req.tenant;
|
||||
}
|
||||
};
|
||||
exports.TenantController = TenantController;
|
||||
__decorate([
|
||||
(0, common_1.Post)('keys'),
|
||||
(0, swagger_1.ApiOperation)({ summary: 'Create a new API key' }),
|
||||
__param(0, (0, common_1.Req)()),
|
||||
__param(1, (0, common_1.Body)()),
|
||||
__metadata("design:type", Function),
|
||||
__metadata("design:paramtypes", [Object, create_key_dto_1.CreateKeyDto]),
|
||||
__metadata("design:returntype", Promise)
|
||||
], TenantController.prototype, "createKey", null);
|
||||
__decorate([
|
||||
(0, common_1.Get)('keys'),
|
||||
(0, swagger_1.ApiOperation)({ summary: 'Get all API keys for the authenticated tenant' }),
|
||||
__param(0, (0, common_1.Req)()),
|
||||
__metadata("design:type", Function),
|
||||
__metadata("design:paramtypes", [Object]),
|
||||
__metadata("design:returntype", Promise)
|
||||
], TenantController.prototype, "getKeys", null);
|
||||
__decorate([
|
||||
(0, common_1.Get)('me'),
|
||||
(0, swagger_1.ApiOperation)({ summary: 'Get current authenticated tenant info' }),
|
||||
__param(0, (0, common_1.Req)()),
|
||||
__metadata("design:type", Function),
|
||||
__metadata("design:paramtypes", [Object]),
|
||||
__metadata("design:returntype", Promise)
|
||||
], TenantController.prototype, "getMe", null);
|
||||
exports.TenantController = TenantController = __decorate([
|
||||
(0, swagger_1.ApiTags)('auth'),
|
||||
(0, swagger_1.ApiBearerAuth)(),
|
||||
(0, common_1.UseGuards)(firebase_auth_guard_1.FirebaseAuthGuard),
|
||||
(0, common_1.Controller)('auth/management'),
|
||||
__metadata("design:paramtypes", [auth_service_1.AuthService])
|
||||
], TenantController);
|
||||
//# sourceMappingURL=tenant.controller.js.map
|
||||
Reference in New Issue
Block a user