File size: 1,871 Bytes
c09f67c | 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 | import { createServerClient } from "@supabase/ssr";
import { cookies } from "next/headers";
import type { Database } from "../types";
const conWarn = console.warn;
const conLog = console.log;
const IGNORE_WARNINGS = [
"Using the user object as returned from supabase.auth.getSession()",
];
console.warn = (...args) => {
const match = args.find((arg) =>
typeof arg === "string"
? IGNORE_WARNINGS.find((warning) => arg.includes(warning))
: false,
);
if (!match) {
conWarn(...args);
}
};
console.log = (...args) => {
const match = args.find((arg) =>
typeof arg === "string"
? IGNORE_WARNINGS.find((warning) => arg.includes(warning))
: false,
);
if (!match) {
conLog(...args);
}
};
type CreateClientOptions = {
admin?: boolean;
schema?: "public" | "storage";
};
export async function createClient(options?: CreateClientOptions) {
const { admin = false, ...rest } = options ?? {};
const cookieStore = await cookies();
const key = admin
? process.env.SUPABASE_SERVICE_KEY!
: process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!;
const auth = admin
? {
persistSession: false,
autoRefreshToken: false,
detectSessionInUrl: false,
}
: {};
return createServerClient<Database>(
process.env.NEXT_PUBLIC_SUPABASE_URL!,
key,
{
...rest,
cookies: {
getAll() {
return cookieStore.getAll();
},
setAll(cookiesToSet) {
try {
for (const { name, value, options } of cookiesToSet) {
cookieStore.set(name, value, options);
}
} catch {
// The `setAll` method was called from a Server Component.
// This can be ignored if you have middleware refreshing
// user sessions.
}
},
},
auth,
},
);
}
|