-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Async rest client in Channels #1101
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Empty file.
302 changes: 302 additions & 0 deletions
302
kairon/chat/handlers/channels/clients/messenger/messenger_client.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,302 @@ | ||
from __future__ import absolute_import | ||
|
||
import abc | ||
import hashlib | ||
import hmac | ||
import logging | ||
|
||
import six | ||
|
||
__version__ = '6.0.0' | ||
|
||
from kairon.shared.rest_client import AioRestClient | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
DEFAULT_API_VERSION = 2.12 | ||
|
||
|
||
class MessengerClientOutput(object): | ||
|
||
# https://developers.facebook.com/docs/messenger-platform/send-messages#messaging_types | ||
MESSAGING_TYPES = { | ||
'RESPONSE', | ||
'UPDATE', | ||
'MESSAGE_TAG', | ||
} | ||
|
||
# https://developers.facebook.com/docs/messenger-platform/reference/send-api/#payload | ||
NOTIFICATION_TYPES = { | ||
'REGULAR', | ||
'SILENT_PUSH', | ||
'NO_PUSH' | ||
} | ||
|
||
def __init__(self, page_access_token, **kwargs): | ||
""" | ||
@required: | ||
page_access_token | ||
@optional: | ||
session | ||
api_version | ||
app_secret | ||
""" | ||
|
||
self.page_access_token = page_access_token | ||
self.session = AioRestClient(False) | ||
self.api_version = kwargs.get('api_version', DEFAULT_API_VERSION) | ||
self.graph_url = 'https://graph.facebook.com/v{api_version}'.format(api_version=self.api_version) | ||
self.app_secret = kwargs.get('app_secret') | ||
|
||
@property | ||
def auth_args(self): | ||
if not hasattr(self, '_auth_args'): | ||
auth = { | ||
'access_token': self.page_access_token | ||
} | ||
if self.app_secret is not None: | ||
appsecret_proof = self.generate_appsecret_proof() | ||
auth['appsecret_proof'] = appsecret_proof | ||
self._auth_args = auth | ||
return self._auth_args | ||
|
||
async def make_request(self, method, url, request_body=None, headers=None, **kwargs): | ||
is_streaming_resp = kwargs.pop('is_streaming_resp', False) | ||
timeout = kwargs.pop('timeout', None) | ||
resp = await self.session.request( | ||
method, url, request_body=request_body, headers=headers, timeout=timeout, | ||
return_json=False, is_streaming_resp=is_streaming_resp, max_retries=3 | ||
) | ||
logger.debug(resp) | ||
return resp | ||
|
||
async def get_user_data(self, recipient_id, fields=None, timeout=None): | ||
params = {} | ||
|
||
if isinstance(fields, six.string_types): | ||
params['fields'] = fields | ||
elif isinstance(fields, (list, tuple)): | ||
params['fields'] = ','.join(fields) | ||
else: | ||
params['fields'] = 'first_name,last_name,profile_pic,locale,timezone,gender' | ||
|
||
params.update(self.auth_args) | ||
|
||
url = '{graph_url}/{recipient_id}'.format(graph_url=self.graph_url, recipient_id=recipient_id) | ||
resp = await self.make_request("GET", url, headers=self.auth_args, timeout=timeout) | ||
return resp | ||
|
||
async def send(self, payload, recipient_id, messaging_type='RESPONSE', notification_type='REGULAR', | ||
timeout=None, tag=None): | ||
if messaging_type not in self.MESSAGING_TYPES: | ||
raise ValueError('`{}` is not a valid `messaging_type`'.format(messaging_type)) | ||
|
||
if notification_type not in self.NOTIFICATION_TYPES: | ||
raise ValueError('`{}` is not a valid `notification_type`'.format(notification_type)) | ||
|
||
body = { | ||
'messaging_type': messaging_type, | ||
'notification_type': notification_type, | ||
'recipient': { | ||
'id': recipient_id, | ||
}, | ||
'message': payload, | ||
} | ||
|
||
if tag: | ||
body['tag'] = tag | ||
|
||
url = '{graph_url}/me/messages'.format(graph_url=self.graph_url) | ||
resp = await self.make_request("POST", url, headers=self.auth_args, request_body=body, timeout=timeout) | ||
return resp | ||
|
||
async def send_action(self, sender_action, recipient_id, timeout=None): | ||
body = { | ||
'recipient': { | ||
'id': recipient_id, | ||
}, | ||
'sender_action': sender_action | ||
} | ||
url = '{graph_url}/me/messages'.format(graph_url=self.graph_url) | ||
resp = await self.make_request("POST", url, headers=self.auth_args, request_body=body, timeout=timeout) | ||
return resp | ||
|
||
async def subscribe_app_to_page(self, timeout=None): | ||
url = '{graph_url}/me/subscribed_apps'.format(graph_url=self.graph_url) | ||
resp = await self.make_request("POST", url, headers=self.auth_args, timeout=timeout) | ||
return resp | ||
|
||
async def set_messenger_profile(self, data, timeout=None): | ||
url = '{graph_url}/me/messenger_profile'.format(graph_url=self.graph_url) | ||
resp = await self.make_request("POST", url, headers=self.auth_args, request_body=data, timeout=timeout) | ||
return resp | ||
|
||
async def delete_get_started(self, timeout=None): | ||
body = { | ||
'fields': [ | ||
'get_started' | ||
], | ||
} | ||
url = '{graph_url}/me/messenger_profile'.format(graph_url=self.graph_url) | ||
resp = await self.make_request("DELETE", url, headers=self.auth_args, request_body=body, timeout=timeout) | ||
return resp | ||
|
||
async def delete_persistent_menu(self, timeout=None): | ||
body = { | ||
'fields': [ | ||
'persistent_menu' | ||
], | ||
} | ||
url = '{graph_url}/me/messenger_profile'.format(graph_url=self.graph_url) | ||
resp = await self.make_request("DELETE", url, headers=self.auth_args, request_body=body, timeout=timeout) | ||
return resp | ||
|
||
async def link_account(self, account_linking_token, timeout=None): | ||
params = dict({ | ||
'fields': 'recipient', | ||
'account_linking_token': account_linking_token | ||
}, **self.auth_args) | ||
url = '{graph_url}/me'.format(graph_url=self.graph_url) | ||
resp = await self.make_request("POST", url, headers=params, timeout=timeout) | ||
return resp | ||
|
||
async def unlink_account(self, psid, timeout=None): | ||
payload = { | ||
'psid': psid | ||
} | ||
url = '{graph_url}/me/unlink_accounts'.format(graph_url=self.graph_url) | ||
resp = await self.make_request("POST", url, headers=self.auth_args, request_body=payload, timeout=timeout) | ||
return resp | ||
|
||
async def update_whitelisted_domains(self, domains, timeout=None): | ||
if not isinstance(domains, list): | ||
domains = [domains] | ||
payload = { | ||
'whitelisted_domains': domains | ||
} | ||
url = '{graph_url}/me/messenger_profile'.format(graph_url=self.graph_url) | ||
resp = await self.make_request("POST", url, headers=self.auth_args, request_body=payload, timeout=timeout) | ||
return resp | ||
|
||
async def remove_whitelisted_domains(self, timeout=None): | ||
payload = { | ||
'fields': [ | ||
'whitelisted_domains' | ||
], | ||
} | ||
url = '{graph_url}/me/messenger_profile'.format(graph_url=self.graph_url) | ||
resp = await self.make_request("DELETE", url, headers=self.auth_args, request_body=payload, timeout=timeout) | ||
return resp | ||
|
||
async def upload_attachment(self, attachment, timeout=None): | ||
if not attachment.url: | ||
raise ValueError('Attachment must have `url` specified') | ||
if attachment.quick_replies: | ||
raise ValueError('Attachment may not have `quick_replies`') | ||
body = { | ||
'message': attachment.to_dict() | ||
} | ||
url = '{graph_url}/me/message_attachments'.format(graph_url=self.graph_url) | ||
resp = await self.make_request("POST", url, headers=self.auth_args, request_body=body, timeout=timeout) | ||
return resp | ||
|
||
def generate_appsecret_proof(self): | ||
""" | ||
@outputs: | ||
appsecret_proof: HMAC-SHA256 hash of page access token | ||
using app_secret as the key | ||
""" | ||
app_secret = str(self.app_secret).encode('utf8') | ||
access_token = str(self.page_access_token).encode('utf8') | ||
|
||
return hmac.new(app_secret, access_token, hashlib.sha256).hexdigest() | ||
|
||
|
||
class BaseMessenger(object): | ||
__metaclass__ = abc.ABCMeta | ||
|
||
last_message = {} | ||
|
||
def __init__(self, page_access_token, app_secret=None): | ||
self.page_access_token = page_access_token | ||
self.app_secret = app_secret | ||
self.client = MessengerClientOutput(self.page_access_token, app_secret=self.app_secret) | ||
|
||
@abc.abstractmethod | ||
def account_linking(self, message): | ||
"""Method to handle `account_linking`""" | ||
|
||
@abc.abstractmethod | ||
def message(self, message): | ||
"""Method to handle `messages`""" | ||
|
||
@abc.abstractmethod | ||
def delivery(self, message): | ||
"""Method to handle `message_deliveries`""" | ||
|
||
@abc.abstractmethod | ||
def optin(self, message): | ||
"""Method to handle `messaging_optins`""" | ||
|
||
@abc.abstractmethod | ||
def postback(self, message): | ||
"""Method to handle `messaging_postbacks`""" | ||
|
||
@abc.abstractmethod | ||
def read(self, message): | ||
"""Method to handle `message_reads`""" | ||
|
||
def handle(self, payload): | ||
for entry in payload['entry']: | ||
for message in entry['messaging']: | ||
self.last_message = message | ||
if message.get('account_linking'): | ||
return self.account_linking(message) | ||
elif message.get('delivery'): | ||
return self.delivery(message) | ||
elif message.get('message'): | ||
return self.message(message) | ||
elif message.get('optin'): | ||
return self.optin(message) | ||
elif message.get('postback'): | ||
return self.postback(message) | ||
elif message.get('read'): | ||
return self.read(message) | ||
|
||
def get_user(self, fields=None, timeout=None): | ||
return self.client.get_user_data(self.get_user_id(), fields=fields, timeout=timeout) | ||
|
||
def send(self, payload, messaging_type='RESPONSE', notification_type='REGULAR', timeout=None, tag=None): | ||
return self.client.send(payload, self.get_user_id(), messaging_type=messaging_type, | ||
notification_type=notification_type, timeout=timeout, tag=tag) | ||
|
||
def send_action(self, sender_action, timeout=None): | ||
return self.client.send_action(sender_action, self.get_user_id(), timeout=timeout) | ||
|
||
def get_user_id(self): | ||
return self.last_message['sender']['id'] | ||
|
||
def subscribe_app_to_page(self, timeout=None): | ||
return self.client.subscribe_app_to_page(timeout=timeout) | ||
|
||
def set_messenger_profile(self, data, timeout=None): | ||
return self.client.set_messenger_profile(data, timeout=timeout) | ||
|
||
def delete_get_started(self, timeout=None): | ||
return self.client.delete_get_started(timeout=timeout) | ||
|
||
def link_account(self, account_linking_token, timeout=None): | ||
return self.client.link_account(account_linking_token, timeout=timeout) | ||
|
||
def unlink_account(self, psid, timeout=None): | ||
return self.client.unlink_account(psid, timeout=timeout) | ||
|
||
def add_whitelisted_domains(self, domains, timeout=None): | ||
return self.client.update_whitelisted_domains(domains, timeout=timeout) | ||
|
||
def remove_whitelisted_domains(self, timeout=None): | ||
return self.client.remove_whitelisted_domains(timeout=timeout) | ||
|
||
def upload_attachment(self, attachment, timeout=None): | ||
return self.client.upload_attachment(attachment, timeout=timeout) |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Initialization of
AioRestClient
and usage ofapi_version
in the formatted URL.Consider removing the
False
argument if it's not required forAioRestClient
initialization. Also, ensure thatapi_version
is always a valid version string to avoid runtime errors in URL formatting.Committable suggestion