feat: Support input_select messages on telegram (#5887)

- Adding interactive button support for telegram for outgoing and incoming messages. 


Co-authored-by: Sojan Jose <sojan@pepalo.com>
This commit is contained in:
Chamath K.B. Attanayaka
2023-03-28 22:50:07 +05:30
committed by GitHub
parent bc8e8f3bb5
commit 6002394fcf
5 changed files with 162 additions and 22 deletions

View File

@@ -3,6 +3,7 @@
class Telegram::IncomingMessageService
include ::FileTypeHelper
include ::Telegram::ParamHelpers
pattr_initialize [:inbox!, :params!]
def perform
@@ -13,27 +14,23 @@ class Telegram::IncomingMessageService
update_contact_avatar
set_conversation
@message = @conversation.messages.build(
content: params[:message][:text].presence || params[:message][:caption],
content: telegram_params_message_content,
account_id: @inbox.account_id,
inbox_id: @inbox.id,
message_type: :incoming,
sender: @contact,
source_id: (params[:message][:message_id]).to_s
source_id: telegram_params_message_id.to_s
)
attach_location
attach_files
process_message_attachments if message_params?
@message.save!
end
private
def private_message?
params.dig(:message, :chat, :type) == 'private'
end
def set_contact
contact_inbox = ::ContactInboxWithContactBuilder.new(
source_id: params[:message][:from][:id],
source_id: telegram_params_from_id,
inbox: inbox,
contact_attributes: contact_attributes
).perform
@@ -42,10 +39,15 @@ class Telegram::IncomingMessageService
@contact = contact_inbox.contact
end
def process_message_attachments
attach_location
attach_files
end
def update_contact_avatar
return if @contact.avatar.attached?
avatar_url = inbox.channel.get_telegram_profile_image(params[:message][:from][:id])
avatar_url = inbox.channel.get_telegram_profile_image(telegram_params_from_id)
::Avatar::AvatarFromUrlJob.perform_later(@contact, avatar_url) if avatar_url
end
@@ -68,21 +70,21 @@ class Telegram::IncomingMessageService
def contact_attributes
{
name: "#{params[:message][:from][:first_name]} #{params[:message][:from][:last_name]}",
name: "#{telegram_params_first_name} #{telegram_params_last_name}",
additional_attributes: additional_attributes
}
end
def additional_attributes
{
username: params[:message][:from][:username],
language_code: params[:message][:from][:language_code]
username: telegram_params_username,
language_code: telegram_params_language_code
}
end
def conversation_additional_attributes
{
chat_id: params[:message][:chat][:id]
chat_id: telegram_params_chat_id
}
end
@@ -128,7 +130,7 @@ class Telegram::IncomingMessageService
end
def location
@location ||= params[:message][:location].presence
@location ||= params.dig(:message, :location).presence
end
def visual_media_params

View File

@@ -0,0 +1,68 @@
module Telegram::ParamHelpers
# ensures that message is from a private chat and not a group chat
def private_message?
return true if callback_query_params?
params.dig(:message, :chat, :type) == 'private'
end
def message_params?
params[:message].present?
end
def callback_query_params?
params[:callback_query].present?
end
def telegram_params_base_object
if callback_query_params?
params[:callback_query]
else
params[:message]
end
end
def telegram_params_from_id
telegram_params_base_object[:from][:id]
end
def telegram_params_first_name
telegram_params_base_object[:from][:first_name]
end
def telegram_params_last_name
telegram_params_base_object[:from][:last_name]
end
def telegram_params_username
telegram_params_base_object[:from][:username]
end
def telegram_params_language_code
telegram_params_base_object[:from][:language_code]
end
def telegram_params_chat_id
if callback_query_params?
params[:callback_query][:message][:chat][:id]
else
telegram_params_base_object[:chat][:id]
end
end
def telegram_params_message_content
if callback_query_params?
params[:callback_query][:data]
else
params[:message][:text].presence || params[:message][:caption]
end
end
def telegram_params_message_id
if callback_query_params?
params[:callback_query][:id]
else
params[:message][:message_id]
end
end
end