UNPKG

bugyo-cloud-client

Version:
101 lines 3.13 kB
"use strict"; 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.HttpSession = void 0; const undici = __importStar(require("undici")); const config_1 = require("../config"); /** * Axiosのラッパ */ class HttpSession { logger; dispatcher; lastUrl; constructor(logger, dispatcher) { this.logger = logger; this.dispatcher = dispatcher; } /** * HTTP GET して、bodyを文字列で返す * @param url * @param config */ async getPage(url, config) { const resp = await this.request("GET", url, config); const text = await resp.text(); this.lastUrl = resp.url; return text; } /** * HTTP GET します * * @param url * @param config * @returns */ get(url, config) { return this.request("GET", url, config); } /** * HTTP POST します * * @param url * @param body * @param config * @returns */ post(url, body, config) { return this.request("POST", url, config, body); } async request(method, url, config = {}, body) { config.headers = config.headers ?? {}; config.headers["User-Agent"] = config_1.USER_AGENT; const init = { method, ...config, dispatcher: this.dispatcher, referrer: this.lastUrl, body, }; const resp = await undici.fetch(url, init); if (!resp.ok) { this.logger.error("HTTP error! status: %s, url: %s", resp.status, url); throw new Error(`HTTP error! status: ${resp.status}`); } return resp; } } exports.HttpSession = HttpSession; //# sourceMappingURL=http-session.js.map