brotherton-erpnext/erpnext/erpnext_integrations/exotel_integration.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

132 lines
3.6 KiB
Python
Raw Normal View History

2019-05-21 02:27:06 +00:00
import frappe
import requests
# api/method/erpnext.erpnext_integrations.exotel_integration.handle_incoming_call
# api/method/erpnext.erpnext_integrations.exotel_integration.handle_end_call
# api/method/erpnext.erpnext_integrations.exotel_integration.handle_missed_call
2019-05-21 02:27:06 +00:00
2022-03-28 13:22:46 +00:00
2019-05-21 02:27:06 +00:00
@frappe.whitelist(allow_guest=True)
2019-07-01 08:58:59 +00:00
def handle_incoming_call(**kwargs):
try:
exotel_settings = get_exotel_settings()
if not exotel_settings.enabled:
return
call_payload = kwargs
status = call_payload.get("Status")
if status == "free":
return
call_log = get_call_log(call_payload)
if not call_log:
create_call_log(call_payload)
else:
update_call_log(call_payload, call_log=call_log)
except Exception as e:
frappe.db.rollback()
exotel_settings.log_error("Error in Exotel incoming call")
2019-05-21 02:27:06 +00:00
2022-03-28 13:22:46 +00:00
2019-05-27 10:00:41 +00:00
@frappe.whitelist(allow_guest=True)
2019-07-01 08:58:59 +00:00
def handle_end_call(**kwargs):
2019-06-17 04:46:38 +00:00
update_call_log(kwargs, "Completed")
2022-03-28 13:22:46 +00:00
2019-06-03 06:57:02 +00:00
@frappe.whitelist(allow_guest=True)
2019-07-01 08:58:59 +00:00
def handle_missed_call(**kwargs):
2022-02-23 07:29:38 +00:00
status = ""
2022-02-25 11:22:25 +00:00
call_type = kwargs.get("CallType")
dial_call_status = kwargs.get("DialCallStatus")
2022-02-23 07:29:38 +00:00
2022-02-25 11:22:25 +00:00
if call_type == "incomplete" and dial_call_status == "no-answer":
status = "No Answer"
2022-02-25 11:22:25 +00:00
elif call_type == "client-hangup" and dial_call_status == "canceled":
status = "Canceled"
2022-02-25 11:22:25 +00:00
elif call_type == "incomplete" and dial_call_status == "failed":
status = "Failed"
2022-02-23 07:29:38 +00:00
update_call_log(kwargs, status)
2019-06-03 06:57:02 +00:00
2022-03-28 13:22:46 +00:00
def update_call_log(call_payload, status="Ringing", call_log=None):
call_log = call_log or get_call_log(call_payload)
2022-02-23 07:29:38 +00:00
# for a new sid, call_log and get_call_log will be empty so create a new log
if not call_log:
call_log = create_call_log(call_payload)
2019-05-27 10:00:41 +00:00
if call_log:
call_log.status = status
call_log.to = call_payload.get("DialWhomNumber")
call_log.duration = call_payload.get("DialCallDuration") or 0
call_log.recording_url = call_payload.get("RecordingUrl")
2019-05-27 10:00:41 +00:00
call_log.save(ignore_permissions=True)
frappe.db.commit()
return call_log
2019-05-27 10:00:41 +00:00
2022-03-28 13:22:46 +00:00
2019-07-01 08:58:59 +00:00
def get_call_log(call_payload):
call_log_id = call_payload.get("CallSid")
if frappe.db.exists("Call Log", call_log_id):
return frappe.get_doc("Call Log", call_log_id)
2022-03-28 13:22:46 +00:00
2019-07-01 08:58:59 +00:00
def create_call_log(call_payload):
call_log = frappe.new_doc("Call Log")
call_log.id = call_payload.get("CallSid")
call_log.to = call_payload.get("DialWhomNumber")
2019-07-01 08:58:59 +00:00
call_log.medium = call_payload.get("To")
call_log.status = "Ringing"
setattr(call_log, "from", call_payload.get("CallFrom"))
call_log.save(ignore_permissions=True)
frappe.db.commit()
return call_log
2019-06-17 04:46:38 +00:00
2022-03-28 13:22:46 +00:00
@frappe.whitelist()
def get_call_status(call_id):
2019-06-13 11:43:54 +00:00
endpoint = get_exotel_endpoint("Calls/{call_id}.json".format(call_id=call_id))
response = requests.get(endpoint)
status = response.json().get("Call", {}).get("Status")
return status
2022-03-28 13:22:46 +00:00
@frappe.whitelist()
def make_a_call(from_number, to_number, caller_id):
2019-06-13 11:43:54 +00:00
endpoint = get_exotel_endpoint("Calls/connect.json?details=true")
response = requests.post(
endpoint, data={"From": from_number, "To": to_number, "CallerId": caller_id}
)
return response.json()
2022-03-28 13:22:46 +00:00
def get_exotel_settings():
2019-06-03 06:57:02 +00:00
return frappe.get_single("Exotel Settings")
2022-03-28 13:22:46 +00:00
2019-06-03 06:57:02 +00:00
def whitelist_numbers(numbers, caller_id):
2019-06-13 11:43:54 +00:00
endpoint = get_exotel_endpoint("CustomerWhitelist")
response = requests.post(
endpoint,
data={
2019-06-03 06:57:02 +00:00
"VirtualNumber": caller_id,
"Number": numbers,
},
)
2019-06-13 11:43:54 +00:00
return response
2022-03-28 13:22:46 +00:00
2019-06-13 11:43:54 +00:00
def get_all_exophones():
endpoint = get_exotel_endpoint("IncomingPhoneNumbers")
response = requests.post(endpoint)
return response
2022-03-28 13:22:46 +00:00
2019-06-13 11:43:54 +00:00
def get_exotel_endpoint(action):
settings = get_exotel_settings()
return "https://{api_key}:{api_token}@api.exotel.com/v1/Accounts/{sid}/{action}".format(
api_key=settings.api_key, api_token=settings.api_token, sid=settings.account_sid, action=action
)