File size: 1,321 Bytes
27be269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from fastapi import FastAPI, Request, HTTPException,APIRouter
from pydantic import BaseModel


webhook_router = APIRouter(tags=["Webhooks"])

WEBHOOK_SECRET = "your_webhook_secret"  # Replace with your secret

class WebhookPayload(BaseModel):
    event: str
    data: dict

# Endpoint to receive webhook events
@webhook_router.post("/webhook/sms_received/")
async def handle_webhook(request: Request):

    
    # Parse the webhook payload
    payload = await request.json()
    event = payload.get("event")
    data = payload.get("data")

    # Handle different event types
    if event == "payment_success":
        # Process payment success
        print("Payment was successful:", data)
    elif event == "user_registered":
        # Process new user registration
        print("New user registered:", data)
    else:
        print("Received unknown event:", event)
    
    # Return a response
    return {"status": "received"}

# # Optional: Verify the webhook signature
# def verify_signature(request: Request, signature: str) -> bool:
#     if not signature:
#         return False
#     body = await request.body()
#     computed_signature = hmac.new(
#         WEBHOOK_SECRET.encode(),
#         body,
#         hashlib.sha256
#     ).hexdigest()
#     return hmac.compare_digest(computed_signature, signature)