Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
79 lines
2.6 KiB
Ruby
79 lines
2.6 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: channel_twilio_sms
|
|
#
|
|
# id :bigint not null, primary key
|
|
# account_sid :string not null
|
|
# api_key_sid :string
|
|
# auth_token :string not null
|
|
# content_templates :jsonb
|
|
# content_templates_last_updated :datetime
|
|
# medium :integer default("sms")
|
|
# messaging_service_sid :string
|
|
# phone_number :string
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :integer not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_channel_twilio_sms_on_account_sid_and_phone_number (account_sid,phone_number) UNIQUE
|
|
# index_channel_twilio_sms_on_messaging_service_sid (messaging_service_sid) UNIQUE
|
|
# index_channel_twilio_sms_on_phone_number (phone_number) UNIQUE
|
|
#
|
|
|
|
class Channel::TwilioSms < ApplicationRecord
|
|
include Channelable
|
|
include Rails.application.routes.url_helpers
|
|
|
|
self.table_name = 'channel_twilio_sms'
|
|
|
|
# TODO: Remove guard once encryption keys become mandatory (target 3-4 releases out).
|
|
encrypts :auth_token if Chatwoot.encryption_configured?
|
|
|
|
validates :account_sid, presence: true
|
|
# The same parameter is used to store api_key_secret if api_key authentication is opted
|
|
validates :auth_token, presence: true
|
|
|
|
EDITABLE_ATTRS = [
|
|
:account_sid,
|
|
:auth_token
|
|
].freeze
|
|
|
|
# Must have _one_ of messaging_service_sid _or_ phone_number, and messaging_service_sid is preferred
|
|
validates :messaging_service_sid, uniqueness: true, presence: true, unless: :phone_number?
|
|
validates :phone_number, absence: true, if: :messaging_service_sid?
|
|
validates :phone_number, uniqueness: true, allow_nil: true
|
|
|
|
enum medium: { sms: 0, whatsapp: 1 }
|
|
|
|
def name
|
|
medium == 'sms' ? 'Twilio SMS' : 'Whatsapp'
|
|
end
|
|
|
|
def send_message(to:, body:, media_url: nil)
|
|
params = send_message_from.merge(to: to, body: body)
|
|
params[:media_url] = media_url if media_url.present?
|
|
params[:status_callback] = twilio_delivery_status_index_url
|
|
client.messages.create(**params)
|
|
end
|
|
|
|
private
|
|
|
|
def client
|
|
if api_key_sid.present?
|
|
Twilio::REST::Client.new(api_key_sid, auth_token, account_sid)
|
|
else
|
|
Twilio::REST::Client.new(account_sid, auth_token)
|
|
end
|
|
end
|
|
|
|
def send_message_from
|
|
if messaging_service_sid?
|
|
{ messaging_service_sid: messaging_service_sid }
|
|
else
|
|
{ from: phone_number }
|
|
end
|
|
end
|
|
end
|