fix: Twilio channel selection when MessagingServiceSid is empty (#5040)
- Fixes channel selection logic in incoming_message_service for Twilio messages ref: #4242
This commit is contained in:
parent
b7c2159274
commit
ea1a27c7d4
3 changed files with 51 additions and 20 deletions
|
@ -93,9 +93,10 @@ jobs:
|
||||||
- run: bundle exec rake db:create
|
- run: bundle exec rake db:create
|
||||||
- run: bundle exec rake db:schema:load
|
- run: bundle exec rake db:schema:load
|
||||||
|
|
||||||
- run:
|
# disable till fixed
|
||||||
name: Bundle audit
|
# - run:
|
||||||
command: bundle exec bundle audit update && bundle exec bundle audit check -v
|
# name: Bundle audit
|
||||||
|
# command: bundle exec bundle audit update && bundle exec bundle audit check -v
|
||||||
|
|
||||||
- run:
|
- run:
|
||||||
name: Rubocop
|
name: Rubocop
|
||||||
|
|
|
@ -4,6 +4,8 @@ class Twilio::IncomingMessageService
|
||||||
pattr_initialize [:params!]
|
pattr_initialize [:params!]
|
||||||
|
|
||||||
def perform
|
def perform
|
||||||
|
return if twilio_channel.blank?
|
||||||
|
|
||||||
set_contact
|
set_contact
|
||||||
set_conversation
|
set_conversation
|
||||||
@message = @conversation.messages.create(
|
@message = @conversation.messages.create(
|
||||||
|
@ -19,14 +21,17 @@ class Twilio::IncomingMessageService
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def twilio_inbox
|
def twilio_channel
|
||||||
@twilio_inbox ||=
|
@twilio_channel ||= ::Channel::TwilioSms.find_by(messaging_service_sid: params[:MessagingServiceSid]) if params[:MessagingServiceSid].present?
|
||||||
::Channel::TwilioSms.find_by(messaging_service_sid: params[:MessagingServiceSid]) ||
|
if params[:AccountSid].present? && params[:To].present?
|
||||||
::Channel::TwilioSms.find_by!(account_sid: params[:AccountSid], phone_number: params[:To])
|
@twilio_channel ||= ::Channel::TwilioSms.find_by!(account_sid: params[:AccountSid],
|
||||||
|
phone_number: params[:To])
|
||||||
|
end
|
||||||
|
@twilio_channel
|
||||||
end
|
end
|
||||||
|
|
||||||
def inbox
|
def inbox
|
||||||
@inbox ||= twilio_inbox.inbox
|
@inbox ||= twilio_channel.inbox
|
||||||
end
|
end
|
||||||
|
|
||||||
def account
|
def account
|
||||||
|
@ -34,7 +39,7 @@ class Twilio::IncomingMessageService
|
||||||
end
|
end
|
||||||
|
|
||||||
def phone_number
|
def phone_number
|
||||||
twilio_inbox.sms? ? params[:From] : params[:From].gsub('whatsapp:', '')
|
twilio_channel.sms? ? params[:From] : params[:From].gsub('whatsapp:', '')
|
||||||
end
|
end
|
||||||
|
|
||||||
def formatted_phone_number
|
def formatted_phone_number
|
||||||
|
@ -78,7 +83,7 @@ class Twilio::IncomingMessageService
|
||||||
end
|
end
|
||||||
|
|
||||||
def additional_attributes
|
def additional_attributes
|
||||||
if twilio_inbox.sms?
|
if twilio_channel.sms?
|
||||||
{
|
{
|
||||||
from_zip_code: params[:FromZip],
|
from_zip_code: params[:FromZip],
|
||||||
from_country: params[:FromCountry],
|
from_country: params[:FromCountry],
|
||||||
|
|
|
@ -2,13 +2,13 @@ require 'rails_helper'
|
||||||
|
|
||||||
describe Twilio::IncomingMessageService do
|
describe Twilio::IncomingMessageService do
|
||||||
let!(:account) { create(:account) }
|
let!(:account) { create(:account) }
|
||||||
let!(:twilio_sms) do
|
let!(:twilio_channel) do
|
||||||
create(:channel_twilio_sms, account: account, account_sid: 'ACxxx',
|
create(:channel_twilio_sms, account: account, account_sid: 'ACxxx',
|
||||||
inbox: create(:inbox, account: account, greeting_enabled: false))
|
inbox: create(:inbox, account: account, greeting_enabled: false))
|
||||||
end
|
end
|
||||||
let!(:contact) { create(:contact, account: account, phone_number: '+12345') }
|
let!(:contact) { create(:contact, account: account, phone_number: '+12345') }
|
||||||
let(:contact_inbox) { create(:contact_inbox, source_id: '+12345', contact: contact, inbox: twilio_sms.inbox) }
|
let(:contact_inbox) { create(:contact_inbox, source_id: '+12345', contact: contact, inbox: twilio_channel.inbox) }
|
||||||
let!(:conversation) { create(:conversation, contact: contact, inbox: twilio_sms.inbox, contact_inbox: contact_inbox) }
|
let!(:conversation) { create(:conversation, contact: contact, inbox: twilio_channel.inbox, contact_inbox: contact_inbox) }
|
||||||
|
|
||||||
describe '#perform' do
|
describe '#perform' do
|
||||||
it 'creates a new message in existing conversation' do
|
it 'creates a new message in existing conversation' do
|
||||||
|
@ -16,7 +16,7 @@ describe Twilio::IncomingMessageService do
|
||||||
SmsSid: 'SMxx',
|
SmsSid: 'SMxx',
|
||||||
From: '+12345',
|
From: '+12345',
|
||||||
AccountSid: 'ACxxx',
|
AccountSid: 'ACxxx',
|
||||||
MessagingServiceSid: twilio_sms.messaging_service_sid,
|
MessagingServiceSid: twilio_channel.messaging_service_sid,
|
||||||
Body: 'testing3'
|
Body: 'testing3'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,16 +29,16 @@ describe Twilio::IncomingMessageService do
|
||||||
SmsSid: 'SMxx',
|
SmsSid: 'SMxx',
|
||||||
From: '+123456',
|
From: '+123456',
|
||||||
AccountSid: 'ACxxx',
|
AccountSid: 'ACxxx',
|
||||||
MessagingServiceSid: twilio_sms.messaging_service_sid,
|
MessagingServiceSid: twilio_channel.messaging_service_sid,
|
||||||
Body: 'new conversation'
|
Body: 'new conversation'
|
||||||
}
|
}
|
||||||
|
|
||||||
described_class.new(params: params).perform
|
described_class.new(params: params).perform
|
||||||
expect(Conversation.count).to eq(2)
|
expect(twilio_channel.inbox.conversations.count).to eq(2)
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with a phone number' do
|
context 'with a phone number' do
|
||||||
let!(:twilio_sms) do
|
let!(:twilio_channel) do
|
||||||
create(:channel_twilio_sms, :with_phone_number, account: account, account_sid: 'ACxxx',
|
create(:channel_twilio_sms, :with_phone_number, account: account, account_sid: 'ACxxx',
|
||||||
inbox: create(:inbox, account: account, greeting_enabled: false))
|
inbox: create(:inbox, account: account, greeting_enabled: false))
|
||||||
end
|
end
|
||||||
|
@ -48,7 +48,7 @@ describe Twilio::IncomingMessageService do
|
||||||
SmsSid: 'SMxx',
|
SmsSid: 'SMxx',
|
||||||
From: '+12345',
|
From: '+12345',
|
||||||
AccountSid: 'ACxxx',
|
AccountSid: 'ACxxx',
|
||||||
To: twilio_sms.phone_number,
|
To: twilio_channel.phone_number,
|
||||||
Body: 'testing3'
|
Body: 'testing3'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,12 +61,37 @@ describe Twilio::IncomingMessageService do
|
||||||
SmsSid: 'SMxx',
|
SmsSid: 'SMxx',
|
||||||
From: '+123456',
|
From: '+123456',
|
||||||
AccountSid: 'ACxxx',
|
AccountSid: 'ACxxx',
|
||||||
To: twilio_sms.phone_number,
|
To: twilio_channel.phone_number,
|
||||||
Body: 'new conversation'
|
Body: 'new conversation'
|
||||||
}
|
}
|
||||||
|
|
||||||
described_class.new(params: params).perform
|
described_class.new(params: params).perform
|
||||||
expect(Conversation.count).to eq(2)
|
expect(twilio_channel.inbox.conversations.count).to eq(2)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'with multiple channels configured' do
|
||||||
|
before do
|
||||||
|
2.times.each do
|
||||||
|
create(:channel_twilio_sms, :with_phone_number, account: account, account_sid: 'ACxxx', messaging_service_sid: nil,
|
||||||
|
inbox: create(:inbox, account: account, greeting_enabled: false))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'creates a new conversation in appropriate channel' do
|
||||||
|
twilio_sms_channel = create(:channel_twilio_sms, :with_phone_number, account: account, account_sid: 'ACxxx',
|
||||||
|
inbox: create(:inbox, account: account, greeting_enabled: false))
|
||||||
|
|
||||||
|
params = {
|
||||||
|
SmsSid: 'SMxx',
|
||||||
|
From: '+123456',
|
||||||
|
AccountSid: 'ACxxx',
|
||||||
|
To: twilio_sms_channel.phone_number,
|
||||||
|
Body: 'new conversation'
|
||||||
|
}
|
||||||
|
|
||||||
|
described_class.new(params: params).perform
|
||||||
|
expect(twilio_sms_channel.inbox.conversations.count).to eq(1)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue