roguesherlock
roguesherlock
Explore posts from servers
BABetter Auth
Created by roguesherlock on 2/6/2025 in #help
How do I setup bearer auth for social logins?
As I understand the current bearer docs are only for email/password sign ins, right? How do I setup and save bearer tokens in the client when the user signs in via social login ? I have a basic hono api, and a react spa. Both are on different subdomains so I can’t use cookies for session easily. Also the cors is giving me a nightmare lmao. Anyways, so I’m trying to use bearer based auth but I don’t how to setup for social logins. What I would imagine should happen is that my hono api redirects me to my callback url with the code in the url which I can then store when my spa boots up. Does it make sense? I realize there might be security issues with this and I should prefer cookies but this is just a toy project of mine.
23 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
I keep getting this error when I sign up using email password in my next.js app
TypeError: The "payload" argument must be of type object. Received null
at async signUpAction (actions/auth.ts:26:17)
24 | export async function signUpAction(formData: FormData) {
25 | try {
> 26 | const data = await auth.api.signUpEmail({
| ^
27 | body: {
28 | name: formData.get("name") as string,
29 | email: formData.get("email") as string, {
code: 'ERR_INVALID_ARG_TYPE'
}
POST /sign-up 200 in 660ms
TypeError: The "payload" argument must be of type object. Received null
at async signUpAction (actions/auth.ts:26:17)
24 | export async function signUpAction(formData: FormData) {
25 | try {
> 26 | const data = await auth.api.signUpEmail({
| ^
27 | body: {
28 | name: formData.get("name") as string,
29 | email: formData.get("email") as string, {
code: 'ERR_INVALID_ARG_TYPE'
}
POST /sign-up 200 in 660ms
auth.ts
export const auth = betterAuth({
database: prismaAdapter(db, {
provider: "postgresql",
}),
// baseURL,
emailAndPassword: {
enabled: true,
},
plugins: [nextCookies()],
})
export const auth = betterAuth({
database: prismaAdapter(db, {
provider: "postgresql",
}),
// baseURL,
emailAndPassword: {
enabled: true,
},
plugins: [nextCookies()],
})
db.ts
const projectDir = process.cwd()
loadEnvConfig(projectDir)
neonConfig.webSocketConstructor = WebSocket
const connectionString = `${env.DATABASE_URL}`

const pool = new Pool({ connectionString })
const adapter = new PrismaNeon(pool)
export const db = new PrismaClient({ adapter })
const projectDir = process.cwd()
loadEnvConfig(projectDir)
neonConfig.webSocketConstructor = WebSocket
const connectionString = `${env.DATABASE_URL}`

const pool = new Pool({ connectionString })
const adapter = new PrismaNeon(pool)
export const db = new PrismaClient({ adapter })
40 replies
FFilament
Created by roguesherlock on 9/9/2024 in #❓┊help
How to create a cluster for an individual record?
Hey I'm new to filament 3 so would love your help with this. Basically I have a client resource that has a lot of other related resources related to it (forms, sites, logos, etc). I want to basically create a cluster of these related resources for each individual client such that when a user clicks on a client on the dashboard, they see a sub nav for that client with links to these individual resources filtered for that client (overview, forms, sites, logos, etc). Does it make senes? Semantically cluster seems like the right fit but I just don't know how to create a cluster for individual client record like that.
2 replies
DTDrizzle Team
Created by roguesherlock on 7/18/2023 in #help
infer model with relations
is possible to infer model along with all its relations? Like if I have projects and projectsRelations which includes tasks can I create a type Project that includes tasks?
export const projects = mysqlTable(
"projects",
{
id: serial("id").primaryKey(),
name: varchar("name", { length: 256 }),
}
)

export const projectsRelations = relations(projects, ({ many }) => ({
tasks: many(tasks),
}))


export type Project = InferModel<<projects-with-its-relations>?>

// currently I just do
export type Project = InferModel<typeof projects> & {tasks?: Task[]}
export const projects = mysqlTable(
"projects",
{
id: serial("id").primaryKey(),
name: varchar("name", { length: 256 }),
}
)

export const projectsRelations = relations(projects, ({ many }) => ({
tasks: many(tasks),
}))


export type Project = InferModel<<projects-with-its-relations>?>

// currently I just do
export type Project = InferModel<typeof projects> & {tasks?: Task[]}
2 replies