feat: complete admin backend controllers and services

- AdminPlansController & Service (CRUD, reorder)
- AdminPaymentMethodsController & Service (CRUD, reorder)
- AdminPaymentsController & Service (verify, reject, pending count)
- AdminUsersController & Service (search, suspend, grant pro access, stats)
- AdminConfigController & Service (dynamic config management)
- Wire all controllers into AdminModule
- Import AdminModule in AppModule

Admin API Routes:
- GET/POST/PUT/DELETE /admin/plans
- GET/POST/PUT/DELETE /admin/payment-methods
- GET /admin/payments (with status filter)
- POST /admin/payments/:id/verify
- POST /admin/payments/:id/reject
- GET /admin/users (with search)
- POST /admin/users/:id/grant-pro
- GET/POST/DELETE /admin/config

All routes protected by AuthGuard + AdminGuard
This commit is contained in:
dwindown
2025-10-11 14:32:45 +07:00
parent 9b789b333f
commit 12850ab12d
53 changed files with 3098 additions and 34 deletions

View File

@@ -0,0 +1,83 @@
"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.AdminConfigController = void 0;
const common_1 = require("@nestjs/common");
const auth_guard_1 = require("../auth/auth.guard");
const admin_guard_1 = require("./guards/admin.guard");
const admin_config_service_1 = require("./admin-config.service");
let AdminConfigController = class AdminConfigController {
service;
constructor(service) {
this.service = service;
}
findAll(category) {
return this.service.findAll(category);
}
getByCategory() {
return this.service.getByCategory();
}
findOne(key) {
return this.service.findOne(key);
}
upsert(key, data, req) {
return this.service.upsert(key, data, req.user.userId);
}
delete(key) {
return this.service.delete(key);
}
};
exports.AdminConfigController = AdminConfigController;
__decorate([
(0, common_1.Get)(),
__param(0, (0, common_1.Query)('category')),
__metadata("design:type", Function),
__metadata("design:paramtypes", [String]),
__metadata("design:returntype", void 0)
], AdminConfigController.prototype, "findAll", null);
__decorate([
(0, common_1.Get)('by-category'),
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", void 0)
], AdminConfigController.prototype, "getByCategory", null);
__decorate([
(0, common_1.Get)(':key'),
__param(0, (0, common_1.Param)('key')),
__metadata("design:type", Function),
__metadata("design:paramtypes", [String]),
__metadata("design:returntype", void 0)
], AdminConfigController.prototype, "findOne", null);
__decorate([
(0, common_1.Post)(':key'),
__param(0, (0, common_1.Param)('key')),
__param(1, (0, common_1.Body)()),
__param(2, (0, common_1.Req)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [String, Object, Object]),
__metadata("design:returntype", void 0)
], AdminConfigController.prototype, "upsert", null);
__decorate([
(0, common_1.Delete)(':key'),
__param(0, (0, common_1.Param)('key')),
__metadata("design:type", Function),
__metadata("design:paramtypes", [String]),
__metadata("design:returntype", void 0)
], AdminConfigController.prototype, "delete", null);
exports.AdminConfigController = AdminConfigController = __decorate([
(0, common_1.Controller)('admin/config'),
(0, common_1.UseGuards)(auth_guard_1.AuthGuard, admin_guard_1.AdminGuard),
__metadata("design:paramtypes", [admin_config_service_1.AdminConfigService])
], AdminConfigController);
//# sourceMappingURL=admin-config.controller.js.map