nestjs-guard-grpc
Version:
```sh nest g library nestjs-guard-grpc ```
68 lines • 3.29 kB
JavaScript
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); }
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.GrpcAuthGuard = void 0;
const common_1 = require("@nestjs/common");
let GrpcAuthGuard = (() => {
let GrpcAuthGuard = class GrpcAuthGuard {
constructor(authService) {
this.authService = authService;
}
getRequest(context) {
return context.switchToRpc().getContext();
}
canActivate(context) {
return __awaiter(this, void 0, void 0, function* () {
const request = this.getRequest(context);
const type = context.getType();
const prefix = 'Bearer ';
let header;
if (type === 'rpc') {
const metadata = context.getArgByIndex(1);
if (!metadata) {
return false;
}
header = metadata.get('Authorization')[0];
}
if (!header || !header.includes(prefix)) {
return false;
}
const token = header.slice(header.indexOf(' ') + 1);
const user = yield this.authService.verify(token);
if (user === undefined) {
return false;
}
request.user = user;
return true;
});
}
};
GrpcAuthGuard = __decorate([
common_1.Injectable(),
__param(0, common_1.Inject('IAuthService')),
__metadata("design:paramtypes", [Object])
], GrpcAuthGuard);
return GrpcAuthGuard;
})();
exports.GrpcAuthGuard = GrpcAuthGuard;
//# sourceMappingURL=grpc.guard.js.map
;