Tenuka
Tenuka
Explore posts from servers
BABetter Auth
Created by Tarun kumar on 2/25/2025 in #help
Magic Link Type Error
in vercel and cloudflare
10 replies
BABetter Auth
Created by Tarun kumar on 2/25/2025 in #help
Magic Link Type Error
not open next
10 replies
BABetter Auth
Created by Tarun kumar on 2/25/2025 in #help
Magic Link Type Error
anyone got the way to fix it
10 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
I don't need to edit the middleware , the problem is in better auth not getting the server
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
export const authMiddleware = (): MiddlewareHandler => {
return async (c: Context<AppContext>, next) => {
const authContext = auth({ ...c.env });
const userSession = await authContext.api.getSession({
headers: c.req.raw.headers,
});

c.set("session", userSession?.session ?? null);
c.set("user", userSession?.user ?? null);
c.set("auth", authContext);

await next();
};
};
export const authMiddleware = (): MiddlewareHandler => {
return async (c: Context<AppContext>, next) => {
const authContext = auth({ ...c.env });
const userSession = await authContext.api.getSession({
headers: c.req.raw.headers,
});

c.set("session", userSession?.session ?? null);
c.set("user", userSession?.user ?? null);
c.set("auth", authContext);

await next();
};
};
I need to pass the cookies to here
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
because its hosted on different platforms
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
I can do that just in the middleware , you can't get the next cookies in the hono server
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
yes I understand You don't get what i'm telling you , I cant pass the cookie to the hono server
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
import { jstack } from "jstack";
import { env } from "hono/adapter";
import { HTTPException } from "hono/http-exception";

import { Resend } from "resend";
import { auth } from "./db/auth.server";
import { getDB } from "./db/drizzle";

export interface AppContext {
Bindings: Env;
Variables: {
user: ReturnType<typeof auth>["$Infer"]["Session"]["user"] | null;
session: ReturnType<typeof auth>["$Infer"]["Session"]["session"] | null;
auth: ReturnType<typeof auth>;
};
}

export const j = jstack.init<AppContext>();

const publicDBMiddleware = j.middleware(async ({ c, next }) => {
const db = getDB({ ...c.env });
return await next({ db });
});

const publicResendMiddleware = j.middleware(async ({ c, next }) => {
const { AUTH_RESEND_KEY } = env(c);
const resend = new Resend(AUTH_RESEND_KEY);

return await next({ resend });
});

const publicAuthMiddleware = j.middleware(async ({ c, next }) => {
const authInstance = c.get("auth");

return await next({ auth: authInstance });
});

const adminDBMiddleware = j.middleware(async ({ c, next }) => {
const user = c.get("user");

if (!user) {
throw new HTTPException(401, {
message: "Unauthorized access. Please sign in to continue.",
});
}

if (user?.role !== "admin") {
throw new HTTPException(403, {
message:
"Access denied. You do not have the necessary permissions to perform this action. Please contact the administration for assistance.",
});
}
const db = getDB({ ...c.env });

return await next({ db });
});

export const publicDefaultProcedure = j.procedure;
export const publicAuthProcedure = j.procedure.use(publicAuthMiddleware);
export const publicDBProcedure = j.procedure.use(publicDBMiddleware);
export const publicResendProcedure = j.procedure.use(publicResendMiddleware);
export const adminDBProcedure = j.procedure.use(adminDBMiddleware);
import { jstack } from "jstack";
import { env } from "hono/adapter";
import { HTTPException } from "hono/http-exception";

import { Resend } from "resend";
import { auth } from "./db/auth.server";
import { getDB } from "./db/drizzle";

export interface AppContext {
Bindings: Env;
Variables: {
user: ReturnType<typeof auth>["$Infer"]["Session"]["user"] | null;
session: ReturnType<typeof auth>["$Infer"]["Session"]["session"] | null;
auth: ReturnType<typeof auth>;
};
}

export const j = jstack.init<AppContext>();

const publicDBMiddleware = j.middleware(async ({ c, next }) => {
const db = getDB({ ...c.env });
return await next({ db });
});

const publicResendMiddleware = j.middleware(async ({ c, next }) => {
const { AUTH_RESEND_KEY } = env(c);
const resend = new Resend(AUTH_RESEND_KEY);

return await next({ resend });
});

const publicAuthMiddleware = j.middleware(async ({ c, next }) => {
const authInstance = c.get("auth");

return await next({ auth: authInstance });
});

const adminDBMiddleware = j.middleware(async ({ c, next }) => {
const user = c.get("user");

if (!user) {
throw new HTTPException(401, {
message: "Unauthorized access. Please sign in to continue.",
});
}

if (user?.role !== "admin") {
throw new HTTPException(403, {
message:
"Access denied. You do not have the necessary permissions to perform this action. Please contact the administration for assistance.",
});
}
const db = getDB({ ...c.env });

return await next({ db });
});

export const publicDefaultProcedure = j.procedure;
export const publicAuthProcedure = j.procedure.use(publicAuthMiddleware);
export const publicDBProcedure = j.procedure.use(publicDBMiddleware);
export const publicResendProcedure = j.procedure.use(publicResendMiddleware);
export const adminDBProcedure = j.procedure.use(adminDBMiddleware);
evn If I didi that I cant run the admin procedures cus I don't have a session in the server
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
okey
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
import { createClient } from "jstack"; import { AppRouter } from "~/server"; /** * Your type-safe API client * @see https://jstack.app/docs/backend/api-client */ export const client = createClient<AppRouter>({ baseUrl: ${process.env.NEXT_PUBLIC_SERVER_URL ? process.env.NEXT_PUBLIC_SERVER_URL : "http://127.0.0.1:8787"}/api, credentials: "include", fetch: (input: RequestInfo | URL, requestInit?: RequestInit) => { return fetch(input, { method: requestInit?.method ?? "GET", credentials: "include", headers: { ...requestInit?.headers, }, body: requestInit?.body ?? null, }); }, }); it is the hono client
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
I cant get cookies for next in the hono server cus process is undefined
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
yes
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
How to do that
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
No description
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
No description
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
oeky
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
.env.local has the 127.0.0.1:8787 as a variable so that localhost gets overwritten
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
but the env is the one loading ( thats a error of mine )
159 replies
BABetter Auth
Created by Sithu Khant on 2/17/2025 in #help
Hono and Better-Auth
alright but isnt cross domain thing working
159 replies