45 lines
1 KiB
Ruby
45 lines
1 KiB
Ruby
|
# Copyright (C) 2012-2015 Zammad Foundation, http://zammad-foundation.org/
|
||
|
|
||
|
class Channel::Driver::Telegram
|
||
|
|
||
|
=begin
|
||
|
|
||
|
instance = Channel::Driver::Telegram.new
|
||
|
instance.send(
|
||
|
{
|
||
|
adapter: 'telegram',
|
||
|
auth: {
|
||
|
api_key: api_key
|
||
|
},
|
||
|
},
|
||
|
telegram_attributes,
|
||
|
notification
|
||
|
)
|
||
|
|
||
|
=end
|
||
|
|
||
|
def send(options, article, _notification = false)
|
||
|
|
||
|
# return if we run import mode
|
||
|
return if Setting.get('import_mode')
|
||
|
|
||
|
options = check_external_credential(options)
|
||
|
|
||
|
@client = Telegram.new(options[:auth][:api_key])
|
||
|
message = @client.from_article(article)
|
||
|
message
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def check_external_credential(options)
|
||
|
if options[:auth] && options[:auth][:external_credential_id]
|
||
|
external_credential = ExternalCredential.find_by(id: options[:auth][:external_credential_id])
|
||
|
raise "No such ExternalCredential.find(#{options[:auth][:external_credential_id]})" if !external_credential
|
||
|
options[:auth][:api_key] = external_credential.credentials['api_key']
|
||
|
end
|
||
|
options
|
||
|
end
|
||
|
|
||
|
end
|