2019-05-12 22:37:49 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-07-13 15:36:16 -04:00
|
|
|
module DiscourseChatIntegration
|
2017-06-27 14:21:27 -04:00
|
|
|
module Provider
|
|
|
|
module TelegramProvider
|
|
|
|
PROVIDER_NAME = "telegram".freeze
|
2017-07-03 10:53:26 -04:00
|
|
|
PROVIDER_ENABLED_SETTING = :chat_integration_telegram_enabled
|
2017-07-19 11:28:02 -04:00
|
|
|
CHANNEL_PARAMETERS = [
|
2017-08-01 15:53:39 -04:00
|
|
|
{ key: "name", regex: '^\S+' },
|
|
|
|
{ key: "chat_id", regex: '^(-?[0-9]+|@\S+)$', unique: true }
|
2017-07-19 11:28:02 -04:00
|
|
|
]
|
|
|
|
|
2017-08-01 15:53:39 -04:00
|
|
|
def self.setup_webhook
|
2017-07-19 11:28:02 -04:00
|
|
|
newSecret = SecureRandom.hex
|
|
|
|
SiteSetting.chat_integration_telegram_secret = newSecret
|
|
|
|
|
|
|
|
message = {
|
2017-08-01 15:53:39 -04:00
|
|
|
url: Discourse.base_url + '/chat-integration/telegram/command/' + newSecret,
|
2017-07-19 11:28:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
response = self.do_api_request('setWebhook', message)
|
|
|
|
|
2017-10-03 05:42:07 -04:00
|
|
|
if response['ok'] != true
|
2017-07-19 11:28:02 -04:00
|
|
|
# If setting up webhook failed, disable provider
|
|
|
|
SiteSetting.chat_integration_telegram_enabled = false
|
2017-08-01 15:53:39 -04:00
|
|
|
Rails.logger.error("Failed to setup telegram webhook. Message data= " + message.to_json + " response=" + response.to_json)
|
2017-07-19 11:28:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.sendMessage(message)
|
2019-11-14 15:03:49 -05:00
|
|
|
self.do_api_request('sendMessage', message)
|
2017-07-19 11:28:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.do_api_request(methodName, message)
|
|
|
|
http = Net::HTTP.new("api.telegram.org", 443)
|
|
|
|
http.use_ssl = true
|
|
|
|
|
|
|
|
access_token = SiteSetting.chat_integration_telegram_access_token
|
|
|
|
|
|
|
|
uri = URI("https://api.telegram.org/bot#{access_token}/#{methodName}")
|
|
|
|
|
2017-08-01 15:53:39 -04:00
|
|
|
req = Net::HTTP::Post.new(uri, 'Content-Type' => 'application/json')
|
2017-07-19 11:28:02 -04:00
|
|
|
req.body = message.to_json
|
|
|
|
response = http.request(req)
|
|
|
|
|
2020-09-25 15:08:28 -04:00
|
|
|
responseData = JSON.parse(response.body)
|
2017-07-19 11:28:02 -04:00
|
|
|
|
2019-11-14 15:03:49 -05:00
|
|
|
responseData
|
2017-07-19 11:28:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.message_text(post)
|
|
|
|
display_name = "@#{post.user.username}"
|
|
|
|
full_name = post.user.name || ""
|
|
|
|
|
|
|
|
if !(full_name.strip.empty?) && (full_name.strip.gsub(' ', '_').casecmp(post.user.username) != 0) && (full_name.strip.gsub(' ', '').casecmp(post.user.username) != 0)
|
|
|
|
display_name = "#{full_name} @#{post.user.username}"
|
|
|
|
end
|
|
|
|
|
|
|
|
topic = post.topic
|
|
|
|
|
|
|
|
category = ''
|
|
|
|
if topic.category
|
2017-08-01 15:53:39 -04:00
|
|
|
category = (topic.category.parent_category) ? "[#{topic.category.parent_category.name}/#{topic.category.name}]" : "[#{topic.category.name}]"
|
2017-07-19 11:28:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
tags = ''
|
|
|
|
if topic.tags.present?
|
|
|
|
tags = topic.tags.map(&:name).join(', ')
|
|
|
|
end
|
|
|
|
|
2019-11-14 15:03:49 -05:00
|
|
|
I18n.t(
|
2017-07-19 11:28:02 -04:00
|
|
|
"chat_integration.provider.telegram.message",
|
|
|
|
user: display_name,
|
2017-07-20 07:27:34 -04:00
|
|
|
post_url: post.full_url,
|
2017-07-19 11:28:02 -04:00
|
|
|
title: CGI::escapeHTML(topic.title),
|
|
|
|
post_excerpt: post.excerpt(SiteSetting.chat_integration_telegram_excerpt_length, text_entities: true, strip_links: true, remap_emoji: true),
|
|
|
|
)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2020-06-15 11:45:25 -04:00
|
|
|
def self.trigger_notification(post, channel, rule)
|
2017-07-19 11:28:02 -04:00
|
|
|
chat_id = channel.data['chat_id']
|
|
|
|
|
|
|
|
message = {
|
|
|
|
chat_id: chat_id,
|
|
|
|
text: message_text(post),
|
|
|
|
parse_mode: "html",
|
|
|
|
disable_web_page_preview: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
response = sendMessage(message)
|
|
|
|
|
2017-10-03 05:42:07 -04:00
|
|
|
if response['ok'] != true
|
2017-07-19 11:28:02 -04:00
|
|
|
error_key = nil
|
|
|
|
if response['description'].include? 'chat not found'
|
2017-07-28 08:25:31 -04:00
|
|
|
error_key = 'chat_integration.provider.telegram.errors.channel_not_found'
|
2017-07-19 11:28:02 -04:00
|
|
|
elsif response['description'].include? 'Forbidden'
|
2017-07-28 08:25:31 -04:00
|
|
|
error_key = 'chat_integration.provider.telegram.errors.forbidden'
|
2017-07-19 11:28:02 -04:00
|
|
|
end
|
2021-07-13 15:36:16 -04:00
|
|
|
raise ::DiscourseChatIntegration::ProviderError.new info: { error_key: error_key, message: message, response_body: response }
|
2017-07-19 11:28:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2017-07-13 15:50:45 -04:00
|
|
|
|
2017-06-27 14:21:27 -04:00
|
|
|
end
|
|
|
|
end
|
2017-07-05 10:03:02 -04:00
|
|
|
end
|
|
|
|
|
2017-07-19 11:28:02 -04:00
|
|
|
require_relative "telegram_command_controller.rb"
|
2017-08-01 15:53:39 -04:00
|
|
|
require_relative "telegram_initializer.rb"
|