2020-06-25 18:05:16 +00:00
|
|
|
class Twitter::SendOnTwitterService < Base::SendOnChannelService
|
2020-02-02 19:09:00 +00:00
|
|
|
pattr_initialize [:message!]
|
|
|
|
|
2020-06-25 18:05:16 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
delegate :additional_attributes, to: :contact
|
2020-02-02 19:09:00 +00:00
|
|
|
|
2020-06-25 18:05:16 +00:00
|
|
|
def channel_class
|
|
|
|
Channel::TwitterProfile
|
2020-02-09 10:17:48 +00:00
|
|
|
end
|
|
|
|
|
2020-06-25 18:05:16 +00:00
|
|
|
def perform_reply
|
|
|
|
conversation_type == 'tweet' ? send_tweet_reply : send_direct_message
|
|
|
|
end
|
2020-02-09 10:17:48 +00:00
|
|
|
|
|
|
|
def twitter_client
|
|
|
|
Twitty::Facade.new do |config|
|
|
|
|
config.consumer_key = ENV.fetch('TWITTER_CONSUMER_KEY', nil)
|
|
|
|
config.consumer_secret = ENV.fetch('TWITTER_CONSUMER_SECRET', nil)
|
|
|
|
config.access_token = channel.twitter_access_token
|
|
|
|
config.access_token_secret = channel.twitter_access_token_secret
|
|
|
|
config.base_url = 'https://api.twitter.com'
|
|
|
|
config.environment = ENV.fetch('TWITTER_ENVIRONMENT', '')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def conversation_type
|
|
|
|
conversation.additional_attributes['type']
|
|
|
|
end
|
|
|
|
|
|
|
|
def screen_name
|
2021-08-02 10:37:30 +00:00
|
|
|
return "@#{reply_to_message.inbox.name}" if reply_to_message.outgoing?
|
|
|
|
|
2020-08-11 04:27:42 +00:00
|
|
|
"@#{reply_to_message.sender&.additional_attributes.try(:[], 'screen_name') || ''}"
|
2020-02-09 10:17:48 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def send_direct_message
|
|
|
|
twitter_client.send_direct_message(
|
2020-02-02 19:09:00 +00:00
|
|
|
recipient_id: contact_inbox.source_id,
|
|
|
|
message: message.content
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2020-08-11 04:27:42 +00:00
|
|
|
def reply_to_message
|
|
|
|
@reply_to_message ||= if message.in_reply_to
|
|
|
|
conversation.messages.find(message.in_reply_to)
|
|
|
|
else
|
|
|
|
conversation.messages.incoming.last
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-02-09 10:17:48 +00:00
|
|
|
def send_tweet_reply
|
2020-03-05 20:17:37 +00:00
|
|
|
response = twitter_client.send_tweet_reply(
|
2020-08-11 04:27:42 +00:00
|
|
|
reply_to_tweet_id: reply_to_message.source_id,
|
|
|
|
tweet: "#{screen_name} #{message.content}"
|
2020-02-09 10:17:48 +00:00
|
|
|
)
|
2020-03-05 20:17:37 +00:00
|
|
|
if response.status == '200'
|
|
|
|
tweet_data = response.body
|
|
|
|
message.update!(source_id: tweet_data['id_str'])
|
|
|
|
else
|
2022-03-28 12:44:30 +00:00
|
|
|
Rails.logger.error "TWITTER_TWEET_REPLY_ERROR #{response.body}"
|
2020-03-05 20:17:37 +00:00
|
|
|
end
|
2020-02-09 10:17:48 +00:00
|
|
|
end
|
2020-02-02 19:09:00 +00:00
|
|
|
end
|