Compare commits

...
Author SHA1 Message Date
Shivam Mishra fb8c9e4453 feat: add more agent bot events 2026-01-07 14:41:12 +05:30
2 changed files with 137 additions and 0 deletions
+26
View File
@@ -15,6 +15,32 @@ class AgentBotListener < BaseListener
agent_bots_for(inbox, conversation).each { |agent_bot| process_webhook_bot_event(agent_bot, payload) }
end
def conversation_created(event)
conversation = extract_conversation_and_account(event)[0]
inbox = conversation.inbox
event_name = __method__.to_s
payload = conversation.webhook_data.merge(event: event_name)
agent_bots_for(inbox, conversation).each { |agent_bot| process_webhook_bot_event(agent_bot, payload) }
end
def conversation_status_changed(event)
conversation = extract_conversation_and_account(event)[0]
changed_attributes = extract_changed_attributes(event)
inbox = conversation.inbox
event_name = __method__.to_s
payload = conversation.webhook_data.merge(event: event_name, changed_attributes: changed_attributes)
agent_bots_for(inbox, conversation).each { |agent_bot| process_webhook_bot_event(agent_bot, payload) }
end
def conversation_updated(event)
conversation = extract_conversation_and_account(event)[0]
changed_attributes = extract_changed_attributes(event)
inbox = conversation.inbox
event_name = __method__.to_s
payload = conversation.webhook_data.merge(event: event_name, changed_attributes: changed_attributes)
agent_bots_for(inbox, conversation).each { |agent_bot| process_webhook_bot_event(agent_bot, payload) }
end
def message_created(event)
message = extract_message_and_account(event)[0]
inbox = message.inbox
+111
View File
@@ -82,4 +82,115 @@ describe AgentBotListener do
end
end
end
describe '#conversation_created' do
let(:event_name) { 'conversation.created' }
let!(:event) { Events::Base.new(event_name, Time.zone.now, conversation: conversation) }
context 'when agent bot is not configured' do
it 'does not send message to agent bot' do
expect(AgentBots::WebhookJob).to receive(:perform_later).exactly(0).times
listener.conversation_created(event)
end
end
context 'when agent bot is configured' do
it 'sends message to agent bot' do
create(:agent_bot_inbox, inbox: inbox, agent_bot: agent_bot)
expect(AgentBots::WebhookJob).to receive(:perform_later).with(agent_bot.outgoing_url,
conversation.webhook_data.merge(event: 'conversation_created')).once
listener.conversation_created(event)
end
end
end
describe '#conversation_updated' do
let(:event_name) { 'conversation.updated' }
let!(:event) do
Events::Base.new(
event_name,
Time.zone.now,
conversation: conversation.reload,
changed_attributes: {
custom_attributes: [{ test: nil }, { test: 'testing custom attri webhook' }]
}
)
end
context 'when agent bot is not configured' do
it 'does not send message to agent bot' do
expect(AgentBots::WebhookJob).to receive(:perform_later).exactly(0).times
listener.conversation_updated(event)
end
end
context 'when agent bot is configured' do
it 'sends message to agent bot' do
create(:agent_bot_inbox, inbox: inbox, agent_bot: agent_bot)
conversation.update(custom_attributes: { test: 'testing custom attri webhook' })
expect(AgentBots::WebhookJob).to receive(:perform_later).with(
agent_bot.outgoing_url,
conversation.webhook_data.merge(
event: 'conversation_updated',
changed_attributes: [
{
custom_attributes: {
previous_value: { test: nil },
current_value: { test: 'testing custom attri webhook' }
}
}
]
)
).once
listener.conversation_updated(event)
end
end
end
describe '#conversation_status_changed' do
let(:event_name) { 'conversation.status_changed' }
let!(:event) do
Events::Base.new(
event_name,
Time.zone.now,
conversation: conversation.reload,
changed_attributes: {
status: %w[pending open]
}
)
end
context 'when agent bot is not configured' do
it 'does not send message to agent bot' do
expect(AgentBots::WebhookJob).to receive(:perform_later).exactly(0).times
listener.conversation_status_changed(event)
end
end
context 'when agent bot is configured' do
it 'sends message to agent bot' do
create(:agent_bot_inbox, inbox: inbox, agent_bot: agent_bot)
conversation.update(status: 'open')
expect(AgentBots::WebhookJob).to receive(:perform_later).with(
agent_bot.outgoing_url,
conversation.webhook_data.merge(
event: 'conversation_status_changed',
changed_attributes: [
{
status: {
previous_value: 'pending',
current_value: 'open'
}
}
]
)
).once
listener.conversation_status_changed(event)
end
end
end
end