Chatwoot/app/services/twilio/send_on_twilio_service.rb
Tejaswini Chile dddab0bbce
chore: Handle the Twilio exception in sentry
Fix trying to extract the Sid from non created message.

Fixes #3029
2021-09-21 23:02:45 +05:30

46 lines
938 B
Ruby

class Twilio::SendOnTwilioService < Base::SendOnChannelService
private
def channel_class
Channel::TwilioSms
end
def perform_reply
begin
twilio_message = client.messages.create(**message_params)
rescue Twilio::REST::TwilioError => e
Sentry.capture_exception(e)
end
message.update!(source_id: twilio_message.sid) if twilio_message
end
def message_params
params = {
body: message.content,
from: channel.phone_number,
to: contact_inbox.source_id
}
params[:media_url] = attachments if message.attachments.present?
params
end
def attachments
message.attachments.map(&:file_url)
end
def inbox
@inbox ||= message.inbox
end
def channel
@channel ||= inbox.channel
end
def outgoing_message?
message.outgoing? || message.template?
end
def client
::Twilio::REST::Client.new(channel.account_sid, channel.auth_token)
end
end