2014-02-03 19:23:00 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2015-07-02 15:13:04 +00:00
|
|
|
# http://stem.ps/rails/2015/01/25/ruby-gotcha-toplevel-constant-referenced-by.html
|
|
|
|
require 'channel/twitter'
|
|
|
|
|
2012-12-24 13:55:43 +00:00
|
|
|
class Observer::Ticket::Article::CommunicateTwitter < ActiveRecord::Observer
|
|
|
|
observe 'ticket::_article'
|
|
|
|
|
|
|
|
def after_create(record)
|
|
|
|
|
|
|
|
# return if we run import mode
|
|
|
|
return if Setting.get('import_mode')
|
|
|
|
|
|
|
|
# if sender is customer, do not communication
|
2015-04-27 13:42:53 +00:00
|
|
|
sender = Ticket::Article::Sender.lookup( id: record.sender_id )
|
2015-07-02 15:13:04 +00:00
|
|
|
return if sender.nil?
|
|
|
|
return if sender['name'] == 'Customer'
|
2012-12-24 13:55:43 +00:00
|
|
|
|
|
|
|
# only apply on tweets
|
2015-04-27 13:42:53 +00:00
|
|
|
type = Ticket::Article::Type.lookup( id: record.type_id )
|
2015-07-02 15:13:04 +00:00
|
|
|
return if type['name'] !~ /\Atwitter/
|
2012-12-24 13:55:43 +00:00
|
|
|
|
2015-07-02 15:13:04 +00:00
|
|
|
twitter = Channel::Twitter.new
|
|
|
|
tweet = twitter.send({
|
2015-07-03 15:27:55 +00:00
|
|
|
type: type['name'],
|
2015-07-02 15:13:04 +00:00
|
|
|
to: record.to,
|
|
|
|
body: record.body,
|
|
|
|
in_reply_to: record.in_reply_to
|
2015-07-03 15:27:55 +00:00
|
|
|
})
|
2015-07-02 15:13:04 +00:00
|
|
|
record.message_id = tweet.id
|
2012-12-24 13:55:43 +00:00
|
|
|
record.save
|
|
|
|
end
|
2013-06-12 15:59:58 +00:00
|
|
|
end
|