-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
twilio_api_server.py
91 lines (69 loc) · 2.99 KB
/
twilio_api_server.py
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
import os
import json
import requests
import uuid
from twilio.twiml.voice_response import VoiceResponse, Connect
from twilio.rest import Client
from dotenv import load_dotenv
import redis.asyncio as redis
from fastapi import FastAPI, HTTPException, Query, Request
from fastapi.responses import PlainTextResponse
app = FastAPI()
load_dotenv()
port = 8001
twilio_account_sid = os.getenv('TWILIO_ACCOUNT_SID')
twilio_auth_token = os.getenv('TWILIO_AUTH_TOKEN')
twilio_phone_number = os.getenv('TWILIO_PHONE_NUMBER')
# Initialize Twilio client
twilio_client = Client(twilio_account_sid, twilio_auth_token)
def populate_ngrok_tunnels():
response = requests.get("http://ngrok:4040/api/tunnels") # ngrok interface
telephony_url, bolna_url = None, None
if response.status_code == 200:
data = response.json()
for tunnel in data['tunnels']:
if tunnel['name'] == 'twilio-app':
telephony_url = tunnel['public_url']
elif tunnel['name'] == 'bolna-app':
bolna_url = tunnel['public_url'].replace('https:', 'wss:')
return telephony_url, bolna_url
else:
print(f"Error: Unable to fetch data. Status code: {response.status_code}")
@app.post('/call')
async def make_call(request: Request):
try:
call_details = await request.json()
agent_id = call_details.get('agent_id', None)
if not agent_id:
raise HTTPException(status_code=404, detail="Agent not provided")
if not call_details or "recipient_phone_number" not in call_details:
raise HTTPException(status_code=404, detail="Recipient phone number not provided")
telephony_host, bolna_host = populate_ngrok_tunnels()
print(f'telephony_host: {telephony_host}')
print(f'bolna_host: {bolna_host}')
try:
call = twilio_client.calls.create(
to=call_details.get('recipient_phone_number'),
from_=twilio_phone_number,
url=f"{telephony_host}/twilio_connect?bolna_host={bolna_host}&agent_id={agent_id}",
method="POST",
record=True
)
except Exception as e:
print(f'make_call exception: {str(e)}')
return PlainTextResponse("done", status_code=200)
except Exception as e:
print(f"Exception occurred in make_call: {e}")
raise HTTPException(status_code=500, detail="Internal Server Error")
@app.post('/twilio_connect')
async def twilio_connect(bolna_host: str = Query(...), agent_id: str = Query(...)):
try:
response = VoiceResponse()
connect = Connect()
bolna_websocket_url = f'{bolna_host}/chat/v1/{agent_id}'
connect.stream(url=bolna_websocket_url)
print(f"websocket connection done to {bolna_websocket_url}")
response.append(connect)
return PlainTextResponse(str(response), status_code=200, media_type='text/xml')
except Exception as e:
print(f"Exception occurred in twilio_callback: {e}")