pub mod handlers;
pub mod rbac;
pub mod types;
use std::collections::HashMap;
use async_trait::async_trait;
use better_auth_core::error::AuthResult;
use better_auth_core::plugin::{AuthContext, AuthPlugin, AuthRoute};
use better_auth_core::types::{AuthRequest, AuthResponse, HttpMethod};
#[derive(Debug, Clone, Default)]
pub struct RolePermissions {
pub organization: Vec<String>,
pub member: Vec<String>,
pub invitation: Vec<String>,
}
#[derive(Debug, Clone, better_auth_core::PluginConfig)]
#[plugin(name = "OrganizationPlugin")]
pub struct OrganizationConfig {
#[config(default = true)]
pub allow_user_to_create_organization: bool,
#[config(default = None)]
pub organization_limit: Option<usize>,
#[config(default = Some(100))]
pub membership_limit: Option<usize>,
#[config(default = "owner".to_string())]
pub creator_role: String,
#[config(default = 60 * 60 * 48)]
pub invitation_expires_in: u64,
#[config(default = Some(100))]
pub invitation_limit: Option<usize>,
#[config(default = false)]
pub disable_organization_deletion: bool,
#[config(default = HashMap::new(), skip)]
pub roles: HashMap<String, RolePermissions>,
}
pub struct OrganizationPlugin {
config: OrganizationConfig,
}
#[async_trait]
impl<S: better_auth_core::AuthSchema> AuthPlugin<S> for OrganizationPlugin {
fn name(&self) -> &'static str {
"organization"
}
fn routes(&self) -> Vec<AuthRoute> {
vec![
AuthRoute::post("/organization/create", "create_organization"),
AuthRoute::post("/organization/update", "update_organization"),
AuthRoute::post("/organization/delete", "delete_organization"),
AuthRoute::get("/organization/list", "list_organizations"),
AuthRoute::get(
"/organization/get-full-organization",
"get_full_organization",
),
AuthRoute::post("/organization/check-slug", "check_slug"),
AuthRoute::post("/organization/set-active", "set_active_organization"),
AuthRoute::post("/organization/leave", "leave_organization"),
AuthRoute::get("/organization/get-active-member", "get_active_member"),
AuthRoute::get(
"/organization/get-active-member-role",
"get_active_member_role",
),
AuthRoute::get("/organization/list-members", "list_members"),
AuthRoute::post("/organization/remove-member", "remove_member"),
AuthRoute::post("/organization/update-member-role", "update_member_role"),
AuthRoute::post("/organization/invite-member", "invite_member"),
AuthRoute::get("/organization/get-invitation", "get_invitation"),
AuthRoute::get("/organization/list-invitations", "list_invitations"),
AuthRoute::get(
"/organization/list-user-invitations",
"list_user_invitations",
),
AuthRoute::post("/organization/accept-invitation", "accept_invitation"),
AuthRoute::post("/organization/reject-invitation", "reject_invitation"),
AuthRoute::post("/organization/cancel-invitation", "cancel_invitation"),
AuthRoute::post("/organization/has-permission", "has_permission"),
]
}
async fn on_request(
&self,
req: &AuthRequest,
ctx: &AuthContext<S>,
) -> AuthResult<Option<AuthResponse>> {
match (req.method(), req.path()) {
(HttpMethod::Post, "/organization/create") => Ok(Some(
handlers::org::handle_create_organization(req, ctx, &self.config).await?,
)),
(HttpMethod::Post, "/organization/update") => Ok(Some(
handlers::org::handle_update_organization(req, ctx, &self.config).await?,
)),
(HttpMethod::Post, "/organization/delete") => Ok(Some(
handlers::org::handle_delete_organization(req, ctx, &self.config).await?,
)),
(HttpMethod::Get, "/organization/list") => Ok(Some(
handlers::org::handle_list_organizations(req, ctx).await?,
)),
(HttpMethod::Get, "/organization/get-full-organization") => Ok(Some(
handlers::org::handle_get_full_organization(req, ctx, &self.config).await?,
)),
(HttpMethod::Post, "/organization/check-slug") => {
Ok(Some(handlers::org::handle_check_slug(req, ctx).await?))
}
(HttpMethod::Post, "/organization/set-active") => Ok(Some(
handlers::org::handle_set_active_organization(req, ctx).await?,
)),
(HttpMethod::Post, "/organization/leave") => Ok(Some(
handlers::org::handle_leave_organization(req, ctx, &self.config).await?,
)),
(HttpMethod::Get, "/organization/get-active-member") => Ok(Some(
handlers::member::handle_get_active_member(req, ctx).await?,
)),
(HttpMethod::Get, "/organization/get-active-member-role") => Ok(Some(
handlers::member::handle_get_active_member_role(req, ctx).await?,
)),
(HttpMethod::Get, "/organization/list-members") => {
Ok(Some(handlers::member::handle_list_members(req, ctx).await?))
}
(HttpMethod::Post, "/organization/remove-member") => Ok(Some(
handlers::member::handle_remove_member(req, ctx, &self.config).await?,
)),
(HttpMethod::Post, "/organization/update-member-role") => Ok(Some(
handlers::member::handle_update_member_role(req, ctx, &self.config).await?,
)),
(HttpMethod::Post, "/organization/invite-member") => Ok(Some(
handlers::invitation::handle_invite_member(req, ctx, &self.config).await?,
)),
(HttpMethod::Get, "/organization/get-invitation") => Ok(Some(
handlers::invitation::handle_get_invitation(req, ctx).await?,
)),
(HttpMethod::Get, "/organization/list-invitations") => Ok(Some(
handlers::invitation::handle_list_invitations(req, ctx).await?,
)),
(HttpMethod::Get, "/organization/list-user-invitations") => Ok(Some(
handlers::invitation::handle_list_user_invitations(req, ctx).await?,
)),
(HttpMethod::Post, "/organization/accept-invitation") => Ok(Some(
handlers::invitation::handle_accept_invitation(req, ctx, &self.config).await?,
)),
(HttpMethod::Post, "/organization/reject-invitation") => Ok(Some(
handlers::invitation::handle_reject_invitation(req, ctx).await?,
)),
(HttpMethod::Post, "/organization/cancel-invitation") => Ok(Some(
handlers::invitation::handle_cancel_invitation(req, ctx, &self.config).await?,
)),
(HttpMethod::Post, "/organization/has-permission") => Ok(Some(
handlers::handle_has_permission(req, ctx, &self.config).await?,
)),
_ => Ok(None),
}
}
}