summaryrefslogtreecommitdiff
path: root/packages/taler-util/src/http-client/bank-revenue.ts
blob: 9dfcc4f64acb1e207d7ecec5fb4c1a9ee7cef641 (plain)
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
import { HttpRequestLibrary, makeBasicAuthHeader, readSuccessResponseJsonOrThrow } from "../http-common.js";
import { HttpStatusCode } from "../http-status-codes.js";
import { createPlatformHttpLib } from "../http.js";
import { FailCasesByMethod, ResultByMethod, opKnownHttpFailure, opSuccess, opUnknownFailure } from "../operation.js";
import { LongPollParams, PaginationParams, TalerRevenueApi, codecForMerchantIncomingHistory } from "./types.js";
import { addLongPollingParam, addPaginationParams } from "./utils.js";

export type TalerBankRevenueResultByMethod<prop extends keyof TalerRevenueHttpClient> = ResultByMethod<TalerRevenueHttpClient, prop>
export type TalerBankRevenueErrorsByMethod<prop extends keyof TalerRevenueHttpClient> = FailCasesByMethod<TalerRevenueHttpClient, prop>

/**
 * The API is used by the merchant (or other parties) to query 
 * for incoming transactions to their account.
 */
export class TalerRevenueHttpClient {
  httpLib: HttpRequestLibrary;

  constructor(
    readonly baseUrl: string,
    readonly username: string,
    httpClient?: HttpRequestLibrary,
  ) {
    this.httpLib = httpClient ?? createPlatformHttpLib();
  }
  // public readonly PROTOCOL_VERSION = "4:0:0";
  // isCompatible(version: string): boolean {
  //   const compare = LibtoolVersion.compare(this.PROTOCOL_VERSION, version)
  //   return compare?.compatible ?? false
  // }

  // /**
  //  * https://docs.taler.net/core/api-corebank.html#config
  //  * 
  //  */
  // async getConfig() {
  //   const url = new URL(`config`, this.baseUrl);
  //   const resp = await this.httpLib.fetch(url.href, {
  //     method: "GET"
  //   });
  //   switch (resp.status) {
  //     case HttpStatusCode.Ok: return opSuccess(resp, codecForCoreBankConfig())
  //     default: return opUnknownFailure(resp, await resp.text())
  //   }
  // }


  /**
   * https://docs.taler.net/core/api-bank-revenue.html#get--history
   * 
   * @returns 
   */
  async getHistory(auth: string, params?: PaginationParams & LongPollParams) {
    const url = new URL(`history`, this.baseUrl);
    addPaginationParams(url, params)
    addLongPollingParam(url, params)
    const resp = await this.httpLib.fetch(url.href, {
      method: "GET",
      headers: {
        Authorization: makeBasicAuthHeader(this.username, auth),
      }
    });
    switch (resp.status) {
      case HttpStatusCode.Ok: return opSuccess(resp, codecForMerchantIncomingHistory())
      case HttpStatusCode.BadRequest: return opKnownHttpFailure(resp.status, resp);
      case HttpStatusCode.Unauthorized: return opKnownHttpFailure(resp.status, resp);
      case HttpStatusCode.NotFound: return opKnownHttpFailure(resp.status, resp);
      default: return opUnknownFailure(resp, await resp.text())
    }
  }
}