bugyo-cloud-client
Version:
HTTP client for Bugyo Cloud
52 lines • 2.3 kB
JavaScript
;
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.CheckAuthenticationMethod = void 0;
const url_utils_1 = require("../utils/url-utils");
const base_endpoint_1 = require("./base/base-endpoint");
class CheckAuthenticationMethod extends base_endpoint_1.BaseEndpoint {
/**
* 'session'クッキーを読み込ませるために呼び出します。
*
* @param client
* @param token
* @param authInfo
*/
invoke(client, token, authInfo) {
return __awaiter(this, void 0, void 0, function* () {
const url = (0, url_utils_1.produceUrl)("CheckAuthenticationMethod", client.param);
const data = this.createData(authInfo);
const config = this.createConfig(token);
this.logger.debug("Trying to POST, url=%s", url, data, config);
const resp = yield client.session.post(url, data, config);
this.throwIfNgStatus(resp);
this.logger.info("CheckAuthenticationMethod succeed.");
});
}
createData(authInfo) {
return {
OBCiD: authInfo.loginId,
isBugyoCloud: "false",
};
}
createConfig(token) {
// エラーがあるとリダイレクトするので、リダイレクトさせない
return {
headers: {
__RequestVerificationToken: token,
"X-Requested-With": "XMLHttpRequest",
},
maxRedirects: 0,
};
}
}
exports.CheckAuthenticationMethod = CheckAuthenticationMethod;
//# sourceMappingURL=check-authentication-method.js.map