bugyo-cloud-client
Version:
HTTP client for Bugyo Cloud
82 lines • 3.13 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.Authenticate = void 0;
const qs = __importStar(require("querystring"));
const url_utils_1 = require("../utils/url-utils");
const base_endpoint_1 = require("./base/base-endpoint");
const types_1 = require("../types");
class Authenticate extends base_endpoint_1.BaseEndpoint {
/**
* 認証します
*
* @param client
* @param token
* @param authInfo
*/
async invoke(client, token, authInfo) {
const url = (0, url_utils_1.produceUrl)("Authenticate", client);
const data = this.createData(token, authInfo);
const headers = {
"Content-Type": "application/x-www-form-urlencoded",
"X-Requested-With": "XMLHttpRequest",
};
this.logger.trace("Posting Authenticate: %s.", url);
const response = await client.session.post(url, data, {
headers,
});
const result = await response.json();
if (!(0, types_1.isAuthenticationResponse)(result)) {
this.logger.error("Unexpected authentication response. %s", result);
throw new Error("Unexpected authentication response.");
}
this.logger.trace("Authenticate succeed.");
return result.RedirectURL;
}
createData(token, authInfo) {
return qs.stringify({
btnLogin: null,
OBCID: authInfo.loginId,
Password_d1: null,
Password_d2: null,
Password_d3: null,
Password: authInfo.password,
__RequestVerificationToken: token,
"X-Requested-With": "XMLHttpRequest",
});
}
}
exports.Authenticate = Authenticate;
//# sourceMappingURL=authenticate.js.map