@ijodkor/nest-payme
Version:
NestJs ilovalar uchun Payme ETT bilan integratsiya qilish uchun kutubxona.
55 lines (54 loc) • 2.86 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.RouteGuard = void 0;
const common_1 = require("@nestjs/common");
const auth_option_config_1 = require("../config/auth-option.config");
const basic_auth_guard_1 = require("./basic-auth.guard");
let RouteGuard = class RouteGuard {
constructor(options, authGuard) {
this.options = options;
this.authGuard = authGuard;
}
canActivate(context) {
return __awaiter(this, void 0, void 0, function* () {
if (this.options == null) {
return true;
}
if (this.options.useFactory == null) {
return true;
}
if (this.options.auth == auth_option_config_1.AuthOption.BASIC_AUTH) {
return this.authGuard.canActivate(context);
}
const request = context.switchToHttp().getRequest();
return this.options.useFactory(request);
});
}
};
exports.RouteGuard = RouteGuard;
exports.RouteGuard = RouteGuard = __decorate([
(0, common_1.Injectable)(),
__param(0, (0, common_1.Inject)(auth_option_config_1.AUTH_GUARD_OPTIONS)),
__metadata("design:paramtypes", [Object, basic_auth_guard_1.BasicAuthGuard])
], RouteGuard);