All files / api/src/connectors/supabase base.ts

52.34% Statements 123/235
93.75% Branches 15/16
50% Functions 3/6
52.34% Lines 123/235

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 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 3111x               1x 12x 12x 12x 12x 12x 12x 12x 12x   12x   12x 19x 19x 19x 19x   10x 10x 10x   10x 10x 10x   10x 10x 10x 10x   12x 1x 1x   1x 1x 1x 1x   9x 9x 9x 9x 12x 1x 1x 12x   1x       8x 8x 8x 8x 8x       8x 8x 8x 8x   8x   8x   8x 4x 4x   8x 4x 4x   8x   8x 8x 8x 8x 8x   8x 8x 8x   8x 8x 8x 8x 8x   8x 2x 2x   2x 2x 2x 2x   8x 4x 4x   2x 2x 2x     4x     8x   1x                                                                                                                 1x 2x 2x 2x 2x 2x 2x 2x   2x   2x 2x 2x 2x 2x   2x 2x 2x   2x 2x 2x   2x 2x 2x 2x   2x 1x 1x   1x 1x 1x 1x 2x   1x                                                                               1x                                                                                            
import {
  getPostgrestServiceRoleKey,
  getPostgrestUrl,
  getSupabaseSecretKey,
} from '@api/constants';
import type { AppContext } from '@api/types/hono';
import type { z } from 'zod';
 
export const selectFromSupabase = async <T extends z.ZodType>(
  c: AppContext,
  table: string,
  queryParams: Record<string, string | undefined>,
  schema: T,
): Promise<z.infer<T>> => {
  const postgrestUrl = getPostgrestUrl(c);
  const postgrestServiceRoleKey = getPostgrestServiceRoleKey(c);
  const supabaseSecretKey = getSupabaseSecretKey(c);
 
  const url = new URL(`${postgrestUrl}/${table}`);
 
  for (const [key, value] of Object.entries(queryParams)) {
    if (value !== undefined) {
      url.searchParams.set(key, value);
    }
  }
 
  const headers: HeadersInit = {
    Authorization: `Bearer ${postgrestServiceRoleKey}`,
  };
 
  if (supabaseSecretKey) {
    headers.apiKey = supabaseSecretKey;
  }
 
  const response = await fetch(url, {
    method: 'GET',
    headers,
  });
 
  if (!response.ok) {
    throw new Error(
      `\
Failed to fetch from PostgREST:
${response.status} - ${response.statusText}
${await response.text()}`,
    );
  }
 
  const data = await response.json();
  try {
    const parsedData = schema.parse(data);
    return parsedData;
  } catch (error) {
    throw new Error(`Failed to parse data from PostgREST: ${error}`);
  }
};
 
export const insertIntoSupabase = async <
  InputSchema extends z.ZodType,
  OutputSchema extends z.ZodType | null,
>(
  c: AppContext,
  table: string,
  data: z.infer<InputSchema>,
  schema: OutputSchema,
  upsert = false,
): Promise<
  // If schema is not provided, return void
  OutputSchema extends z.ZodType ? z.infer<OutputSchema> : void
> => {
  const postgrestUrl = getPostgrestUrl(c);
  const postgrestServiceRoleKey = getPostgrestServiceRoleKey(c);
  const supabaseSecretKey = getSupabaseSecretKey(c);
 
  const url = new URL(`${postgrestUrl}/${table}`);
 
  const preferArr = [];
 
  if (upsert) {
    preferArr.push('resolution=merge-duplicates');
  }
 
  if (schema) {
    preferArr.push('return=representation');
  }
 
  const prefer = preferArr.join(', ');
 
  const headers: HeadersInit = {
    'Content-Type': 'application/json',
    Authorization: `Bearer ${postgrestServiceRoleKey}`,
    Prefer: prefer,
  };
 
  if (supabaseSecretKey) {
    headers.apiKey = supabaseSecretKey;
  }
 
  const response = await fetch(url, {
    method: 'POST',
    headers,
    body: JSON.stringify(data),
  });
 
  if (!response.ok) {
    throw new Error(
      `\
Failed to insert into PostgREST:
${response.status} - ${response.statusText}
${await response.text()}`,
    );
  }
 
  if (!schema) {
    return undefined as OutputSchema extends z.ZodType ? never : undefined;
  }
 
  const rawInsertedData = await response.json();
  try {
    return schema.parse(rawInsertedData) as OutputSchema extends z.ZodType
      ? never
      : undefined;
  } catch (error) {
    throw new Error(`Failed to parse data from PostgREST: ${error}`);
  }
};
 
export const updateInSupabase = async <
  InputSchema extends z.ZodType,
  OutputSchema extends z.ZodType,
>(
  c: AppContext,
  table: string,
  id: string,
  data: z.infer<InputSchema>,
  schema: OutputSchema | null,
): Promise<
  // If schema is not provided, return void
  OutputSchema extends z.ZodType ? z.infer<OutputSchema> : void
