mirror of
https://github.com/computerim/impactflow-discovery.git
synced 2026-08-27 10:10:35 +00:00
b8f176bb31
Discovery service (pre-existing): FastAPI + async SQLAlchemy + Alembic +
SQLite + Anthropic, with a five-prompt static UI that produces an Enneagram
+ Ikigai profile.
Auth implementation (this change set) follows
Impact_Flow_Auth_Plan_OAuth.html, adapted to the discovery_conversation /
discovery_profile schema:
- app/auth.py: Google OAuth registration, JWT issue/decode, dual-auth
dependency (Bearer JWT or X-API-Key), refresh-token hashing, domain
allow-list, synthetic api-key-admin user
- app/tracking.py: ActivityTrackingMiddleware + log_activity helper;
tags machine-to-machine calls source=mcp
- app/routers/auth.py: /api/auth/{login,callback,refresh,logout},
/api/me, /api/me/{stats,sessions,sessions/{id}}
- app/routers/activity.py: /api/activity, /api/activity/summary,
/api/admin/activity, plus prune_old_activity (90-day retention)
- app/routers/discovery.py: every route now user-scoped via the auth
dependency; /discovery/profile/{user_id} -> /discovery/profile/me
- alembic/versions/002_add_auth.py: users, refresh_tokens, activity_log
- tests/test_auth.py: 8 tests covering 401 paths, X-API-Key admin
resolution, JWT round-trip, admin gating, domain allow-list
- README.md: Authentication section, expanded env-var table, updated
data-model and API-reference tables
- .env.example: new GOOGLE_*, JWT_*, IMPACTFLOW_API_KEY, CORS_*,
ALLOWED_EMAIL_DOMAINS placeholders
- .gitignore: also exclude data/*.log
Tests: 19/19 pass (11 pre-existing + 8 new). smoke_test.py exercises the
full discovery flow under X-API-Key plus 401 paths, OAuth login redirect,
activity logging, and /api/me/stats.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
81 lines
2.8 KiB
Python
81 lines
2.8 KiB
Python
"""initial schema: discovery_conversation and discovery_profile
|
|
|
|
Revision ID: 001
|
|
Revises:
|
|
Create Date: 2026-05-25
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = "001"
|
|
down_revision: Union[str, None] = None
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
op.create_table(
|
|
"discovery_conversation",
|
|
sa.Column("id", sa.String(), primary_key=True),
|
|
sa.Column("user_id", sa.String(), nullable=False),
|
|
sa.Column("started_at", sa.DateTime(), nullable=False),
|
|
sa.Column("completed_at", sa.DateTime(), nullable=True),
|
|
sa.Column("prompt_alive", sa.Text(), nullable=True),
|
|
sa.Column("prompt_friction", sa.Text(), nullable=True),
|
|
sa.Column("prompt_pull", sa.Text(), nullable=True),
|
|
sa.Column("prompt_recognition", sa.Text(), nullable=True),
|
|
sa.Column("prompt_future", sa.Text(), nullable=True),
|
|
)
|
|
op.create_index(
|
|
"ix_discovery_conversation_user_id",
|
|
"discovery_conversation",
|
|
["user_id"],
|
|
)
|
|
|
|
op.create_table(
|
|
"discovery_profile",
|
|
sa.Column("id", sa.String(), primary_key=True),
|
|
sa.Column("user_id", sa.String(), nullable=False),
|
|
sa.Column(
|
|
"conversation_id",
|
|
sa.String(),
|
|
sa.ForeignKey("discovery_conversation.id"),
|
|
nullable=False,
|
|
),
|
|
sa.Column("generated_at", sa.DateTime(), nullable=False),
|
|
sa.Column("triad", sa.String(), nullable=True),
|
|
sa.Column("probable_type", sa.Integer(), nullable=True),
|
|
sa.Column("wing", sa.Integer(), nullable=True),
|
|
sa.Column("instinctual_variant", sa.String(), nullable=True),
|
|
sa.Column("instinctual_stack", sa.String(), nullable=True),
|
|
sa.Column("love_summary", sa.Text(), nullable=True),
|
|
sa.Column("strength_summary", sa.Text(), nullable=True),
|
|
sa.Column("mission_summary", sa.Text(), nullable=True),
|
|
sa.Column("vocation_summary", sa.Text(), nullable=True),
|
|
sa.Column("overlap_narrative", sa.Text(), nullable=True),
|
|
sa.Column("confidence_json", sa.Text(), nullable=True),
|
|
sa.Column(
|
|
"locked",
|
|
sa.Boolean(),
|
|
nullable=False,
|
|
server_default=sa.text("0"),
|
|
),
|
|
)
|
|
op.create_index(
|
|
"ix_discovery_profile_user_id", "discovery_profile", ["user_id"]
|
|
)
|
|
|
|
|
|
def downgrade() -> None:
|
|
op.drop_index("ix_discovery_profile_user_id", table_name="discovery_profile")
|
|
op.drop_table("discovery_profile")
|
|
op.drop_index(
|
|
"ix_discovery_conversation_user_id",
|
|
table_name="discovery_conversation",
|
|
)
|
|
op.drop_table("discovery_conversation")
|