-
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
Flow Action #1225
base: master
Are you sure you want to change the base?
Flow Action #1225
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
from typing import Text, Dict, Any | ||
|
||
from loguru import logger | ||
from mongoengine import DoesNotExist | ||
from rasa_sdk import Tracker | ||
from rasa_sdk.executor import CollectingDispatcher | ||
|
||
from kairon.actions.definitions.base import ActionsBase | ||
from kairon.shared.actions.data_objects import FlowActionConfig, ActionServerLogs | ||
from kairon.shared.actions.exception import ActionFailure | ||
from kairon.shared.actions.models import ActionType | ||
from kairon.shared.actions.utils import ActionUtility | ||
from kairon.shared.constants import KaironSystemSlots | ||
|
||
|
||
class ActionFlow(ActionsBase): | ||
|
||
def __init__(self, bot: Text, name: Text): | ||
""" | ||
Initialize Flow action. | ||
@param bot: bot id | ||
@param name: action name | ||
""" | ||
self.bot = bot | ||
self.name = name | ||
|
||
def retrieve_config(self): | ||
""" | ||
Fetch Flow action configuration parameters from the database | ||
:return: FlowActionConfig containing configuration for the action as a dict. | ||
""" | ||
try: | ||
http_config_dict = FlowActionConfig.objects().get(bot=self.bot, | ||
name=self.name, | ||
status=True).to_mongo().to_dict() | ||
logger.debug("flow_action_config: " + str(http_config_dict)) | ||
return http_config_dict | ||
except DoesNotExist as e: | ||
logger.exception(e) | ||
raise ActionFailure("No Flow action found for given action and bot") | ||
|
||
async def execute(self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict[Text, Any]): | ||
""" | ||
Retrieves action config and executes it. | ||
Information regarding the execution is logged in ActionServerLogs. | ||
@param dispatcher: Client to send messages back to the user. | ||
@param tracker: Tracker object to retrieve slots, events, messages and other contextual information. | ||
@param domain: Bot domain | ||
:return: Dict containing slot name as keys and their values. | ||
""" | ||
bot_response = None | ||
http_response = None | ||
exception = None | ||
status = "SUCCESS" | ||
http_url = None | ||
headers = {} | ||
body = {} | ||
dispatch_response = True | ||
try: | ||
flow_action_config = self.retrieve_config() | ||
bot_response = flow_action_config['response'] | ||
dispatch_response = flow_action_config['dispatch_response'] | ||
body, http_url, headers = ActionUtility.prepare_flow_body(flow_action_config, tracker) | ||
http_response, status_code, time_elapsed = await ActionUtility.execute_request_async( | ||
headers=headers, http_url=http_url, request_method="POST", request_body=body | ||
) | ||
logger.info("response: " + str(http_response)) | ||
logger.info("status_code: " + str(status_code)) | ||
logger.info("time_elapsed: " + str(time_elapsed)) | ||
except Exception as e: | ||
exception = str(e) | ||
logger.exception(e) | ||
status = "FAILURE" | ||
bot_response = "I have failed to process your request" | ||
finally: | ||
if dispatch_response: | ||
dispatcher.utter_message(bot_response) | ||
ActionServerLogs( | ||
type=ActionType.flow_action.value, | ||
intent=tracker.get_intent_of_latest_message(skip_fallback_intent=False), | ||
action=self.name, | ||
sender=tracker.sender_id, | ||
bot=tracker.get_slot("bot"), | ||
url=http_url, | ||
headers=headers, | ||
request_params=body, | ||
exception=exception, | ||
api_response=str(http_response) if http_response else None, | ||
bot_response=bot_response, | ||
status=status, | ||
user_msg=tracker.latest_message.get('text') | ||
).save() | ||
return {KaironSystemSlots.kairon_action_response.value: bot_response} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -27,6 +27,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DispatchType, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DbQueryValueType, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DbActionOperationType, UserMessageType, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
FlowModes, FlowActionTypes | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from kairon.shared.constants import SLOT_SET_TYPE, FORM_SLOT_SET_TYPE | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from kairon.shared.data.audit.data_objects import Auditlog | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -448,6 +449,45 @@ def clean(self): | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.custom_text.key = "custom_text" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@auditlogger.log | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@push_notification.apply | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
class FlowActionConfig(Auditlog): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name = StringField(required=True) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
flow_id = EmbeddedDocumentField(CustomActionRequestParameters) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
header = StringField(default=None) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
body = StringField(required=True) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
footer = StringField(default=None) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
mode = StringField(default=FlowModes.published.value, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
choices=[p_type.value for p_type in FlowModes]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
flow_action = StringField(default=FlowActionTypes.navigate.value, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
choices=[p_type.value for p_type in FlowModes]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
flow_token = StringField(required=True) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
recipient_phone = EmbeddedDocumentField(CustomActionRequestParameters) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
initial_screen = StringField(required=True) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
flow_cta = StringField(required=True) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
dispatch_response = BooleanField(default=True) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
response = StringField(default=None) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
bot = StringField(required=True) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
user = StringField(required=True) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
timestamp = DateTimeField(default=datetime.utcnow) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
status = BooleanField(default=True) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+452
to
+473
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The - choices=[p_type.value for p_type in FlowModes]
+ choices=[p_type.value for p_type in FlowActionTypes] Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
def validate(self, clean=True): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if clean: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.clean() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if Utility.check_empty_string(self.name): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
raise ValidationError("Action name cannot be empty") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if Utility.check_empty_string(self.body): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
raise ValidationError("body cannot be empty") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if Utility.check_empty_string(self.initial_screen): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
raise ValidationError("initial_screen cannot be empty") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if Utility.check_empty_string(self.flow_cta): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
raise ValidationError("flow_cta cannot be empty") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if Utility.check_empty_string(self.flow_token): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
raise ValidationError("flow_token cannot be empty") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@auditlogger.log | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@push_notification.apply | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
class GoogleSearchAction(Auditlog): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -941,6 +941,57 @@ def prepare_hubspot_form_request(tracker, fields: list, bot: Text): | |
def get_basic_auth_str(username: Text, password: Text): | ||
return requests.auth._basic_auth_str(username, password) | ||
|
||
@staticmethod | ||
def prepare_flow_body(flow_action_config: dict, tracker: Tracker): | ||
api_key = Sysadmin.get_bot_secret(flow_action_config['bot'], BotSecretType.d360_api_key.value, raise_err=False) | ||
http_url = Utility.environment["flow"]["url"] | ||
header_key = Utility.environment["flow"]["headers"]["key"] | ||
headers = {header_key: api_key} | ||
flow_body = { | ||
"recipient_type": "individual", | ||
"messaging_product": "whatsapp", | ||
"type": "interactive", | ||
"interactive": { | ||
"type": "flow", | ||
"action": { | ||
"name": "flow", | ||
"parameters": { | ||
"mode": "published", | ||
"flow_message_version": "3", | ||
"flow_token": "AQAAAAACS5FpgQ_cAAAAAD0QI3s.", | ||
"flow_action": "navigate", | ||
} | ||
} | ||
} | ||
} | ||
parameter_type = flow_action_config['recipient_phone']['parameter_type'] | ||
recipient_phone = tracker.get_slot(flow_action_config['recipient_phone']['value']) \ | ||
if parameter_type == 'slot' else flow_action_config['recipient_phone']['value'] | ||
parameter_type = flow_action_config['flow_id']['parameter_type'] | ||
flow_id = tracker.get_slot(flow_action_config['flow_id']['value']) \ | ||
if parameter_type == 'slot' else flow_action_config['flow_id']['value'] | ||
header = flow_action_config.get('header') | ||
body = flow_action_config['body'] | ||
footer = flow_action_config.get('footer') | ||
mode = flow_action_config['mode'] | ||
flow_action = flow_action_config['flow_action'] | ||
flow_token = flow_action_config['flow_token'] | ||
initial_screen = flow_action_config['initial_screen'] | ||
flow_cta = flow_action_config['flow_cta'] | ||
flow_body["to"] = recipient_phone | ||
if header: | ||
flow_body["interactive"]["header"] = {"type": "text", "text": header} | ||
flow_body["interactive"]["body"] = {"text": body} | ||
if footer: | ||
flow_body["interactive"]["footer"] = {"text": footer} | ||
flow_body["interactive"]["action"]["parameters"]["mode"] = mode | ||
flow_body["interactive"]["action"]["parameters"]["flow_action"] = flow_action | ||
flow_body["interactive"]["action"]["parameters"]["flow_token"] = flow_token | ||
flow_body["interactive"]["action"]["parameters"]["flow_cta"] = flow_cta | ||
flow_body["interactive"]["action"]["parameters"]["flow_id"] = flow_id | ||
flow_body["interactive"]["action"]["parameters"]["flow_action_payload"] = {"screen": initial_screen} | ||
return flow_body, http_url, headers | ||
Comment on lines
+944
to
+993
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Refactor The - @staticmethod
- def prepare_flow_body(flow_action_config: dict, tracker: Tracker):
- api_key = Sysadmin.get_bot_secret(flow_action_config['bot'], BotSecretType.d360_api_key.value, raise_err=False)
- http_url = Utility.environment["flow"]["url"]
- header_key = Utility.environment["flow"]["headers"]["key"]
- headers = {header_key: api_key}
- flow_body = {
- "recipient_type": "individual",
- "messaging_product": "whatsapp",
- "type": "interactive",
- "interactive": {
- "type": "flow",
- "action": {
- "name": "flow",
- "parameters": {
- "mode": "published",
- "flow_message_version": "3",
- "flow_token": "AQAAAAACS5FpgQ_cAAAAAD0QI3s.",
- "flow_action": "navigate",
- }
- }
- }
- }
- parameter_type = flow_action_config['recipient_phone']['parameter_type']
- recipient_phone = tracker.get_slot(flow_action_config['recipient_phone']['value']) \
- if parameter_type == 'slot' else flow_action_config['recipient_phone']['value']
- parameter_type = flow_action_config['flow_id']['parameter_type']
- flow_id = tracker.get_slot(flow_action_config['flow_id']['value']) \
- if parameter_type == 'slot' else flow_action_config['flow_id']['value']
- header = flow_action_config.get('header')
- body = flow_action_config['body']
- footer = flow_action_config.get('footer')
- mode = flow_action_config['mode']
- flow_action = flow_action_config['flow_action']
- flow_token = flow_action_config['flow_token']
- initial_screen = flow_action_config['initial_screen']
- flow_cta = flow_action_config['flow_cta']
- flow_body["to"] = recipient_phone
- if header:
- flow_body["interactive"]["header"] = {"type": "text", "text": header}
- flow_body["interactive"]["body"] = {"text": body}
- if footer:
- flow_body["interactive"]["footer"] = {"text": footer}
- flow_body["interactive"]["action"]["parameters"]["mode"] = mode
- flow_body["interactive"]["action"]["parameters"]["flow_action"] = flow_action
- flow_body["interactive"]["action"]["parameters"]["flow_token"] = flow_token
- flow_body["interactive"]["action"]["parameters"]["flow_cta"] = flow_cta
- flow_body["interactive"]["action"]["parameters"]["flow_id"] = flow_id
- flow_body["interactive"]["action"]["parameters"]["flow_action_payload"] = {"screen": initial_screen}
- return flow_body, http_url, headers
+ # Proposed refactoring to be added here
|
||
|
||
@staticmethod | ||
def evaluate_script(script: Text, data: Any, raise_err_on_failure: bool = True): | ||
log = [f"evaluation_type: script", f"script: {script}", f"data: {data}", f"raise_err_on_failure: {raise_err_on_failure}"] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
|
||
class BotSecretType(str, Enum): | ||
gpt_key = "gpt_key" | ||
d360_api_key = "d360_api_key" |
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.
The
FlowActionRequest
class is well-structured with appropriate validators for each field. However, consider adding docstrings to each validator method to improve code maintainability and readability.