trabajo-afectivo/app/models/channel.rb

270 lines
8.1 KiB
Ruby
Raw Normal View History

2016-10-19 03:11:36 +00:00
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
class Channel < ApplicationModel
load 'channel/assets.rb'
include Channel::Assets
2016-06-19 16:58:41 +00:00
belongs_to :group, class_name: 'Group'
store :options
store :preferences
after_create :email_address_check
after_update :email_address_check
after_destroy :email_address_check
2016-01-09 12:23:11 +00:00
# rubocop:disable Style/ClassVars
@@channel_stream = {}
# rubocop:enable Style/ClassVars
2015-08-28 00:53:14 +00:00
=begin
fetch all accounts
Channel.fetch
=end
2012-04-10 14:06:46 +00:00
def self.fetch
2015-08-28 00:53:14 +00:00
channels = Channel.where('active = ? AND area LIKE ?', true, '%::Account')
channels.each(&:fetch)
2012-04-10 14:06:46 +00:00
end
2015-08-28 00:53:14 +00:00
=begin
fetch one account
channel = Channel.where(area: 'Email::Account').first
channel.fetch
=end
2016-01-10 13:24:54 +00:00
def fetch(force = false)
2015-08-28 00:53:14 +00:00
adapter = options[:adapter]
adapter_options = options
if options[:inbound] && options[:inbound][:adapter]
2015-08-28 00:53:14 +00:00
adapter = options[:inbound][:adapter]
adapter_options = options[:inbound][:options]
end
begin
# we need to require each channel backend individually otherwise we get a
# 'warning: toplevel constant Twitter referenced by Channel::Driver::Twitter' error e.g.
# so we have to convert the channel name to the filename via Rails String.underscore
# http://stem.ps/rails/2015/01/25/ruby-gotcha-toplevel-constant-referenced-by.html
require "channel/driver/#{adapter.to_filename}"
driver_class = Object.const_get("Channel::Driver::#{adapter.to_classname}")
driver_instance = driver_class.new
2016-01-10 13:24:54 +00:00
return if !force && !driver_instance.fetchable?(self)
result = driver_instance.fetch(adapter_options, self)
self.status_in = result[:result]
self.last_log_in = result[:notice]
2016-01-09 12:23:11 +00:00
preferences[:last_fetch] = Time.zone.now
2015-08-28 00:53:14 +00:00
save
2016-01-09 12:23:11 +00:00
rescue => e
error = "Can't use Channel::Driver::#{adapter.to_classname}: #{e.inspect}"
logger.error error
logger.error e.backtrace
self.status_in = 'error'
self.last_log_in = error
preferences[:last_fetch] = Time.zone.now
save
end
end
=begin
stream instance of account
channel = Channel.where(area: 'Twitter::Account').first
stream_instance = channel.stream_instance
# start stream
stream_instance.stream
=end
def stream_instance
adapter = options[:adapter]
begin
# we need to require each channel backend individually otherwise we get a
# 'warning: toplevel constant Twitter referenced by Channel::Driver::Twitter' error e.g.
# so we have to convert the channel name to the filename via Rails String.underscore
# http://stem.ps/rails/2015/01/25/ruby-gotcha-toplevel-constant-referenced-by.html
require "channel/driver/#{adapter.to_filename}"
driver_class = Object.const_get("Channel::Driver::#{adapter.to_classname}")
driver_instance = driver_class.new
# check is stream exists
return if !driver_instance.respond_to?(:stream_instance)
driver_instance.stream_instance(self)
# set scheduler job to active
return driver_instance
2015-08-28 00:53:14 +00:00
rescue => e
error = "Can't use Channel::Driver::#{adapter.to_classname}: #{e.inspect}"
logger.error error
logger.error e.backtrace
self.status_in = 'error'
self.last_log_in = error
save
end
end
=begin
2016-01-09 12:23:11 +00:00
stream all accounts
Channel.stream
=end
def self.stream
Thread.abort_on_exception = true
auto_reconnect_after = 25
2016-01-09 12:23:11 +00:00
last_channels = []
loop do
logger.debug 'stream controll loop'
2016-01-09 12:23:11 +00:00
current_channels = []
channels = Channel.where('active = ? AND area LIKE ?', true, '%::Account')
channels.each do |channel|
2016-01-09 12:23:11 +00:00
next if channel.options[:adapter] != 'twitter'
channel_id = channel.id.to_s
current_channels.push channel_id
# exit it channel has changed or connection is older then 25 min.
if @@channel_stream[channel_id]
if @@channel_stream[channel_id][:updated_at] != channel.updated_at
logger.info "channel (#{channel.id}) has changed, stop thread"
@@channel_stream[channel_id][:thread].exit
@@channel_stream[channel_id][:thread].join
@@channel_stream[channel_id][:stream_instance].disconnect
@@channel_stream[channel_id] = false
elsif @@channel_stream[channel_id][:started_at] && @@channel_stream[channel_id][:started_at] < Time.zone.now - auto_reconnect_after.minutes
logger.info "channel (#{channel.id}) reconnect - thread is older then #{auto_reconnect_after} minutes, restart thread"
@@channel_stream[channel_id][:thread].exit
@@channel_stream[channel_id][:thread].join
@@channel_stream[channel_id][:stream_instance].disconnect
@@channel_stream[channel_id] = false
end
2016-01-09 12:23:11 +00:00
end
#logger.debug "thread for channel (#{channel.id}) already running" if channel_stream
next if @@channel_stream[channel_id]
2016-01-09 12:23:11 +00:00
@@channel_stream[channel_id] = {
updated_at: channel.updated_at,
started_at: Time.zone.now,
2016-01-09 12:23:11 +00:00
}
# start channels with delay
sleep @@channel_stream.count
2016-01-09 12:23:11 +00:00
# start threads for each channel
@@channel_stream[channel_id][:thread] = Thread.new do
begin
logger.info "Started stream channel for '#{channel.id}' (#{channel.area})..."
@@channel_stream[channel_id] ||= {}
@@channel_stream[channel_id][:stream_instance] = channel.stream_instance
@@channel_stream[channel_id][:stream_instance].stream
@@channel_stream[channel_id][:stream_instance].disconnect
@@channel_stream[channel_id] = false
logger.info " ...stopped thread for '#{channel.id}'"
rescue => e
error = "Can't use channel (#{channel.id}): #{e.inspect}"
logger.error error
logger.error e.backtrace
channel.status_in = 'error'
channel.last_log_in = error
channel.save
@@channel_stream[channel_id] = false
end
end
end
2016-01-09 12:23:11 +00:00
# cleanup deleted channels
last_channels.each do |channel_id|
next if !@@channel_stream[channel_id.to_s]
2016-01-09 12:23:11 +00:00
next if current_channels.include?(channel_id)
logger.info "channel (#{channel_id}) not longer active, stop thread"
@@channel_stream[channel_id.to_s][:thread].exit
@@channel_stream[channel_id.to_s][:thread].join
@@channel_stream[channel_id.to_s][:stream_instance].disconnect
@@channel_stream[channel_id.to_s] = false
end
2016-01-09 12:23:11 +00:00
last_channels = current_channels
sleep 20
2016-01-09 12:23:11 +00:00
end
end
=begin
2015-08-28 00:53:14 +00:00
send via account
channel = Channel.where(area: 'Email::Account').first
channel.deliver(mail_params, notification)
=end
def deliver(mail_params, notification = false)
adapter = options[:adapter]
adapter_options = options
if options[:outbound] && options[:outbound][:adapter]
2015-08-28 00:53:14 +00:00
adapter = options[:outbound][:adapter]
adapter_options = options[:outbound][:options]
end
2015-08-28 01:08:55 +00:00
result = nil
2015-08-28 00:53:14 +00:00
begin
# we need to require each channel backend individually otherwise we get a
# 'warning: toplevel constant Twitter referenced by Channel::Driver::Twitter' error e.g.
# so we have to convert the channel name to the filename via Rails String.underscore
# http://stem.ps/rails/2015/01/25/ruby-gotcha-toplevel-constant-referenced-by.html
require "channel/driver/#{adapter.to_filename}"
driver_class = Object.const_get("Channel::Driver::#{adapter.to_classname}")
driver_instance = driver_class.new
2015-08-28 01:08:55 +00:00
result = driver_instance.send(adapter_options, mail_params, notification)
2015-08-28 00:53:14 +00:00
self.status_out = 'ok'
self.last_log_out = ''
save
rescue => e
error = "Can't use Channel::Driver::#{adapter.to_classname}: #{e.inspect}"
logger.error error
logger.error e.backtrace
self.status_out = 'error'
self.last_log_out = error
save
raise error
2015-08-28 00:53:14 +00:00
end
2015-08-28 01:08:55 +00:00
result
2015-08-28 00:53:14 +00:00
end
private
def email_address_check
# reset non existing channel_ids
EmailAddress.channel_cleanup
end
end