bugyo-cloud-client
Version:
HTTP client for Bugyo Cloud
77 lines • 3.24 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.CheckAuthenticationMethod = void 0;
const qs = __importStar(require("querystring"));
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
*/
async invoke(client, token, authInfo) {
const url = (0, url_utils_1.produceUrl)("CheckAuthenticationMethod", client);
const data = this.createData(authInfo);
const headers = {
__RequestVerificationToken: token,
"X-Requested-With": "XMLHttpRequest",
"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
};
this.logger.trace("Posting CheckAuthenticationMethod: %s.", url);
// エラーがあるとリダイレクトするので、リダイレクトさせない
const resp = await client.session.post(url, data, {
headers,
redirect: "error",
});
const json = (await resp.json());
if ("AuthenticationMethod" in json === false) {
this.logger.error("CheckAuthenticationMethod response does not contain AuthenticationMethod.", { response: json });
throw new Error("CheckAuthenticationMethod response does not contain AuthenticationMethod.");
}
this.logger.trace("CheckAuthenticationMethod succeed.");
}
createData(authInfo) {
return qs.stringify({
OBCiD: authInfo.loginId,
isBugyoCloud: "false",
});
}
}
exports.CheckAuthenticationMethod = CheckAuthenticationMethod;
//# sourceMappingURL=check-authentication-method.js.map