better-auth organizations

When running organizationCreation's beforeCreate and afterCreate I don't see any request being passed in. It's only the organization details even though I am passing in the headers directly to the api (because I'm calling this from the server).
// Organization plugin setup
organization({
// ... schema config omitted ...
organizationCreation: {
// This hook should receive req but you're saying it doesn't
beforeCreate: async ({ organization }, req) => {
const urlFriendlyName = organization.name
.toLowerCase()
.replace(/[^\w\s-]/g, "")
.replace(/\s+/g, "-")
.replace(/-+/g, "-")
.trim();

const randomString = generateRandomString(7);

return {
data: {
...organization,
slug: `${urlFriendlyName}-${randomString}`,
}
};
},

// This hook also should receive req but doesn't
afterCreate: async ({ organization, user }, req) => {
try {
const customer = await stripe.customers.create({
name: organization.name,
metadata: {
id: organization.id,
type: "organization",
slug: organization.slug,
},
});

// Missing session token here
await auth.api.updateOrganization({
body: {
headers: {
'firestorm-auth.session_token':
},
data: {
// @ts-expect-error This is specified in additionalFields
stripe_customer_id: customer.id,
},
organizationId: organization.id,
},
});
} catch (error) {
console.error("Error creating Stripe customer:", error);
auth.api.deleteOrganization({
headers: req?.headers, // req might be undefined
body: {
organizationId: organization.id,
},
});
}
},
},
}),
// Organization plugin setup
organization({
// ... schema config omitted ...
organizationCreation: {
// This hook should receive req but you're saying it doesn't
beforeCreate: async ({ organization }, req) => {
const urlFriendlyName = organization.name
.toLowerCase()
.replace(/[^\w\s-]/g, "")
.replace(/\s+/g, "-")
.replace(/-+/g, "-")
.trim();

const randomString = generateRandomString(7);

return {
data: {
...organization,
slug: `${urlFriendlyName}-${randomString}`,
}
};
},

// This hook also should receive req but doesn't
afterCreate: async ({ organization, user }, req) => {
try {
const customer = await stripe.customers.create({
name: organization.name,
metadata: {
id: organization.id,
type: "organization",
slug: organization.slug,
},
});

// Missing session token here
await auth.api.updateOrganization({
body: {
headers: {
'firestorm-auth.session_token':
},
data: {
// @ts-expect-error This is specified in additionalFields
stripe_customer_id: customer.id,
},
organizationId: organization.id,
},
});
} catch (error) {
console.error("Error creating Stripe customer:", error);
auth.api.deleteOrganization({
headers: req?.headers, // req might be undefined
body: {
organizationId: organization.id,
},
});
}
},
},
}),
7 Replies
Kenny
KennyOP3w ago
// Create organization
const organization = await auth.api.createOrganization({
headers: req.headers, // I'm "correctly"? passing headers here
body: {
name: body.companyName,
slug: "", // Backend will generate automatically
company_size: body.companySize,
},
});
// Create organization
const organization = await auth.api.createOrganization({
headers: req.headers, // I'm "correctly"? passing headers here
body: {
name: body.companyName,
slug: "", // Backend will generate automatically
company_size: body.companySize,
},
});
Any help would be greatly appreciated! any chance anyone knows how to resolve this?
bekacru
bekacru3w ago
yeah it only passes the request object when it's a request from a client. we're considering making request a context instead so it can pass all the context from the endpoint. Feel free to open GH issue if you haven't.
Kenny
KennyOP3w ago
I haven’t yet but is there something better kind of workaround/hack I can use for it or do I need to wait for gh issue to be resolved?
bekacru
bekacru3w ago
yes. unless you can trigger it from the client instead
Kenny
KennyOP3w ago
Yes as in there’s a workaround or there isn’t? For this particular case I cannot trigger this from the client-side.
bekacru
bekacru3w ago
you should be able to pass request directly
await auth.api.createOrganization({
request: new Request({
headers: {}
}),
body: {
name: body.companyName,
slug: "", // Backend will generate automatically
company_size: body.companySize,
},
})
await auth.api.createOrganization({
request: new Request({
headers: {}
}),
body: {
name: body.companyName,
slug: "", // Backend will generate automatically
company_size: body.companySize,
},
})
Kenny
KennyOP3w ago
Awesome, I’ll try that out. Thanks!

Did you find this page helpful?