52 lines
2.3 KiB
JavaScript
52 lines
2.3 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);
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.createPermissionGuard = exports.PermissionGuard = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const authorization_service_1 = require("../authorization.service");
|
|
let PermissionGuard = class PermissionGuard {
|
|
authz;
|
|
permission;
|
|
constructor(authz, permission) {
|
|
this.authz = authz;
|
|
this.permission = permission;
|
|
}
|
|
async canActivate(context) {
|
|
const req = context.switchToHttp().getRequest();
|
|
const user = req.raylab?.user;
|
|
if (!user)
|
|
throw new common_1.ForbiddenException('Missing user');
|
|
const allowed = await this.authz.hasPermission(user.id, this.permission);
|
|
if (!allowed)
|
|
throw new common_1.ForbiddenException('Forbidden');
|
|
return true;
|
|
}
|
|
};
|
|
exports.PermissionGuard = PermissionGuard;
|
|
exports.PermissionGuard = PermissionGuard = __decorate([
|
|
(0, common_1.Injectable)(),
|
|
__metadata("design:paramtypes", [authorization_service_1.AuthorizationService, String])
|
|
], PermissionGuard);
|
|
// Factory to create guard instances with permission string (used in decorators)
|
|
const createPermissionGuard = (permission) => {
|
|
let _Guard = class _Guard extends PermissionGuard {
|
|
constructor(authz) {
|
|
super(authz, permission);
|
|
}
|
|
};
|
|
_Guard = __decorate([
|
|
(0, common_1.Injectable)(),
|
|
__metadata("design:paramtypes", [authorization_service_1.AuthorizationService])
|
|
], _Guard);
|
|
return _Guard;
|
|
};
|
|
exports.createPermissionGuard = createPermissionGuard;
|
|
//# sourceMappingURL=permission.guard.js.map
|