File size: 12,106 Bytes
9e2655d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f374417
 
 
 
 
 
 
 
 
 
 
 
9e2655d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
"""
Maria PT - HuggingFace Spaces Backend
======================================
Auth: SHA-256 hash check (primary) or Cloudflare Referer/Domain check (fallback)
Endpoints: GET /ping  |  POST /base_start
"""

import os
import hashlib
import logging
import httpx
from fastapi import FastAPI, Request, HTTPException, status
from fastapi.responses import JSONResponse
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel
from pymongo import MongoClient
from pymongo.errors import ConnectionFailure, OperationFailure
from typing import Optional

# ─────────────────────────────────────────────
# Logging
# ─────────────────────────────────────────────
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger("maria_pt")

# ─────────────────────────────────────────────
# Environment / Secrets  (set in HF Space Settings β†’ Secrets)
# ─────────────────────────────────────────────
def _require_secret(key: str) -> str:
    value = os.environ.get(key)
    if not value:
        raise RuntimeError(f"Missing required secret: {key}")
    return value

EXPECTED_HASH    = _require_secret("EXPECTED_HASH")
MONGO_PASSWORD   = _require_secret("MONGO_PASSWORD")
MONGO_DB         = os.environ.get("MONGO_DB",   "MariaPTDB")
MONGO_COLLECTION = os.environ.get("MONGO_COLL", "MariaPTColl")
MONGO_URI        = os.environ.get("MONGO_URI") or \
                   f"mongodb+srv://testuser:{MONGO_PASSWORD}@cluster0.ntz2mpi.mongodb.net/"

# Cloudflare Turnstile secret (placeholder – paste your real secret in HF Secrets)
CF_TURNSTILE_SECRET = os.environ.get("CF_TURNSTILE_SECRET", "PLACEHOLDER_CF_TURNSTILE_SECRET")
ALLOWED_DOMAIN      = os.environ.get("ALLOWED_DOMAIN", "buildwithsupratim.github.io")

# ─────────────────────────────────────────────
# FastAPI App
# ─────────────────────────────────────────────
app = FastAPI(title="Maria PT API", version="1.0.0", docs_url=None, redoc_url=None)

app.add_middleware(
    CORSMiddleware,
    allow_origins=["https://buildwithsupratim.github.io"],
    allow_credentials=True,
    allow_methods=["GET", "POST"],
    allow_headers=["*"],
)

# ─────────────────────────────────────────────
# MongoDB Client (lazy singleton)
# ─────────────────────────────────────────────
_mongo_client: Optional[MongoClient] = None

def get_mongo_collection():
    global _mongo_client
    if _mongo_client is None:
        _mongo_client = MongoClient(MONGO_URI, serverSelectionTimeoutMS=5000)
    db   = _mongo_client[MONGO_DB]
    coll = db[MONGO_COLLECTION]
    # Ensure capped (100 MB) – silently ignored if collection already exists
    try:
        db.create_collection(
            MONGO_COLLECTION,
            capped=True,
            size=100_000_000,
        )
    except Exception:
        pass
    return coll


# ─────────────────────────────────────────────
# Auth Helpers
# ─────────────────────────────────────────────
def _hash_auth_code(auth_code: str) -> str:
    return hashlib.sha256(auth_code.encode()).hexdigest()


def _primary_auth(request: Request) -> bool:
    """Check SHA-256 of auth_code header against EXPECTED_HASH."""
    auth_code = request.headers.get("auth_code") or request.headers.get("Auth-Code")
    if not auth_code:
        return False
    return _hash_auth_code(auth_code) == EXPECTED_HASH


async def _cloudflare_domain_check(request: Request) -> bool:
    """
    Cloudflare-backed fallback:
    1. Extract the Referer / Origin header.
    2. Verify it belongs to ALLOWED_DOMAIN (domain-level check).
    3. Optionally verify a Cloudflare Turnstile token if present in headers.
    """
    # ── Step 1: Domain/Referer check ──────────────────────────────────────
    referer = request.headers.get("referer", "")
    origin  = request.headers.get("origin", "")

    referer_ok = ALLOWED_DOMAIN in referer
    origin_ok  = ALLOWED_DOMAIN in origin

    if not (referer_ok or origin_ok):
        logger.warning("Blocked – domain not allowed. Referer=%s Origin=%s", referer, origin)
        return False

    # ── Step 2: Cloudflare Turnstile token (optional header) ─────────────
    # If the front-end sends a CF-Turnstile-Token header we verify it.
    # If no token is sent we fall back to domain-only gating.
    cf_token = request.headers.get("CF-Turnstile-Token")
    if cf_token and CF_TURNSTILE_SECRET != "PLACEHOLDER_CF_TURNSTILE_SECRET":
        try:
            async with httpx.AsyncClient(timeout=5.0) as client:
                resp = await client.post(
                    "https://challenges.cloudflare.com/turnstile/v0/siteverify",
                    data={
                        "secret":   CF_TURNSTILE_SECRET,
                        "response": cf_token,
                        "remoteip": request.client.host,
                    },
                )
            result = resp.json()
            if not result.get("success"):
                logger.warning("Cloudflare Turnstile rejected: %s", result)
                return False
        except Exception as exc:
            logger.error("Turnstile verification error: %s", exc)
            return False

    return True


