Drop-in REBAC engine for Django, SpiceDB-compatible, with a pure-Django LocalBackend.
Project description
django-zed-rebac
SpiceDB-compatible REBAC for any Django project. Drop in, declare your permission schema in a per-app
permissions.zedfile, and every queryset, save, and method call is gated against the effective user.
Status: alpha. The package is published on PyPI and the core local REBAC path is usable:
LocalBackend,RebacMixin/manager, schema parser,rebac sync, caveats, expirations, schema overrides, audit events, middleware, system checks, DRF helpers, Celery actor propagation, the Strawberry GraphQL adapter, a REBAC-safe Strawberry-Django optimizer, and field-backed structural relations.SpiceDBBackendand MCP integration are roadmap work. Track the milestones at docs/ARCHITECTURE.md § Roadmap.
What it is
django-zed-rebac ports SpiceDB's relation-based access control model into Django. You author your permission schema as a SpiceDB-native .zed file alongside your app; the plugin loads it into DB tables on install with noupdate=True semantics that preserve admin edits, and admins tweak overrides through the admin UI (or your own GraphQL layer).
The backend interface is designed around one Python API:
LocalBackend— pure Django, evaluates permissions against local relationship rows. Zero external infrastructure. Suitable up to moderate graph sizes and depth <= 8.SpiceDBBackend— planned adapter for the officialauthzedPython client. The class exists today as a clear stub, butREBAC_BACKEND = "spicedb"is not a supported runtime path yet.
Add the mixin to your model and Post.objects.all() returns only what the user can read. Add Model.objects.with_actor(actor) for explicit actor scoping in Celery tasks, GraphQL resolvers, management commands, and other non-HTTP entrypoints — actor can be a Django User, a registered Agent, an agents/grant (agent-acting-on-behalf-of-user, shipped by your agents app), or anything @rebac_subject-registered. Typed shorthands as_user(user) and as_agent(agent, on_behalf_of=user) cover the common cases. The plugin itself only ships auth/user and auth/group schema (mapped onto django.contrib.auth); agents/agent, agents/grant, auth/apikey, and other subject types live in your own apps.
Quickstart
# settings.py
INSTALLED_APPS = [
"django.contrib.auth",
"django.contrib.contenttypes",
# ...
"rebac",
"blog",
]
AUTHENTICATION_BACKENDS = [
"rebac.backends.RebacBackend",
"django.contrib.auth.backends.ModelBackend",
]
REBAC_BACKEND = "local"
// blog/permissions.zed
// @rebac_package: blog
// @rebac_package_version: 0.1.0
// @rebac_schema_revision: 1
definition blog/post {
relation owner: auth/user
relation viewer: auth/user | auth/group#member | auth/user:*
permission read = owner + viewer
permission write = owner
permission delete = owner
}
# blog/apps.py
class BlogConfig(AppConfig):
name = "blog"
rebac_schema = "permissions.zed" # relative to the app's package dir
# blog/models.py
from django.db import models
from rebac import RebacMixin
class Post(RebacMixin, models.Model):
title = models.CharField(max_length=200)
body = models.TextField()
author = models.ForeignKey("auth.User", on_delete=models.CASCADE)
class Meta:
rebac_resource_type = "blog/post"
python manage.py migrate # creates Relationship + Schema* tables
python manage.py rebac sync # loads permissions.zed into Schema* tables
# blog/views.py
def post_detail(request, pk):
post = get_object_or_404(Post.objects.with_actor(request.user), pk=pk)
return render(request, "post.html", {"post": post})
That's the end-to-end flow. The same Post.objects.with_actor(...) pattern works in DRF viewsets, Celery tasks, GraphQL resolvers, management commands, and future MCP tools — the actor can be a Django User, an Agent, an agents/grant, or any registered subject. Typed shorthands as_user(request.user) and as_agent(agent, on_behalf_of=request.user) cover the common cases.
Documentation
| Doc | When to read it |
|---|---|
| docs/ARCHITECTURE.md | You're integrating, contributing, or evaluating fit. Architecture, public API, the three storage tiers, settings, surface integrations, determinism, testing, roadmap. |
| docs/ZED.md | You're writing permission schemas. How to define permissions for users, groups, AI agents (Grant pattern), Celery tasks, future MCP tools, hierarchical resources, time-bound access, arbitrary Python entities. Patterns library and anti-patterns. |
Why use this
| Problem | Existing options | What django-zed-rebac does |
|---|---|---|
| Per-object permissions in Django | django-guardian (per-object ACL via GenericFK; no JOIN propagation; no graph traversal) |
True REBAC graph; SpiceDB-compatible; manager-level queryset scoping; cross-relation propagation. |
| Run SpiceDB-style permissions locally without infrastructure | None — SpiceDB itself is a Go binary that needs Postgres + a sidecar | LocalBackend: pure-Django graph evaluation over relationship rows. Same API surface the planned SpiceDBBackend will use. |
| AI-agent authorization | Cedar (no graph traversal); Casbin (in-memory post-filter); Polar/Oso (deprecated 2023) | Native Authzed Grant pattern: an agent acting on behalf of a user receives the structural intersection of the user's grants and the agent's declared capabilities — enforced by the schema graph, not by app-layer ANDs. |
| Permission scoping outside HTTP | Manual if user.has_perm(...) everywhere |
Model.objects.with_actor(actor) works in Celery tasks, cron, management commands, plain Python, and future MCP servers. The actor is generic: Django User, Agent, agents/grant, auth/apikey, or any registered subject. |
| Strict-by-default (no silent leaks) | django-guardian returns all rows when nothing scopes; easy to forget |
Querysets without an actor raise MissingActorError rather than returning everything. Bypass requires an explicit reason; block-scoped sudo() is logged. |
| Admin-editable policy with safe upgrades | django-guardian per-object ACL only; no rule overrides |
Tier-2 SchemaOverride model: tighten / loosen / disable / extend a package-shipped baseline at runtime. noupdate=True semantics preserve admin edits across upgrades, mirroring Odoo's ir.model.data. |
Highlights
- Three storage tiers, three editors. Tier 1 (structural, code-shipped
.zed) → Tier 2 (override, admin-editable) → Tier 3 (relationships, runtime data). Clear ownership rule per tier — see docs/ARCHITECTURE.md § Conceptual model. - Anonymous subject built-in.
auth/anonymous:*is shipped alongsideauth/userandauth/group. The default resolver returns it for unauthenticated requests; schemas reference it via the bareanonymouskeyword or theauth/anonymous:*wildcard. Subject type configurable viaREBAC_ANONYMOUS_TYPE. See docs/ARCHITECTURE.md § Anonymous subject. - Two LocalBackend storage shapes.
REBAC_LOCAL_BACKEND_STORAGE = "denormalized"(default) storesresource_type/resource_id/subject_type/subject_idas wide string columns — the historical shape.REBAC_LOCAL_BACKEND_STORAGE = "registry"collapses them into two integer FKs into a sharedRebacResourcetable, yielding ~5-10x index-density gain on the hot path plus FK-CASCADE cleanup when the underlying Django row is deleted. Migration between the two is a one-shot viapython manage.py rebac migrate-storage --to registry. See docs/ARCHITECTURE.md § Storage modes. - Predefined-role helpers (
rebac.roles). GCP-style role-as-resource pattern packaged asgrant/revoke/roles_of/members_ofplusimply/unimply/implies_of/implied_by_offor runtime-editable hierarchy. Roles live as objects in<namespace>/roleresource types; grants areRelationshiprows. Three role-hierarchy recipes — type-union inclusion (relation member: ... | parent_role:X#member), per-resource permission composition (permission read = viewer + editor + admin), runtime-editableincludes/effective_member. See docs/ARCHITECTURE.md §rebac.roles. - Universal-admin lint (
rebac.W004). Optional system check that warns when a<namespace>/roledefinition is missing the universal-admin role's#membersubject in itsmembertype union. Configurable viaREBAC_UNIVERSAL_ADMIN_ROLE(default"angee/role:admin"); set toNoneto disable. Catches the "I forgot to thread the admin override through" footgun at startup. - Unified check API.
check_access(op)/has_access(op)/accessible(op)— one entrypoint family, borrowed from Odoo 18's PR #179148 unification. No model-level vs record-level split at the call site. - One mixin gates everything. Add
RebacMixinto a model, declareMeta.rebac_resource_type, and queries / writes / method calls / FK reverse accessors are all permission-aware. No per-viewset wiring. - Field-level read gates. Schema permissions named
read__<field>redact or omit denied fields at queryset materialisation time whenREBAC_FIELD_READ_MODE = "redact" | "omit"(default"allow"). Redacted fields are excluded from later full saves so a display-timeNonecannot overwrite the stored value. with_actor(actor)≠sudo(reason=...). Distinct verbs for distinct intents.with_actorre-evaluates checks as that subject (user, agent, grant, apikey, …);sudobypasses them with mandatoryreasonand audit-log entry. Originating uid preserved through bypass for audit. Sudo does NOT propagate through relationship traversal — every related read re-resolves against the carrying scope.- Strict by default. A queryset without an actor scope raises rather than leaking. Bypass requires an explicit reason; block-scoped
sudo()writes a structured audit event. - Drop-in DRF integration.
permission_classes = [RebacPermission]+filter_backends = [RebacFilterBackend]. Per-action permission map; customisable. - GraphQL + WebSocket-aware. Per-request
PermissionEvaluatorLRU-cachescheck_access/accessiblecalls — a single GraphQL query that fans out across 50 nested resolvers makes 1 backend call per(actor, action, resource), not 50. The Strawberry adapter (pip install django-zed-rebac[strawberry]) shipsRebacExtension(per-operation scope, per-emission for subscriptions) andRebacChannelsConsumerMixin(actor resolved at WS handshake; per-emission cache reset means revoked grants take effect on the next subscription tick). Strawberry-Django users can installdjango-zed-rebac[strawberry-django]and useRebacDjangoOptimizerExtensionfor permission-awareselect_related/prefetch_relatedoptimization. See docs/ARCHITECTURE.md § Per-request evaluator + Zookie freshness. - Write-then-read freshness via Zookie ContextVar. Every write returns a
Zookie; subsequent LocalBackend reads in the same scope auto-upgrade toConsistency.AT_LEAST_AS_FRESH(zookie). Cross-request transport (SPA / JWT) is opt-in viaREBAC_ZOOKIE_TRANSPORT = "header" | "session". LocalBackend usesRelationship.written_at_xidas the freshness witness; the same public API is reserved for the planned SpiceDB adapter. - Celery actor propagation built in.
before_task_publishinjects the actor into task headers;task_prerunrestores it on the worker. Inside@shared_task, scoping happens transparently. - MCP integration planned. MCP tools can already be modeled as schema resources, but the
rebac_mcp_tooldecorator is future work tracked in proposal 0004. - Three-state checks. Like SpiceDB,
check_access()returnsHAS_PERMISSION,NO_PERMISSION, orCONDITIONAL_PERMISSION(missing=[...])— the latter lists which caveat fields the caller must supply for a definitive answer. - Typed package. Ships
py.typedand keeps the public API annotated so downstream projects and IDEs can reason about the manager/queryset surface. noupdate=Trueupgrade safety. Admin schema edits are preserved across package upgrades. Destructive overwrite is an explicit--force-overwriteflag, never an implicit side effect of install vs upgrade. Engineers Odoo's-ifootgun out.- Deterministic build.
python manage.py rebac sync --checkis a CI gate that returns non-zero on schema drift, mirroringmigrate --check.
Compatibility
| Python | Django | Status |
|---|---|---|
| 3.14 | 6.0 | ✅ supported and covered by CI |
Versioning follows SemVer while the project is below 1.0: minor releases may add public API and tighten alpha contracts; patch releases are reserved for compatible fixes.
Database support: PostgreSQL 13+ (production target), MySQL 8+ (supported), SQLite (test/dev only — local graph-walk performance is not production-grade). The Relationship table ships with all required indexes in 0001_initial.py.
Comparison
| Library | Per-object | Graph traversal | SpiceDB-compatible | AI-agent pattern | Maintained |
|---|---|---|---|---|---|
django-zed-rebac |
✅ | ✅ | ✅ | ✅ Grant pattern | (in development) |
django-guardian |
✅ (ACL via GenericFK) | ❌ | ❌ | ❌ | ✅ |
django-rules |
❌ (predicate engine) | ❌ | ❌ | ❌ | ✅ |
django-spicedb |
proxy only | ✅ (via SpiceDB) | ✅ | ❌ | ❌ (early/inactive) |
casbin-django-orm-adapter |
✅ (ACL, in-memory) | partial | ❌ | ❌ | ✅ |
django-oso |
✅ | ✅ | ❌ | ❌ | ❌ (deprecated 2023) |
django-rls (PostgreSQL RLS) |
✅ | DB-level only | ❌ | ❌ | ✅ |
zanzipy |
✅ | ✅ | partial | ❌ | ❌ (early/single-author) |
django-zed-rebac is the first Django package targeting full SpiceDB schema-language compatibility AND a working in-process backend AND a first-class AI-agent pattern AND admin-editable policy with safe upgrades — none of the others combine all four.
Backends in detail
┌─ Your application ──────────────────────────────────────────────┐
│ RebacMixin / RebacPermission / @rebac_resource │
│ │ │
│ ┌───────────────▼──────────────────┐ │
│ │ rebac.backends.Backend (ABC) │ │
│ │ check_access has_access │ │
│ │ accessible lookup_subjects │ │
│ └───────────────┬──────────────────┘ │
│ ┌─────────────┴────────────┐ │
│ │ │ │
│ ┌──────────▼──────────┐ ┌───────────▼───────────┐ │
│ │ LocalBackend │ │ SpiceDBBackend │ │
│ │ local graph walk + │ │ planned authzed │ │
│ │ cel-python caveats │ │ adapter │ │
│ └─────────────────────┘ └────────────────────────┘ │
└──────────────────────────────────────────────────────────────────┘
LocalBackend is the supported runtime backend today. SpiceDBBackend is on the roadmap behind the same Backend interface; persisted consistency tokens (Zookies) are intentionally backend-tagged and will not be portable across that future swap.
What django-zed-rebac is NOT
- Not a User model. Use
django.contrib.auth.models.Useror any swappableAUTH_USER_MODEL. - Not an authentication system. Use
django-allauth,dj-rest-auth,simple-jwt, or your own. - Not a session manager. Django's session middleware is fine.
- Not a multi-tenant database router. Use
django-tenantsordjango-organizations.django-zed-rebacis orthogonal — it works inside whatever tenant scope the project provides. (For soft tenancy in a single DB, seeREBAC_TYPE_PREFIXin ARCHITECTURE.md.) - Not a GraphQL admin layer. A future
django-zed-rebac-adminpackage may add one; v1 ships a Django admin form forSchemaOverride. Higher-level frameworks may layer their own admin surfaces on top. - Not a policy DSL like Polar or Cedar. The schema language is SpiceDB's
.zed, REBAC-first. ABAC fragments are expressed via caveats.
Status & roadmap
This is an alpha package. The architecture is settled (see docs/ARCHITECTURE.md) and releases are published to PyPI. Milestones:
- 0.1 —
LocalBackendMVP, schema parser + sync command,RebacMixin, system checks, sync/check commands. - 0.2 — Alpha hardening: schema-level built-in actors, action-scoped queryset reads, split
sudo()/system_context(), and efficient schema cache invalidation. - 0.3-0.9 — shipped middleware, Celery propagation, registry storage mode, evaluator/Zookie scopes, Strawberry adapter, field-level read gates, REBAC-safe relation loading, Strawberry-Django optimizer, field-backed structural relations, and LocalBackend hardening.
- Next —
SpiceDBBackendadapter and MCP tool integration (proposal 0004). - 1.0 — Stable release with full docs and CI matrix green.
Track the full plan in docs/ARCHITECTURE.md § Roadmap.
Contributing
See CONTRIBUTING.md for local setup and checks. Design feedback is welcome via GitHub issues — schema-language proposals, missing scenarios, integration-surface concerns, anything in ARCHITECTURE.md § Open questions you'd push back on.
License
Apache-2.0, matching authzed-py, cel-python, and spicedb itself.
Acknowledgments
django-zed-rebac is a faithful Django port of the model described in Google's Zanzibar paper and as implemented by SpiceDB. The schema language and API surface mirror SpiceDB's conventions exactly. The Grant pattern for AI-agent authorization is from Authzed's Secure AI Agents tutorial. The unified check API (check_access / has_access / accessible) is borrowed from Odoo 18 PR #179148. The noupdate=True upgrade-safety semantic is borrowed from Odoo's ir.model.data. Caveat evaluation in LocalBackend uses cel-python.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_zed_rebac-0.10.0.tar.gz.
File metadata
- Download URL: django_zed_rebac-0.10.0.tar.gz
- Upload date:
- Size: 211.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d06d809ff2196086fb5e059c99a23ab06ac73eff058210bd1177dc83e0406f1
|
|
| MD5 |
dbe41f5e550405d5e2e4090a3896d18d
|
|
| BLAKE2b-256 |
b2fc1b27ca3784072758aab63c01482ff1b912c3b4ff10adfb0e7635de8a01be
|
File details
Details for the file django_zed_rebac-0.10.0-py3-none-any.whl.
File metadata
- Download URL: django_zed_rebac-0.10.0-py3-none-any.whl
- Upload date:
- Size: 165.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1fab5db3256b2cd3c57ff6fcd16fb3c6cae0f82e9781e5f6e0a88b62fb01954
|
|
| MD5 |
fe7b5c3152dbe948a5aa71ec7f396503
|
|
| BLAKE2b-256 |
665e3186ebf4571e81baa36824d546d19d4d289e70b310850b6694c1580b3c8e
|