Files
gh-christianlouis-docuelevate/migrations/versions/042_add_file_shares.py
T
copilot-swe-agent[bot] 1a195a96bd fix: merge main, address code review feedback for security fix PR #816
- Merge origin/main into branch (resolve conflict in integrations_dashboard.html)
- Add defensive JSON parsing with try/except for integration.config
- Wrap tester() call in try/except to prevent 500 errors from bad config
- Add i18n key integrations.connection_test_failed_fallback in en.json
- Reference i18n key in template JS fallback message
- Update SECURITY_AUDIT.md: add fix date (2026-03-23), update doc date
- Remove accidental revert.sh file
- Fix missing MagicMock/patch imports in test file
- Add tests for invalid JSON config and tester exception error paths

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
Agent-Logs-Url: https://github.com/christianlouis/DocuElevate/sessions/daebb70e-059a-4601-8864-88eef49f99cf
2026-03-23 16:21:09 +00:00

59 lines
2.2 KiB
Python

"""Add file_shares table for per-user document sharing and role-based access.
Revision ID: 042_add_file_shares
Revises: 041_add_document_comments_and_annotations
Create Date: 2026-03-22
"""
from typing import Union
import sqlalchemy as sa
from alembic import op
# revision identifiers, used by Alembic.
revision: str = "042_add_file_shares"
down_revision: Union[str, None] = "041_add_document_comments_and_annotations"
branch_labels = None
depends_on = None
def upgrade() -> None:
"""Create file_shares table."""
conn = op.get_bind()
inspector = sa.inspect(conn)
existing_tables = set(inspector.get_table_names())
if "file_shares" not in existing_tables:
op.create_table(
"file_shares",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("file_id", sa.Integer(), nullable=False),
sa.Column("owner_id", sa.String(), nullable=False),
sa.Column("shared_with_user_id", sa.String(), nullable=False),
sa.Column("role", sa.String(20), nullable=False, server_default="viewer"),
sa.Column("created_at", sa.DateTime(timezone=True), server_default=sa.func.now()),
sa.Column(
"updated_at",
sa.DateTime(timezone=True),
server_default=sa.func.now(),
onupdate=sa.func.now(),
),
sa.ForeignKeyConstraint(["file_id"], ["files.id"]),
sa.PrimaryKeyConstraint("id"),
sa.UniqueConstraint("file_id", "shared_with_user_id", name="uq_file_share_file_user"),
)
op.create_index("ix_file_shares_id", "file_shares", ["id"])
op.create_index("ix_file_shares_file_id", "file_shares", ["file_id"])
op.create_index("ix_file_shares_owner_id", "file_shares", ["owner_id"])
op.create_index("ix_file_shares_shared_with_user_id", "file_shares", ["shared_with_user_id"])
def downgrade() -> None:
"""Drop file_shares table."""
op.drop_index("ix_file_shares_shared_with_user_id", table_name="file_shares")
op.drop_index("ix_file_shares_owner_id", table_name="file_shares")
op.drop_index("ix_file_shares_file_id", table_name="file_shares")
op.drop_index("ix_file_shares_id", table_name="file_shares")
op.drop_table("file_shares")