All files / packages/services/src httpClients.ts

100% Statements 56/56
100% Branches 38/38
100% Functions 18/18
100% Lines 52/52

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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 2311x                   1x                                               18x           26x 26x 26x       22x   4x 2x 2x 1x       4x 1x 1x 1x         22x   22x 20x     2x                 22x         22x 22x 21x     22x   22x             22x   22x 3x               19x                 12x               4x               2x               2x       2x                                                               1x       7x       8x 8x 8x   8x   8x           8x   8x                   7x                 8x 4x 1x 1x 1x   1x       1x 1x  
import { Context, Effect, Layer } from "effect";
 
import { ApiErrorBody, FetchResponse, HttpError } from "@repo/types/http";
 
import { type DomainError } from "@repo/effect-utils";
 
import {
  createRequestEffect,
  type EffectRequestPolicy,
  REQUEST_POLICY,
} from "./effectRequest";
 
type AuthType = "bearer" | "basic";
 
interface BasicAuthConfig {
  username: string;
  password: string;
}
 
interface AuthConfig {
  type: AuthType;
  basic?: BasicAuthConfig;
}
 
interface HttpServiceOptions {
  getToken?: () => Promise<string | null>;
  auth?: AuthConfig;
  effectPolicy?: {
    read?: EffectRequestPolicy;
    write?: EffectRequestPolicy;
    idempotentWrite?: EffectRequestPolicy;
  };
}
 
export class HttpService {
  private readonly baseApi: string;
  private getToken?: () => Promise<string | null>;
  private authConfig?: AuthConfig;
 
  constructor(baseUrl: string, options?: HttpServiceOptions) {
    this.baseApi = baseUrl;
    this.getToken = options?.getToken;
    this.authConfig = options?.auth;
  }
 
  private async applyAuth(headers: Record<string, string>) {
    if (!this.authConfig) return;
 
    if (this.authConfig.type === "bearer" && this.getToken) {
      const token = await this.getToken();
      if (token) {
        headers.Authorization = `Bearer ${token}`;
      }
    }
 
    if (this.authConfig.type === "basic" && this.authConfig.basic) {
      const { username, password } = this.authConfig.basic;
      const encoded = btoa(`${username}:${password}`);
      headers.Authorization = `Basic ${encoded}`;
    }
  }
 
  private async parseBody(res: Response) {
    const contentType = res.headers.get("content-type") ?? "";
 
    if (contentType.includes("application/json")) {
      return res.json();
    }
 
    return res.text();
  }
 
  private async request<T, E = ApiErrorBody>(
    method: string,
    endpoint: string,
    body?: unknown,
    config?: RequestInit,
  ): Promise<FetchResponse<T>> {
    const headers: Record<string, string> = {
      Accept: "application/json",
      ...(config?.headers as Record<string, string>),
    };
 
    const isFormData = body instanceof FormData;
    if (!isFormData) {
      headers["Content-Type"] = "application/json";
    }
 
    await this.applyAuth(headers);
 
    const res = await fetch(`${this.baseApi}${endpoint}`, {
      ...config,
      method,
      headers,
      body: body ? (isFormData ? body : JSON.stringify(body)) : undefined,
    });
 
    const responseData = await this.parseBody(res);
 
    if (!res.ok) {
      throw {
        ok: false,
        status: res.status,
        statusText: res.statusText,
        data: responseData as E,
      } satisfies HttpError<E>;
    }
 
    return {
      ok: true,
      status: res.status,
      statusText: res.statusText,
      data: responseData as T,
    };
  }
 
  get<T, E = ApiErrorBody>(endpoint: string, config?: RequestInit) {
    return this.request<T, E>("GET", endpoint, undefined, config);
  }
 
  post<T, E = ApiErrorBody>(
    endpoint: string,
    data?: unknown,
    config?: RequestInit,
  ) {
    return this.request<T, E>("POST", endpoint, data, config);
  }
 
  put<T, E = ApiErrorBody>(
    endpoint: string,
    data?: unknown,
    config?: RequestInit,
  ) {
    return this.request<T, E>("PUT", endpoint, data, config);
  }
 
  patch<T, E = ApiErrorBody>(
    endpoint: string,
    data?: unknown,
    config?: RequestInit,
  ) {
    return this.request<T, E>("PATCH", endpoint, data, config);
  }
 
  delete<T, E = ApiErrorBody>(endpoint: string, config?: RequestInit) {
    return this.request<T, E>("DELETE", endpoint, undefined, config);
  }
}
 
// --- Effect Implementation ---
 
export interface HttpClient {
  readonly get: <T>(
    endpoint: string,
    config?: RequestInit,
  ) => Effect.Effect<T, DomainError>;
  readonly post: <T>(
    endpoint: string,
    body?: unknown,
    config?: RequestInit,
  ) => Effect.Effect<T, DomainError>;
  readonly put: <T>(
    endpoint: string,
    body?: unknown,
    config?: RequestInit,
  ) => Effect.Effect<T, DomainError>;
  readonly patch: <T>(
    endpoint: string,
    body?: unknown,
    config?: RequestInit,
  ) => Effect.Effect<T, DomainError>;
  readonly delete: <T>(
    endpoint: string,
    config?: RequestInit,
  ) => Effect.Effect<T, DomainError>;
}
 
export const HttpClient = Context.GenericTag<HttpClient>(
  "@repo/services/HttpClient",
);
 
export const makeHttpClient = (
  baseUrl: string,
  options?: HttpServiceOptions,
) => {
  const service = new HttpService(baseUrl, options);
  const readPolicy = options?.effectPolicy?.read ?? REQUEST_POLICY.READ;
  const writePolicy = options?.effectPolicy?.write ?? REQUEST_POLICY.WRITE;
  const idempotentWritePolicy =
    options?.effectPolicy?.idempotentWrite ?? REQUEST_POLICY.IDEMPOTENT_WRITE;
 
  const request = <T>(
    method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE",
    endpoint: string,
    body?: unknown,
    config?: RequestInit,
  ) =>
    createRequestEffect(
      async () => {
        const response = await (method === "GET" || method === "DELETE"
          ? service[method.toLowerCase() as "get" | "delete"]<T>(
              endpoint,
              config,
            )
          : service[method.toLowerCase() as "post" | "put" | "patch"]<T>(
              endpoint,
              body,
              config,
            ));
        return response.data;
      },
      method === "GET"
        ? readPolicy
        : method === "DELETE"
          ? idempotentWritePolicy
          : writePolicy,
    );
 
  return HttpClient.of({
    get: (endpoint, config) => request("GET", endpoint, undefined, config),
    post: (endpoint, body, config) => request("POST", endpoint, body, config),
    put: (endpoint, body, config) => request("PUT", endpoint, body, config),
    patch: (endpoint, body, config) => request("PATCH", endpoint, body, config),
    delete: (endpoint, config) =>
      request("DELETE", endpoint, undefined, config),
  });
};
 
export const HttpClientLive = (baseUrl: string, options?: HttpServiceOptions) =>
  Layer.succeed(HttpClient, makeHttpClient(baseUrl, options));