vulcain-corejs
Version:
Vulcain micro-service framework
66 lines (64 loc) • 3.69 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) {
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) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments)).next());
});
};
const commandFactory_1 = require("../../commands/command/commandFactory");
const commandFactory_2 = require("../../commands/command/commandFactory");
const abstractServiceCommand_1 = require("./../../commands/command/abstractServiceCommand");
const abstractHandlers_1 = require("../../pipeline/abstractHandlers");
const annotations_1 = require("../../di/annotations");
let ApiKeyService = class ApiKeyService extends abstractHandlers_1.AbstractHandler {
constructor(container, apiKeyServiceName, apiKeyServiceVersion) {
super(container);
this.apiKeyServiceName = apiKeyServiceName;
this.apiKeyServiceVersion = apiKeyServiceVersion;
}
createTokenAsync(user) {
return Promise.reject("Invalid method. You must use vulcain-authentication module to create token.");
}
verifyTokenAsync(data) {
return __awaiter(this, void 0, void 0, function* () {
const cmd = yield commandFactory_1.CommandFactory.getAsync(ApiKeyVerifyCommand.commandName, this.requestContext);
return yield cmd.executeAsync(this.apiKeyServiceName, this.apiKeyServiceVersion, data);
});
}
};
ApiKeyService = __decorate([
__param(0, annotations_1.Inject(annotations_1.DefaultServiceNames.Container)),
__metadata("design:paramtypes", [Object, String, String])
], ApiKeyService);
exports.ApiKeyService = ApiKeyService;
let ApiKeyVerifyCommand = class ApiKeyVerifyCommand extends abstractServiceCommand_1.AbstractServiceCommand {
initializeMetricsInfo() {
}
runAsync(apiKeyServiceName, apiKeyServiceVersion, data) {
return __awaiter(this, void 0, void 0, function* () {
this.setMetricsTags(apiKeyServiceName, apiKeyServiceVersion);
let resp = yield this.sendActionAsync(apiKeyServiceName, apiKeyServiceVersion, "apikey.verifyToken", data);
return !resp.error && resp.value;
});
}
};
ApiKeyVerifyCommand.commandName = "ApiKeyVerifyCommand";
ApiKeyVerifyCommand = __decorate([
commandFactory_2.Command({ executionTimeoutInMilliseconds: 500 }),
__metadata("design:paramtypes", [])
], ApiKeyVerifyCommand);
//# sourceMappingURL=apiKeyService.js.map
;