mirror of
https://github.com/lingble/chatwoot.git
synced 2025-12-25 07:07:19 +00:00
Added support for Telegram Business bots. Telegram webhooks from such bots include the business_message field, which we transform into a standard message for Chatwoot. This PR also modifies how we handle replies, attachments, and image uploads when working with Telegram Business bots. demo: https://drive.google.com/file/d/1Yz82wXBVRtb-mxjXogkUju4hlJbt3qyh/view?usp=sharing&t=4 Fixes #10181
45 lines
1.2 KiB
Ruby
45 lines
1.2 KiB
Ruby
# Find the various telegram payload samples here: https://core.telegram.org/bots/webhooks#testing-your-bot-with-updates
|
|
# https://core.telegram.org/bots/api#available-types
|
|
|
|
class Telegram::UpdateMessageService
|
|
pattr_initialize [:inbox!, :params!]
|
|
|
|
def perform
|
|
transform_business_message!
|
|
find_contact_inbox
|
|
find_conversation
|
|
find_message
|
|
update_message
|
|
rescue StandardError => e
|
|
Rails.logger.error "Error while processing telegram message update #{e.message}"
|
|
end
|
|
|
|
private
|
|
|
|
def find_contact_inbox
|
|
@contact_inbox = inbox.contact_inboxes.find_by!(source_id: params[:edited_message][:chat][:id])
|
|
end
|
|
|
|
def find_conversation
|
|
@conversation = @contact_inbox.conversations.last
|
|
end
|
|
|
|
def find_message
|
|
@message = @conversation.messages.find_by(source_id: params[:edited_message][:message_id])
|
|
end
|
|
|
|
def update_message
|
|
edited_message = params[:edited_message]
|
|
|
|
if edited_message[:text].present?
|
|
@message.update!(content: edited_message[:text])
|
|
elsif edited_message[:caption].present?
|
|
@message.update!(content: edited_message[:caption])
|
|
end
|
|
end
|
|
|
|
def transform_business_message!
|
|
params[:edited_message] = params[:edited_business_message] if params[:edited_business_message].present?
|
|
end
|
|
end
|