47 lines
2.1 KiB
JavaScript
47 lines
2.1 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.ApiAuthGuard = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const core_1 = require("@nestjs/core");
|
|
const public_decorator_1 = require("../common/decorator/public.decorator");
|
|
const user_id_context_1 = require("../common/context/user_id.context");
|
|
const app_info_context_1 = require("./context/app_info.context");
|
|
let ApiAuthGuard = class ApiAuthGuard {
|
|
reflector;
|
|
constructor(reflector) {
|
|
this.reflector = reflector;
|
|
}
|
|
canActivate(context) {
|
|
const req = context.switchToHttp().getRequest();
|
|
if (!req.path.startsWith('/api')) {
|
|
return true;
|
|
}
|
|
const info = app_info_context_1.AppInfoContext.getAppInfo();
|
|
if (!info.device || !info.system || !info.version) {
|
|
throw new common_1.HttpException('非法访问', 401);
|
|
}
|
|
if ((0, public_decorator_1.isAuthPublic)(this.reflector, context)) {
|
|
return true;
|
|
}
|
|
const userId = (0, user_id_context_1.getUserIdContext)();
|
|
if (!userId) {
|
|
throw new common_1.UnauthorizedException();
|
|
}
|
|
return true;
|
|
}
|
|
};
|
|
exports.ApiAuthGuard = ApiAuthGuard;
|
|
exports.ApiAuthGuard = ApiAuthGuard = __decorate([
|
|
(0, common_1.Injectable)(),
|
|
__metadata("design:paramtypes", [core_1.Reflector])
|
|
], ApiAuthGuard);
|
|
//# sourceMappingURL=auth.guard.js.map
|