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
|
|
|
|
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
|
2014-06-08 22:01:20 +00:00
|
|
|
sender = Ticket::Article::Sender.lookup( :id => record.sender_id )
|
2012-12-24 13:55:43 +00:00
|
|
|
return 1 if sender == nil
|
|
|
|
return 1 if sender['name'] == 'Customer'
|
|
|
|
|
|
|
|
# only apply on tweets
|
2014-06-08 22:01:20 +00:00
|
|
|
type = Ticket::Article::Type.lookup( :id => record.type_id )
|
2012-12-24 13:55:43 +00:00
|
|
|
return if type['name'] != 'twitter direct-message' && type['name'] != 'twitter status'
|
|
|
|
|
2014-12-01 10:24:07 +00:00
|
|
|
a = Channel::TWITTER2.new
|
2012-12-24 13:55:43 +00:00
|
|
|
message = a.send(
|
|
|
|
{
|
|
|
|
:type => type['name'],
|
|
|
|
:to => record.to,
|
|
|
|
:body => record.body,
|
|
|
|
:in_reply_to => record.in_reply_to
|
|
|
|
},
|
2013-06-12 15:59:58 +00:00
|
|
|
# Rails.application.config.channel_twitter
|
2012-12-24 13:55:43 +00:00
|
|
|
)
|
|
|
|
record.message_id = message.id
|
|
|
|
record.save
|
|
|
|
end
|
2013-06-12 15:59:58 +00:00
|
|
|
end
|