> => {
  const postgrestUrl = getPostgrestUrl(c);
  const postgrestServiceRoleKey = getPostgrestServiceRoleKey(c);
  const supabaseSecretKey = getSupabaseSecretKey(c);
 
  const url = new URL(`${postgrestUrl}/${table}`);
  url.searchParams.set('id', `eq.${id}`);
 
  const headers: HeadersInit = {
    'Content-Type': 'application/json',
    Authorization: `Bearer ${postgrestServiceRoleKey}`,
    Prefer: 'return=representation',
  };
  if (supabaseSecretKey) {
    headers.apiKey = supabaseSecretKey;
  }
 
  const response = await fetch(url, {
    method: 'PATCH',
    headers,
    body: JSON.stringify(data),
  });
 
  if (!response.ok) {
    throw new Error(
      `\
Failed to update in PostgREST:
${response.status} - ${response.statusText}
${await response.text()}`,
    );
  }
 
  const rawUpdatedData = await response.json();
  try {
    if (!schema) {
      return undefined as OutputSchema extends z.ZodType ? never : undefined;
    }
    return schema.parse(rawUpdatedData) as OutputSchema extends z.ZodType
      ? never
      : undefined;
  } catch (error) {
    throw new Error(`Failed to parse data from PostgREST: ${error}`);
  }
};
 
export const deleteFromSupabase = async (
  c: AppContext,
  table: string,
  params: Record<string, string>,
): Promise<void> => {
  const postgrestUrl = getPostgrestUrl(c);
  const postgrestServiceRoleKey = getPostgrestServiceRoleKey(c);
  const supabaseSecretKey = getSupabaseSecretKey(c);
 
  const url = new URL(`${postgrestUrl}/${table}`);
 
  for (const [key, value] of Object.entries(params)) {
    if (value !== undefined) {
      url.searchParams.set(key, value);
    }
  }
 
  const headers: Record<string, string> = {
    Authorization: `Bearer ${postgrestServiceRoleKey}`,
  };
 
  if (supabaseSecretKey) {
    headers.apiKey = supabaseSecretKey;
  }
 
  const response = await fetch(url, {
    method: 'DELETE',
    headers,
  });
 
  if (!response.ok) {
    throw new Error(
      `\
Failed to delete from PostgREST:
${response.status} - ${response.statusText}
${await response.text()}`,
    );
  }
};
 
export const rpcFunction = async (
  c: AppContext,
  functionName: string,
  params: Record<string, string>,
): Promise<void> => {
  const postgrestUrl = getPostgrestUrl(c);
  const postgrestServiceRoleKey = getPostgrestServiceRoleKey(c);
  const supabaseSecretKey = getSupabaseSecretKey(c);
 
  const url = new URL(`${postgrestUrl}/rpc/${functionName}`);
 
  for (const [key, value] of Object.entries(params)) {
    if (value !== undefined) {
      url.searchParams.set(key, value);
    }
  }
 
  const headers: HeadersInit = {
    Authorization: `Bearer ${postgrestServiceRoleKey}`,
  };
 
  if (supabaseSecretKey) {
    headers.apiKey = supabaseSecretKey;
  }
 
  const response = await fetch(url, {
    method: 'POST',
    headers,
  });
 
  if (!response.ok) {
    throw new Error(
      `\
Failed to call RPC function:
${response.status} - ${response.statusText}
${await response.text()}`,
    );
  }
};
 
export const rpcFunctionWithResponse = async <T extends z.ZodType>(
  c: AppContext,
  functionName: string,
  params: Record<string, unknown>,
  schema: T,
): Promise<z.Infer<T>> => {
  const postgrestUrl = getPostgrestUrl(c);
  const postgrestServiceRoleKey = getPostgrestServiceRoleKey(c);
  const supabaseSecretKey = getSupabaseSecretKey(c);
 
  const url = new URL(`${postgrestUrl}/rpc/${functionName}`);
 
  const headers: HeadersInit = {
    'Content-Type': 'application/json',
    Authorization: `Bearer ${postgrestServiceRoleKey}`,
  };
 
  if (supabaseSecretKey) {
    headers.apiKey = supabaseSecretKey;
  }
 
  const response = await fetch(url, {
    method: 'POST',
    headers,
    body: JSON.stringify(params),
  });
 
  if (!response.ok) {
    throw new Error(
      `\
Failed to fetch from PostgREST:
${response.status} - ${response.statusText}
${await response.text()}`,
    );
  }
 
  const data = await response.json();
  try {
    const parsedData = schema.parse(data);
    return parsedData;
  } catch (error) {
    throw new Error(
      `Failed to parse data from PostgREST function ${functionName} output: ${error}`,
    );
  }
};