async def require_auth(request: Request):
    """
    Gate every protected endpoint.
    Primary  β†’ SHA-256 hash check on auth_code header.
    Fallback β†’ Cloudflare domain / Turnstile check.
    Block    β†’ 403 + client IP is logged (extend here for real IP-ban storage).
    """
    if _primary_auth(request):
        return  # βœ… Primary auth passed

    if await _cloudflare_domain_check(request):
        return  # βœ… Cloudflare check passed

    # ❌ Both checks failed β†’ block
    client_ip = request.client.host
    logger.warning("BLOCKED IP: %s", client_ip)
    raise HTTPException(
        status_code=status.HTTP_403_FORBIDDEN,
        detail="Access denied. Invalid credentials or unauthorized origin.",
    )


# ─────────────────────────────────────────────
# Request Schema
# ─────────────────────────────────────────────
class BaseStartRequest(BaseModel):
    request: str        # e.g. "send_code"
    student_name: str   # e.g. "Greti"


# ─────────────────────────────────────────────
# Response Builders
# ─────────────────────────────────────────────
def build_learning_path(doc: dict, student_name: str) -> dict:
    """
    Merge the MongoDB document with the student_name from the API call,
    then build the full learning_path response with blank/initialised fields.
    """
    curriculum_objectives = doc.get("curriculum_objectives", [])

    # ── Normalise curriculum (topic β†’ topics key) ─────────────────────────
    normalised_curriculum = []
    for item in curriculum_objectives:
        normalised_curriculum.append({
            "topics":              item.get("topic", ""),
            "content":             item.get("content", ""),
            "learning_objectives": item.get("learning_objectives", []),
        })

    # ── assessment_stages: initialise with FIRST topic only ───────────────
    first_topic = curriculum_objectives[0] if curriculum_objectives else {}
    first_learning_objectives = [
        {
            "goal":         goal,
            "teach":        "not_complete",
            "re_teach":     "not_complete",
            "show_and_tell":"not_complete",
            "assess":       "not_complete",
        }
        for goal in first_topic.get("learning_objectives", [])
    ]

    current_learning = [
        {
            "topic":               first_topic.get("topic", ""),
            "content":             first_topic.get("content", ""),
            "learning_objectives": first_learning_objectives,
        }
    ] if first_topic else []

    return {
        "learning_path": {
            "board":                doc.get("board", ""),
            "class":                doc.get("class", ""),
            "subject":              doc.get("subject", ""),
            "student_name":         student_name,          # from API call
            "teacher_persona":      doc.get("teacher_persona", ""),
            "curriculum_objectives": normalised_curriculum,
            "chat_history":         [],                    # blank – yet to start
            "scratchpad":           [],                    # blank – yet to start
            "assessment_stages": {
                "current_learning": current_learning,
            },
        }
    }


# ─────────────────────────────────────────────
# Endpoints
# ─────────────────────────────────────────────

@app.get("/ping")
async def ping(request: Request):
    """Health-check endpoint – wakes the Space if sleeping."""
    await require_auth(request)
    return JSONResponse(content={"status": "alive"})


@app.post("/base_start")
async def base_start(request: Request, body: BaseStartRequest):
    """
    Accepts { request, student_name }, queries MongoDB for matching request,
    and returns an initialised learning_path JSON.
    """
    await require_auth(request)

    # ── MongoDB Lookup ────────────────────────────────────────────────────
    try:
        collection = get_mongo_collection()
        doc = collection.find_one(
            {"request": body.request},
            {"_id": 0},          # exclude Mongo internal _id
        )
    except (ConnectionFailure, OperationFailure) as exc:
        logger.error("MongoDB error: %s", exc)
        raise HTTPException(
            status_code=status.HTTP_503_SERVICE_UNAVAILABLE,
            detail="Database connection error. Please try again later.",
        )

    if doc is None:
        raise HTTPException(
            status_code=status.HTTP_404_NOT_FOUND,
            detail=f"No curriculum found for request '{body.request}'.",
        )

    # ── Build & Return Response ───────────────────────────────────────────
    response_payload = build_learning_path(doc, body.student_name)
    return JSONResponse(content=response_payload)


# ─────────────────────────────────────────────
# Entry point (for local testing)
# ─────────────────────────────────────────────
if __name__ == "__main__":
    import uvicorn
    uvicorn.run("app:app", host="0.0.0.0", port=7860, reload=True)