Multi-tenancy: the inbuxa-features crate, the permission ceiling and tenant disk quota (MT-12, MT-13, MT-14, MT-15, MT-16, MT-19, MT-20)

New crate crates/features (inbuxa-features), AGPL-3.0-only, holding the
tenancy rules. Hooks in common: a tenant's roles and permission lists cap
its people's permissions; a change to a tenant, or to a role a tenant holds,
drops its members' cached permissions; delivery and every other write check
the tenant's maxDiskQuota; usedDiskQuota reads the tenant usage counter.
The default Tenant Administrator role gains sysTenantGet and sysTenantQuery.
This commit is contained in:
2026-09-18 15:19:58 -07:00
parent b6b345a129
commit ad0db8b2b0
18 changed files with 1398 additions and 5 deletions
+18 -3
View File
@@ -31,9 +31,9 @@ impl Server {
.add_context(|err| err.caused_by(trc::location!()).account_id(account_id))
}
#[cfg(not(feature = "enterprise"))]
pub async fn get_used_quota_tenant(&self, _tenant_id: u32) -> trc::Result<i64> {
Ok(0)
// inbuxa: MT-20: storage used by all a tenant's members together
pub async fn get_used_quota_tenant(&self, tenant_id: u32) -> trc::Result<i64> {
inbuxa_features::tenancy::quota::used(&self.core.storage.data, tenant_id).await
}
pub async fn has_available_quota(
@@ -52,6 +52,21 @@ impl Server {
}
}
// inbuxa: MT-19: the tenant's limit applies too, whichever is reached first
if let Some(tenant_id) = account.id_tenant {
let tenant = self.tenant(tenant_id).await?;
if tenant.quota_disk != 0 {
let used_quota = self.get_used_quota_tenant(tenant_id).await?.max(0) as u64;
if used_quota + item_size > tenant.quota_disk {
return Err(trc::LimitEvent::TenantQuota
.into_err()
.ctx(trc::Key::Id, tenant_id)
.ctx(trc::Key::Limit, tenant.quota_disk)
.ctx(trc::Key::Size, used_quota));
}
}
}
Ok(())
}