All files / src/apis/shared http.ts

100% Statements 14/14
100% Branches 1/1
100% Functions 11/11
100% Lines 13/13

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 1126x 6x                 6x             31x 48x 21x                         19x                         25x                         5x                         1x                         1x                         51x                     57x      
import { uint8ArrayToUtf8 } from "./platform/decode";
import { PlatformHttpClient } from "./platform/http";
import type { HttpClient, HttpRequestOptions } from "./http.types";
 
/**
 *
 *
 * @export
 * @class SimpleJsonHttp
 */
export class SimpleJsonHttp {
  /**
   * Creates an instance of SimpleJsonHttp.
   * @param {HttpClient} client
   * @memberof SimpleJsonHttp
   */
  constructor(
    public client: HttpClient = new PlatformHttpClient({
      parseResponse: (body) => JSON.parse(uint8ArrayToUtf8(body)),
      stringifyBody: (body) => JSON.stringify(body)
    })
  ) {}
 
  /**
   *
   *
   * @template T
   * @param {string} url
   * @return {Promise<T>}
   * @memberof SimpleJsonHttp
   */
  async get<T>(url: string): Promise<T> {
    return await this.simpleRequest("GET", url.toString());
  }
 
  /**
   *
   *
   * @template T
   * @param {string} url
   * @param {*} [body]
   * @return {Promise<T>}
   * @memberof SimpleJsonHttp
   */
  async post<T>(url: string, body?: unknown): Promise<T> {
    return await this.simpleRequest("POST", url.toString(), body);
  }
 
  /**
   *
   *
   * @template T
   * @param {string} url
   * @param {*} [body]
   * @return {Promise<T>}
   * @memberof SimpleJsonHttp
   */
  async put<T>(url: string, body?: unknown): Promise<T> {
    return await this.simpleRequest("PUT", url.toString(), body);
  }
 
  /**
   *
   *
   * @template T
   * @param {string} url
   * @param {*} [body]
   * @return {Promise<T>}
   * @memberof SimpleJsonHttp
   */
  async patch<T>(url: string, body?: unknown): Promise<T> {
    return await this.simpleRequest("PATCH", url.toString(), body);
  }
 
  /**
   *
   *
   * @template T
   * @param {string} url
   * @param {*} [body]
   * @return {Promise<T>}
   * @memberof SimpleJsonHttp
   */
  async delete<T>(url: string, body?: unknown): Promise<T> {
    return await this.simpleRequest("DELETE", url.toString(), body);
  }
 
  /**
   *
   * @template T
   * @param {string} method
   * @param {string} url
   * @param {*} [body]
   * @return {Promise<T>} Promise<T>
   * @memberof SimpleJsonHttp
   */
  async simpleRequest<T>(method: string, url: string, body?: unknown): Promise<T> {
    return await this.request<T>({ method, url, body });
  }
 
  /**
   *
   * @template T
   * @param {HttpRequestOptions} option
   * @return {Promise<T>} Promise<T>
   * @memberof SimpleJsonHttp
   */
  async request<T>(option: HttpRequestOptions): Promise<T> {
    return await this.client.request(option).then((response) => response.body);
  }
}