fed8b2eed7
Build and push multi-arch DocsGPT Docker image / build (linux/amd64, ubuntu-latest, amd64) (push) Has been cancelled
Backend release / release (push) Has been cancelled
Bandit Security Scan / bandit_scan (push) Has been cancelled
Build and push multi-arch DocsGPT Docker image / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Has been cancelled
Build and push multi-arch DocsGPT Docker image / manifest (push) Has been cancelled
Build and push DocsGPT FE Docker image for development / build (linux/amd64, ubuntu-latest, amd64) (push) Has been cancelled
Build and push DocsGPT FE Docker image for development / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Has been cancelled
Build and push DocsGPT FE Docker image for development / manifest (push) Has been cancelled
Python linting / ruff (push) Has been cancelled
Run python tests with pytest / Run tests and count coverage (3.12) (push) Has been cancelled
React Widget Build / build (push) Has been cancelled
49 lines
1.6 KiB
Python
49 lines
1.6 KiB
Python
"""0017 oidc scim — users.active flag + auth_events audit table.
|
|
|
|
``users.active`` backs SCIM deprovisioning: deactivated users are refused new
|
|
OIDC sessions and their live sessions are denylisted until they expire.
|
|
``auth_events`` is an append-only audit trail of login / logout / provisioning
|
|
events keyed by ``user_id``.
|
|
|
|
Revision ID: 0017_oidc_scim
|
|
Revises: 0016_conversation_visibility
|
|
"""
|
|
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
|
|
|
|
revision: str = "0017_oidc_scim"
|
|
down_revision: Union[str, None] = "0016_conversation_visibility"
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
# IF NOT EXISTS keeps the migration idempotent: re-applying it over a
|
|
# partially-migrated or out-of-band-patched schema must not abort the whole
|
|
# upgrade (which would wedge startup with alembic_version stuck behind head).
|
|
op.execute("ALTER TABLE users ADD COLUMN IF NOT EXISTS active BOOLEAN NOT NULL DEFAULT TRUE;")
|
|
op.execute(
|
|
"""
|
|
CREATE TABLE IF NOT EXISTS auth_events (
|
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
user_id TEXT NOT NULL,
|
|
event TEXT NOT NULL,
|
|
ip TEXT,
|
|
user_agent TEXT,
|
|
metadata JSONB NOT NULL DEFAULT '{}',
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
|
|
);
|
|
"""
|
|
)
|
|
op.execute(
|
|
"CREATE INDEX IF NOT EXISTS auth_events_user_idx ON auth_events (user_id, created_at DESC);"
|
|
)
|
|
|
|
|
|
def downgrade() -> None:
|
|
op.execute("DROP TABLE IF EXISTS auth_events;")
|
|
op.execute("ALTER TABLE users DROP COLUMN IF EXISTS active;")
|