48 lines
1.5 KiB
C#
48 lines
1.5 KiB
C#
using BotSharp.Abstraction.Agents.Models;
|
|
using BotSharp.Plugin.Twilio.OutboundPhoneCallHandler.Enums;
|
|
|
|
namespace BotSharp.Plugin.Twilio.OutboundPhoneCallHandler.Hooks;
|
|
|
|
public class OutboundPhoneCallHandlerUtilityHook : IAgentUtilityHook
|
|
{
|
|
private static string PREFIX = "util-twilio-";
|
|
private static string OUTBOUND_PHONE_CALL_FN = $"{PREFIX}outbound_phone_call";
|
|
private static string TRANSFER_PHONE_CALL_FN = $"{PREFIX}transfer_phone_call";
|
|
private static string HANGUP_PHONE_CALL_FN = $"{PREFIX}hangup_phone_call";
|
|
private static string TEXT_MESSAGE_FN = $"{PREFIX}text_message";
|
|
private static string LEAVE_VOICEMAIL_FN = $"{PREFIX}leave_voicemail";
|
|
|
|
public void AddUtilities(List<AgentUtility> utilities)
|
|
{
|
|
var utility = new AgentUtility
|
|
{
|
|
Category = "phone",
|
|
Name = UtilityName.OutboundPhoneCall,
|
|
Items = [
|
|
new UtilityItem
|
|
{
|
|
FunctionName = OUTBOUND_PHONE_CALL_FN
|
|
},
|
|
new UtilityItem
|
|
{
|
|
FunctionName = TRANSFER_PHONE_CALL_FN
|
|
},
|
|
new UtilityItem
|
|
{
|
|
FunctionName = HANGUP_PHONE_CALL_FN
|
|
},
|
|
new UtilityItem
|
|
{
|
|
FunctionName = TEXT_MESSAGE_FN
|
|
},
|
|
new UtilityItem
|
|
{
|
|
FunctionName = LEAVE_VOICEMAIL_FN
|
|
}
|
|
]
|
|
};
|
|
|
|
utilities.Add(utility);
|
|
}
|
|
}
|