2019-11-30 13:39:55 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: conversations
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# additional_attributes :jsonb
|
|
|
|
# agent_last_seen_at :datetime
|
2021-09-23 15:29:10 +00:00
|
|
|
# assignee_last_seen_at :datetime
|
2020-09-10 13:49:15 +00:00
|
|
|
# contact_last_seen_at :datetime
|
2021-09-22 05:16:48 +00:00
|
|
|
# custom_attributes :jsonb
|
2020-06-12 17:42:47 +00:00
|
|
|
# identifier :string
|
2021-01-06 06:06:45 +00:00
|
|
|
# last_activity_at :datetime not null
|
2021-07-23 09:54:07 +00:00
|
|
|
# snoozed_until :datetime
|
2019-11-30 13:39:55 +00:00
|
|
|
# status :integer default("open"), not null
|
2020-04-30 14:50:26 +00:00
|
|
|
# uuid :uuid not null
|
2021-01-06 06:06:45 +00:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2019-11-30 13:39:55 +00:00
|
|
|
# account_id :integer not null
|
|
|
|
# assignee_id :integer
|
2021-04-29 16:53:32 +00:00
|
|
|
# campaign_id :bigint
|
2019-11-30 13:39:55 +00:00
|
|
|
# contact_id :bigint
|
2020-01-09 07:36:40 +00:00
|
|
|
# contact_inbox_id :bigint
|
2019-11-30 13:39:55 +00:00
|
|
|
# display_id :integer not null
|
|
|
|
# inbox_id :integer not null
|
2021-01-17 18:26:56 +00:00
|
|
|
# team_id :bigint
|
2019-11-30 13:39:55 +00:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2021-07-23 13:09:24 +00:00
|
|
|
# index_conversations_on_account_id (account_id)
|
|
|
|
# index_conversations_on_account_id_and_display_id (account_id,display_id) UNIQUE
|
|
|
|
# index_conversations_on_assignee_id_and_account_id (assignee_id,account_id)
|
|
|
|
# index_conversations_on_campaign_id (campaign_id)
|
|
|
|
# index_conversations_on_contact_inbox_id (contact_inbox_id)
|
|
|
|
# index_conversations_on_status_and_account_id (status,account_id)
|
|
|
|
# index_conversations_on_team_id (team_id)
|
2020-01-09 07:36:40 +00:00
|
|
|
#
|
|
|
|
# Foreign Keys
|
|
|
|
#
|
2021-04-29 16:53:32 +00:00
|
|
|
# fk_rails_... (campaign_id => campaigns.id)
|
2020-01-09 07:36:40 +00:00
|
|
|
# fk_rails_... (contact_inbox_id => contact_inboxes.id)
|
2021-01-17 18:26:56 +00:00
|
|
|
# fk_rails_... (team_id => teams.id)
|
2019-11-30 13:39:55 +00:00
|
|
|
#
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
class Conversation < ApplicationRecord
|
2021-01-03 14:37:57 +00:00
|
|
|
include Labelable
|
2021-03-12 09:43:58 +00:00
|
|
|
include AssignmentHandler
|
|
|
|
include RoundRobinHandler
|
2021-11-12 10:47:59 +00:00
|
|
|
include ActivityMessageHandler
|
2021-01-03 14:37:57 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
validates :account_id, presence: true
|
|
|
|
validates :inbox_id, presence: true
|
2021-01-07 08:17:38 +00:00
|
|
|
before_validation :validate_additional_attributes
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2021-07-23 09:54:07 +00:00
|
|
|
enum status: { open: 0, resolved: 1, pending: 2, snoozed: 3 }
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2020-10-05 17:22:43 +00:00
|
|
|
scope :latest, -> { order(last_activity_at: :desc) }
|
2019-08-14 09:48:44 +00:00
|
|
|
scope :unassigned, -> { where(assignee_id: nil) }
|
2021-07-19 13:40:58 +00:00
|
|
|
scope :assigned, -> { where.not(assignee_id: nil) }
|
2019-10-08 19:45:04 +00:00
|
|
|
scope :assigned_to, ->(agent) { where(assignee_id: agent.id) }
|
2019-08-14 09:48:44 +00:00
|
|
|
|
|
|
|
belongs_to :account
|
|
|
|
belongs_to :inbox
|
|
|
|
belongs_to :assignee, class_name: 'User', optional: true
|
2019-10-20 19:10:18 +00:00
|
|
|
belongs_to :contact
|
2020-01-09 07:36:40 +00:00
|
|
|
belongs_to :contact_inbox
|
2021-01-17 18:26:56 +00:00
|
|
|
belongs_to :team, optional: true
|
2021-04-29 16:53:32 +00:00
|
|
|
belongs_to :campaign, optional: true
|
2019-08-14 09:48:44 +00:00
|
|
|
|
|
|
|
has_many :messages, dependent: :destroy, autosave: true
|
2021-06-29 15:29:41 +00:00
|
|
|
has_one :csat_survey_response, dependent: :destroy
|
2021-07-12 06:58:16 +00:00
|
|
|
has_many :notifications, as: :primary_actor, dependent: :destroy
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2021-07-23 09:54:07 +00:00
|
|
|
before_save :ensure_snooze_until_reset
|
2021-07-21 16:32:43 +00:00
|
|
|
before_create :mark_conversation_pending_if_bot
|
2021-01-05 14:37:04 +00:00
|
|
|
|
2021-11-12 10:47:59 +00:00
|
|
|
after_update_commit :execute_after_update_commit_callbacks
|
2020-11-01 07:23:25 +00:00
|
|
|
after_create_commit :notify_conversation_creation, :queue_conversation_auto_resolution_job
|
2021-01-05 14:37:04 +00:00
|
|
|
after_commit :set_display_id, unless: :display_id?
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2020-11-01 07:23:25 +00:00
|
|
|
delegate :auto_resolve_duration, to: :account
|
|
|
|
|
2020-07-25 17:24:45 +00:00
|
|
|
def can_reply?
|
|
|
|
return true unless inbox&.channel&.has_24_hour_messaging_window?
|
|
|
|
|
|
|
|
last_incoming_message = messages.incoming.last
|
|
|
|
|
|
|
|
return false if last_incoming_message.nil?
|
|
|
|
|
|
|
|
Time.current < last_incoming_message.created_at + 24.hours
|
|
|
|
end
|
|
|
|
|
2019-10-08 19:45:04 +00:00
|
|
|
def update_assignee(agent = nil)
|
2019-10-12 18:08:41 +00:00
|
|
|
update!(assignee: agent)
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def toggle_status
|
2020-03-10 18:32:15 +00:00
|
|
|
# FIXME: implement state machine with aasm
|
2019-10-08 19:45:04 +00:00
|
|
|
self.status = open? ? :resolved : :open
|
2021-07-23 09:54:07 +00:00
|
|
|
self.status = :open if pending? || snoozed?
|
2019-10-12 18:08:41 +00:00
|
|
|
save
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
|
2020-05-26 12:13:59 +00:00
|
|
|
def mute!
|
|
|
|
resolved!
|
|
|
|
Redis::Alfred.setex(mute_key, 1, mute_period)
|
2020-10-30 16:57:25 +00:00
|
|
|
create_muted_message
|
2020-05-26 12:13:59 +00:00
|
|
|
end
|
|
|
|
|
2020-10-08 06:32:08 +00:00
|
|
|
def unmute!
|
|
|
|
Redis::Alfred.delete(mute_key)
|
2020-10-30 16:57:25 +00:00
|
|
|
create_unmuted_message
|
2020-10-08 06:32:08 +00:00
|
|
|
end
|
|
|
|
|
2020-05-26 12:13:59 +00:00
|
|
|
def muted?
|
2020-11-25 08:29:38 +00:00
|
|
|
Redis::Alfred.get(mute_key).present?
|
2020-05-26 12:13:59 +00:00
|
|
|
end
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
def unread_messages
|
2019-10-12 18:08:41 +00:00
|
|
|
messages.unread_since(agent_last_seen_at)
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def unread_incoming_messages
|
2019-10-12 18:08:41 +00:00
|
|
|
messages.incoming.unread_since(agent_last_seen_at)
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def push_event_data
|
2019-10-12 18:08:41 +00:00
|
|
|
Conversations::EventDataPresenter.new(self).push_data
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def lock_event_data
|
2019-10-12 18:08:41 +00:00
|
|
|
Conversations::EventDataPresenter.new(self).lock_data
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
|
2020-02-26 04:14:24 +00:00
|
|
|
def webhook_data
|
2020-06-12 18:49:43 +00:00
|
|
|
Conversations::EventDataPresenter.new(self).push_data
|
2020-02-26 04:14:24 +00:00
|
|
|
end
|
|
|
|
|
2020-03-05 20:13:12 +00:00
|
|
|
def notifiable_assignee_change?
|
|
|
|
return false if self_assign?(assignee_id)
|
|
|
|
return false unless saved_change_to_assignee_id?
|
|
|
|
return false if assignee_id.blank?
|
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2021-08-23 16:30:47 +00:00
|
|
|
def tweet?
|
|
|
|
inbox.inbox_type == 'Twitter' && additional_attributes['type'] == 'tweet'
|
|
|
|
end
|
|
|
|
|
2020-05-01 09:23:43 +00:00
|
|
|
private
|
|
|
|
|
2021-11-12 10:47:59 +00:00
|
|
|
def execute_after_update_commit_callbacks
|
|
|
|
notify_status_change
|
|
|
|
create_activity
|
|
|
|
end
|
|
|
|
|
2021-07-23 09:54:07 +00:00
|
|
|
def ensure_snooze_until_reset
|
|
|
|
self.snoozed_until = nil unless snoozed?
|
|
|
|
end
|
|
|
|
|
2021-01-07 08:17:38 +00:00
|
|
|
def validate_additional_attributes
|
|
|
|
self.additional_attributes = {} unless additional_attributes.is_a?(Hash)
|
|
|
|
end
|
|
|
|
|
2021-07-21 16:32:43 +00:00
|
|
|
def mark_conversation_pending_if_bot
|
|
|
|
# TODO: make this an inbox config instead of assuming bot conversations should start as pending
|
|
|
|
self.status = :pending if inbox.agent_bot_inbox&.active? || inbox.hooks.pluck(:app_id).include?('dialogflow')
|
2020-05-01 09:23:43 +00:00
|
|
|
end
|
2019-10-12 18:08:41 +00:00
|
|
|
|
2020-05-01 09:23:43 +00:00
|
|
|
def notify_conversation_creation
|
|
|
|
dispatcher_dispatch(CONVERSATION_CREATED)
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
|
2020-11-01 07:23:25 +00:00
|
|
|
def queue_conversation_auto_resolution_job
|
2021-11-12 10:47:59 +00:00
|
|
|
# FIXME: Move this to one cronjob that iterates over accounts and enqueue resolution jobs
|
|
|
|
# Similar to how we handle campaigns
|
2020-11-01 07:23:25 +00:00
|
|
|
return unless auto_resolve_duration
|
|
|
|
|
|
|
|
AutoResolveConversationsJob.set(wait_until: (last_activity_at || created_at) + auto_resolve_duration.days).perform_later(id)
|
|
|
|
end
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
def self_assign?(assignee_id)
|
2019-10-12 18:08:41 +00:00
|
|
|
assignee_id.present? && Current.user&.id == assignee_id
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_display_id
|
2021-01-05 14:37:04 +00:00
|
|
|
reload
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def notify_status_change
|
2019-10-12 18:08:41 +00:00
|
|
|
{
|
2020-04-18 14:55:58 +00:00
|
|
|
CONVERSATION_OPENED => -> { saved_change_to_status? && open? },
|
|
|
|
CONVERSATION_RESOLVED => -> { saved_change_to_status? && resolved? },
|
2021-04-28 15:23:23 +00:00
|
|
|
CONVERSATION_STATUS_CHANGED => -> { saved_change_to_status? },
|
2020-09-10 13:49:15 +00:00
|
|
|
CONVERSATION_READ => -> { saved_change_to_contact_last_seen_at? },
|
2020-06-02 17:29:02 +00:00
|
|
|
CONVERSATION_CONTACT_CHANGED => -> { saved_change_to_contact_id? }
|
2019-10-12 18:08:41 +00:00
|
|
|
}.each do |event, condition|
|
|
|
|
condition.call && dispatcher_dispatch(event)
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-05 09:12:50 +00:00
|
|
|
def dispatcher_dispatch(event_name)
|
2019-10-12 18:08:41 +00:00
|
|
|
Rails.configuration.dispatcher.dispatch(event_name, Time.zone.now, conversation: self)
|
2019-10-05 09:12:50 +00:00
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2020-06-02 18:20:39 +00:00
|
|
|
def conversation_status_changed_to_open?
|
|
|
|
return false unless open?
|
|
|
|
# saved_change_to_status? method only works in case of update
|
|
|
|
return true if previous_changes.key?(:id) || saved_change_to_status?
|
|
|
|
end
|
|
|
|
|
2020-10-02 11:03:59 +00:00
|
|
|
def create_label_change(user_name)
|
2020-11-01 07:23:25 +00:00
|
|
|
return unless user_name
|
|
|
|
|
2020-10-02 11:03:59 +00:00
|
|
|
previous_labels, current_labels = previous_changes[:label_list]
|
|
|
|
return unless (previous_labels.is_a? Array) && (current_labels.is_a? Array)
|
|
|
|
|
|
|
|
create_label_added(user_name, current_labels - previous_labels)
|
|
|
|
create_label_removed(user_name, previous_labels - current_labels)
|
|
|
|
end
|
|
|
|
|
2020-05-26 12:13:59 +00:00
|
|
|
def mute_key
|
2020-11-25 08:29:38 +00:00
|
|
|
format(Redis::RedisKeys::CONVERSATION_MUTE_KEY, id: id)
|
2020-05-26 12:13:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def mute_period
|
|
|
|
6.hours
|
|
|
|
end
|
2021-01-05 14:37:04 +00:00
|
|
|
|
|
|
|
# creating db triggers
|
|
|
|
trigger.before(:insert).for_each(:row) do
|
|
|
|
"NEW.display_id := nextval('conv_dpid_seq_' || NEW.account_id);"
|
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|