162 lines
4.8 KiB
Ruby
162 lines
4.8 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: channel_telegram
|
|
#
|
|
# id :bigint not null, primary key
|
|
# bot_name :string
|
|
# bot_token :string not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :integer not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_channel_telegram_on_bot_token (bot_token) UNIQUE
|
|
#
|
|
|
|
class Channel::Telegram < ApplicationRecord
|
|
include Channelable
|
|
|
|
self.table_name = 'channel_telegram'
|
|
EDITABLE_ATTRS = [:bot_token].freeze
|
|
|
|
before_validation :ensure_valid_bot_token, on: :create
|
|
validates :bot_token, presence: true, uniqueness: true
|
|
before_save :setup_telegram_webhook
|
|
|
|
def name
|
|
'Telegram'
|
|
end
|
|
|
|
def telegram_api_url
|
|
"https://api.telegram.org/bot#{bot_token}"
|
|
end
|
|
|
|
def send_message_on_telegram(message)
|
|
return send_message(message) if message.attachments.empty?
|
|
|
|
send_attachments(message)
|
|
end
|
|
|
|
def get_telegram_profile_image(user_id)
|
|
# get profile image from telegram
|
|
response = HTTParty.get("#{telegram_api_url}/getUserProfilePhotos", query: { user_id: user_id })
|
|
return nil unless response.success?
|
|
|
|
photos = response.parsed_response.dig('result', 'photos')
|
|
return if photos.blank?
|
|
|
|
get_telegram_file_path(photos.first.last['file_id'])
|
|
end
|
|
|
|
def get_telegram_file_path(file_id)
|
|
response = HTTParty.get("#{telegram_api_url}/getFile", query: { file_id: file_id })
|
|
return nil unless response.success?
|
|
|
|
"https://api.telegram.org/file/bot#{bot_token}/#{response.parsed_response['result']['file_path']}"
|
|
end
|
|
|
|
private
|
|
|
|
def ensure_valid_bot_token
|
|
response = HTTParty.get("#{telegram_api_url}/getMe")
|
|
unless response.success?
|
|
errors.add(:bot_token, 'invalid token')
|
|
return
|
|
end
|
|
|
|
self.bot_name = response.parsed_response['result']['username']
|
|
end
|
|
|
|
def setup_telegram_webhook
|
|
HTTParty.post("#{telegram_api_url}/deleteWebhook")
|
|
response = HTTParty.post("#{telegram_api_url}/setWebhook",
|
|
body: {
|
|
url: "#{ENV.fetch('FRONTEND_URL', nil)}/webhooks/telegram/#{bot_token}"
|
|
})
|
|
errors.add(:bot_token, 'error setting up the webook') unless response.success?
|
|
end
|
|
|
|
def chat_id(message)
|
|
message.conversation[:additional_attributes]['chat_id']
|
|
end
|
|
|
|
def reply_to_message_id(message)
|
|
message.content_attributes['in_reply_to_external_id']
|
|
end
|
|
|
|
def send_message(message)
|
|
response = message_request(chat_id(message), message.content, reply_markup(message), reply_to_message_id(message))
|
|
process_error(message, response)
|
|
response.parsed_response['result']['message_id'] if response.success?
|
|
end
|
|
|
|
def process_error(message, response)
|
|
return unless response.parsed_response['ok'] == false
|
|
|
|
# https://github.com/TelegramBotAPI/errors/tree/master/json
|
|
message.external_error = "#{response.parsed_response['error_code']}, #{response.parsed_response['description']}"
|
|
message.status = :failed
|
|
message.save!
|
|
end
|
|
|
|
def reply_markup(message)
|
|
return unless message.content_type == 'input_select'
|
|
|
|
{
|
|
one_time_keyboard: true,
|
|
inline_keyboard: message.content_attributes['items'].map do |item|
|
|
[{
|
|
text: item['title'],
|
|
callback_data: item['value']
|
|
}]
|
|
end
|
|
}.to_json
|
|
end
|
|
|
|
def send_attachments(message)
|
|
send_message(message) unless message.content.nil?
|
|
|
|
telegram_attachments = []
|
|
message.attachments.each do |attachment|
|
|
telegram_attachment = {}
|
|
telegram_attachment[:type] = attachment_type(attachment[:file_type])
|
|
telegram_attachment[:media] = attachment.download_url
|
|
telegram_attachments << telegram_attachment
|
|
end
|
|
|
|
response = attachments_request(chat_id(message), telegram_attachments, reply_to_message_id(message))
|
|
process_error(message, response)
|
|
response.parsed_response['result'].first['message_id'] if response.success?
|
|
end
|
|
|
|
def attachment_type(file_type)
|
|
file_type_mappings = {
|
|
'audio' => 'audio',
|
|
'image' => 'photo',
|
|
'file' => 'document',
|
|
'video' => 'video'
|
|
}
|
|
file_type_mappings[file_type]
|
|
end
|
|
|
|
def attachments_request(chat_id, attachments, reply_to_message_id)
|
|
HTTParty.post("#{telegram_api_url}/sendMediaGroup",
|
|
body: {
|
|
chat_id: chat_id,
|
|
media: attachments.to_json,
|
|
reply_to_message_id: reply_to_message_id
|
|
})
|
|
end
|
|
|
|
def message_request(chat_id, text, reply_markup = nil, reply_to_message_id = nil)
|
|
HTTParty.post("#{telegram_api_url}/sendMessage",
|
|
body: {
|
|
chat_id: chat_id,
|
|
text: text,
|
|
reply_markup: reply_markup,
|
|
reply_to_message_id: reply_to_message_id
|
|
})
|
|
end
|
|
end
|