432dad203b
Co-authored-by: Pranav Raj S <pranav@thoughtwoot.com>
49 lines
1.1 KiB
Ruby
49 lines
1.1 KiB
Ruby
class Twilio::OutgoingMessageService
|
|
pattr_initialize [:message!]
|
|
|
|
def perform
|
|
return if message.private
|
|
return if message.source_id
|
|
return if inbox.channel.class.to_s != 'Channel::TwilioSms'
|
|
return unless outgoing_message?
|
|
|
|
twilio_message = client.messages.create(message_params)
|
|
message.update!(source_id: twilio_message.sid)
|
|
end
|
|
|
|
private
|
|
|
|
delegate :conversation, to: :message
|
|
delegate :contact, to: :conversation
|
|
delegate :contact_inbox, to: :conversation
|
|
|
|
def message_params
|
|
params = {
|
|
body: message.content,
|
|
from: channel.phone_number,
|
|
to: contact_inbox.source_id
|
|
}
|
|
params[:media_url] = attachments if channel.whatsapp? && 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
|