## Description This PR introduces WhatsApp Embedded Signup functionality, enabling users to connect their WhatsApp Business accounts through Meta's streamlined OAuth flow without manual webhook configuration. This significantly improves the user experience by automating the entire setup process. **Key Features:** - Embedded signup flow using Facebook SDK and Meta's OAuth 2.0 - Automatic webhook registration and phone number configuration - Enhanced provider selection UI with card-based design - Real-time progress tracking during signup process - Comprehensive error handling and user feedback ## Required Configuration The following environment variables must be configured by administrators before this feature can be used: Super Admin Configuration (via super_admin/app_config?config=whatsapp_embedded) - `WHATSAPP_APP_ID`: The Facebook App ID for WhatsApp Business API integration - `WHATSAPP_CONFIGURATION_ID`: The Configuration ID for WhatsApp Embedded Signup flow (obtained from Meta Developer Portal) - `WHATSAPP_APP_SECRET`: The App Secret for WhatsApp Embedded Signup flow (required for token exchange)  ## How Has This Been Tested? #### Backend Tests (RSpec): - Authentication validation for embedded signup endpoints - Authorization code validation and error handling - Missing business parameter validation - Proper response format for configuration endpoint - Unauthorized access prevention #### Manual Test Cases: - Complete embedded signup flow (happy path) - Provider selection UI navigation - Facebook authentication popup handling - Error scenarios (cancelled auth, invalid business data, API failures) - Configuration presence/absence behavior ## Related Screenshots:      Fixes https://linear.app/chatwoot/issue/CW-2131/spec-for-whatsapp-cloud-channels-sign-in-with-facebook --------- Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: iamsivin <iamsivin@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
64 lines
1.7 KiB
Ruby
64 lines
1.7 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: channel_voice
|
|
#
|
|
# id :bigint not null, primary key
|
|
# additional_attributes :jsonb
|
|
# phone_number :string not null
|
|
# provider :string default("twilio"), not null
|
|
# provider_config :jsonb not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :integer not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_channel_voice_on_account_id (account_id)
|
|
# index_channel_voice_on_phone_number (phone_number) UNIQUE
|
|
#
|
|
class Channel::Voice < ApplicationRecord
|
|
include Channelable
|
|
|
|
self.table_name = 'channel_voice'
|
|
|
|
validates :phone_number, presence: true, uniqueness: true
|
|
validates :provider, presence: true
|
|
validates :provider_config, presence: true
|
|
|
|
# Validate phone number format (E.164 format)
|
|
validates :phone_number, format: { with: /\A\+[1-9]\d{1,14}\z/ }
|
|
|
|
# Provider-specific configs stored in JSON
|
|
validate :validate_provider_config
|
|
|
|
EDITABLE_ATTRS = [:phone_number, :provider, { provider_config: {} }].freeze
|
|
|
|
def name
|
|
"Voice (#{phone_number})"
|
|
end
|
|
|
|
def messaging_window_enabled?
|
|
false
|
|
end
|
|
|
|
private
|
|
|
|
def validate_provider_config
|
|
return if provider_config.blank?
|
|
|
|
case provider
|
|
when 'twilio'
|
|
validate_twilio_config
|
|
end
|
|
end
|
|
|
|
def validate_twilio_config
|
|
config = provider_config.with_indifferent_access
|
|
required_keys = %w[account_sid auth_token api_key_sid api_key_secret]
|
|
|
|
required_keys.each do |key|
|
|
errors.add(:provider_config, "#{key} is required for Twilio provider") if config[key].blank?
|
|
end
|
|
end
|
|
end
|