feat: Ability to send attachments to telegram (#3108)

This feature allows the user to send and delete attachments in the telegram conversation.

Fixes #3037
This commit is contained in:
Aswin Dev P.S
2021-10-01 01:45:29 +05:30
committed by GitHub
parent e6bcf24864
commit be9a055a3f
6 changed files with 121 additions and 9 deletions

View File

@@ -223,7 +223,8 @@ export default {
this.isATwilioWhatsappChannel ||
this.isAPIInbox ||
this.isAnEmailChannel ||
this.isATwilioSMSChannel
this.isATwilioSMSChannel ||
this.isATelegramChannel
);
},
replyButtonLabel() {

View File

@@ -35,6 +35,9 @@ export default {
isAnEmailChannel() {
return this.channelType === INBOX_TYPES.EMAIL;
},
isATelegramChannel() {
return this.channelType === INBOX_TYPES.TELEGRAM;
},
isATwilioSMSChannel() {
const { medium: medium = '' } = this.inbox;
return this.isATwilioChannel && medium === 'sms';

View File

@@ -32,14 +32,10 @@ class Channel::Telegram < ApplicationRecord
"https://api.telegram.org/bot#{bot_token}"
end
def send_message_on_telegram(message, chat_id)
response = HTTParty.post("#{telegram_api_url}/sendMessage",
body: {
chat_id: chat_id,
text: message
})
def send_message_on_telegram(message)
return send_message(message) if message.attachments.empty?
response.parsed_response['result']['message_id'] if response.success?
send_attachments(message)
end
def get_telegram_profile_image(user_id)
@@ -80,4 +76,46 @@ class Channel::Telegram < ApplicationRecord
})
errors.add(:bot_token, 'error setting up the webook') unless response.success?
end
def send_message(message)
response = message_request(message.conversation[:additional_attributes]['chat_id'], message.content)
response.parsed_response['result']['message_id'] if response.success?
end
def send_attachments(message)
send_message(message) unless message.content.nil?
telegram_attachments = []
message.attachments.each do |attachment|
telegram_attachment = {}
case attachment[:file_type]
when 'image'
telegram_attachment[:type] = 'photo'
when 'file'
telegram_attachment[:type] = 'document'
end
telegram_attachment[:media] = attachment.file_url
telegram_attachments << telegram_attachment
end
response = attachments_request(message.conversation[:additional_attributes]['chat_id'], telegram_attachments)
response.parsed_response['result'].first['message_id'] if response.success?
end
def attachments_request(chat_id, attachments)
HTTParty.post("#{telegram_api_url}/sendMediaGroup",
body: {
chat_id: chat_id,
media: attachments.to_json
})
end
def message_request(chat_id, text)
HTTParty.post("#{telegram_api_url}/sendMessage",
body: {
chat_id: chat_id,
text: text
})
end
end

View File

@@ -8,7 +8,7 @@ class Telegram::SendOnTelegramService < Base::SendOnChannelService
def perform_reply
## send reply to telegram message api
# https://core.telegram.org/bots/api#sendmessage
message_id = channel.send_message_on_telegram(message.content, conversation[:additional_attributes]['chat_id'])
message_id = channel.send_message_on_telegram(message)
message.update!(source_id: message_id) if message_id.present?
end