0b65526b85
* Added POC for mail inbox reply email * created mailbox and migratuion for the same * cleaned up sidekiq queues and added the queues for action mailbox and active storage * created conversation mailbox and functionlaity to create a message on the conversation when it's replied * Added UUID to conversation to be used in email replies * added migration to add uuid for conversation * changed parsing and resource fetching to reflect matching uuid and loading conversation alone * cleaned up conversation mailbox.rb * Added content type & attribute for message * Added the new reply email to outgoing emails * Added migration to accounts for adding domain and settings * Modified seeds to reflect this changes * Added the flag based column on account for boolean settings * Added the new reply to email in outgoing conversation emails based on conditions * Added dynamic email routing in application mailbox * Added dynamic email routing in application mailbox * Added a catch all deafult empty mailbox * Added annotation for account * Added the complete email details & attachments to the message * Added the complete email details to the message in content_attributes, like subject, to, cc, bcc etc * Modified the mail extractor to give a serilaized version of email * Handled storing attachments of email on the message * Added incoming email settings, env variables * [#138] Added documentation regarding different email settings and variables * Fixed the mail attachments blob issue (#138) * Decoided attachments were strings and had to construct blobs out fo them to work with active storage * Fixed the content encoding issue with mail body * Fixed issue with Proc used in apllication mailbox routing * Fixed couple of typos and silly mistakes * Set appropriate from email for conversation reply mails (#138) * From email was taken from a env variable, changed it to take from account settings if enabled * Set the reply to email correctly based on conversation UUID * Added commented config ind development.rb for mailbox ingress * Added account settings for domain and support email (#138) * Added the new attributes in accounts controller params whitelisting, api responses * Added options for the the new fields in account settings * Fixed typos in email continuity docs and warnings * Added specs for conversation reply mailer changes (#138) * Added specs for * conversation reply mailer * Accounts controller * Account and Conversation models * Added tests for email presenter (#138) * Specs for inbound email routing and mailboxes (#138)
195 lines
5.4 KiB
Ruby
195 lines
5.4 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: conversations
|
|
#
|
|
# id :integer not null, primary key
|
|
# additional_attributes :jsonb
|
|
# agent_last_seen_at :datetime
|
|
# locked :boolean default(FALSE)
|
|
# status :integer default("open"), not null
|
|
# user_last_seen_at :datetime
|
|
# uuid :uuid not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :integer not null
|
|
# assignee_id :integer
|
|
# contact_id :bigint
|
|
# contact_inbox_id :bigint
|
|
# display_id :integer not null
|
|
# inbox_id :integer not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_conversations_on_account_id (account_id)
|
|
# index_conversations_on_account_id_and_display_id (account_id,display_id) UNIQUE
|
|
# index_conversations_on_contact_inbox_id (contact_inbox_id)
|
|
#
|
|
# Foreign Keys
|
|
#
|
|
# fk_rails_... (contact_inbox_id => contact_inboxes.id)
|
|
#
|
|
|
|
class Conversation < ApplicationRecord
|
|
include Events::Types
|
|
|
|
validates :account_id, presence: true
|
|
validates :inbox_id, presence: true
|
|
|
|
enum status: { open: 0, resolved: 1, bot: 2 }
|
|
|
|
scope :latest, -> { order(updated_at: :desc) }
|
|
scope :unassigned, -> { where(assignee_id: nil) }
|
|
scope :assigned_to, ->(agent) { where(assignee_id: agent.id) }
|
|
|
|
belongs_to :account
|
|
belongs_to :inbox
|
|
belongs_to :assignee, class_name: 'User', optional: true
|
|
belongs_to :contact
|
|
belongs_to :contact_inbox
|
|
|
|
has_many :messages, dependent: :destroy, autosave: true
|
|
|
|
before_create :set_display_id, unless: :display_id?
|
|
|
|
before_create :set_bot_conversation
|
|
|
|
after_update :notify_status_change, :create_activity, :send_email_notification_to_assignee
|
|
|
|
after_create :notify_conversation_creation, :run_round_robin
|
|
|
|
acts_as_taggable_on :labels
|
|
|
|
def update_assignee(agent = nil)
|
|
update!(assignee: agent)
|
|
end
|
|
|
|
def update_labels(labels = nil)
|
|
update!(label_list: labels)
|
|
end
|
|
|
|
def toggle_status
|
|
# FIXME: implement state machine with aasm
|
|
self.status = open? ? :resolved : :open
|
|
self.status = :open if bot?
|
|
save
|
|
end
|
|
|
|
def lock!
|
|
update!(locked: true)
|
|
end
|
|
|
|
def unlock!
|
|
update!(locked: false)
|
|
end
|
|
|
|
def unread_messages
|
|
messages.unread_since(agent_last_seen_at)
|
|
end
|
|
|
|
def unread_incoming_messages
|
|
messages.incoming.unread_since(agent_last_seen_at)
|
|
end
|
|
|
|
def push_event_data
|
|
Conversations::EventDataPresenter.new(self).push_data
|
|
end
|
|
|
|
def lock_event_data
|
|
Conversations::EventDataPresenter.new(self).lock_data
|
|
end
|
|
|
|
def webhook_data
|
|
{
|
|
display_id: display_id,
|
|
additional_attributes: additional_attributes
|
|
}
|
|
end
|
|
|
|
private
|
|
|
|
def set_bot_conversation
|
|
self.status = :bot if inbox.agent_bot_inbox&.active?
|
|
end
|
|
|
|
def notify_conversation_creation
|
|
dispatcher_dispatch(CONVERSATION_CREATED)
|
|
end
|
|
|
|
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
|
|
|
|
def send_email_notification_to_assignee
|
|
return unless notifiable_assignee_change?
|
|
return if assignee.notification_settings.find_by(account_id: account_id).not_conversation_assignment?
|
|
return if bot?
|
|
|
|
AgentNotifications::ConversationNotificationsMailer.conversation_assigned(self, assignee).deliver_later
|
|
end
|
|
|
|
def self_assign?(assignee_id)
|
|
assignee_id.present? && Current.user&.id == assignee_id
|
|
end
|
|
|
|
def set_display_id
|
|
self.display_id = loop do
|
|
next_display_id = account.conversations.maximum('display_id').to_i + 1
|
|
break next_display_id unless account.conversations.exists?(display_id: next_display_id)
|
|
end
|
|
end
|
|
|
|
def create_activity
|
|
return unless Current.user
|
|
|
|
user_name = Current.user&.name
|
|
|
|
create_status_change_message(user_name) if saved_change_to_status?
|
|
create_assignee_change(user_name) if saved_change_to_assignee_id?
|
|
end
|
|
|
|
def activity_message_params(content)
|
|
{ account_id: account_id, inbox_id: inbox_id, message_type: :activity, content: content }
|
|
end
|
|
|
|
def notify_status_change
|
|
{
|
|
CONVERSATION_OPENED => -> { saved_change_to_status? && open? },
|
|
CONVERSATION_RESOLVED => -> { saved_change_to_status? && resolved? },
|
|
CONVERSATION_READ => -> { saved_change_to_user_last_seen_at? },
|
|
CONVERSATION_LOCK_TOGGLE => -> { saved_change_to_locked? },
|
|
ASSIGNEE_CHANGED => -> { saved_change_to_assignee_id? }
|
|
}.each do |event, condition|
|
|
condition.call && dispatcher_dispatch(event)
|
|
end
|
|
end
|
|
|
|
def dispatcher_dispatch(event_name)
|
|
Rails.configuration.dispatcher.dispatch(event_name, Time.zone.now, conversation: self)
|
|
end
|
|
|
|
def run_round_robin
|
|
return unless inbox.enable_auto_assignment
|
|
return if assignee
|
|
return if bot?
|
|
|
|
inbox.next_available_agent.then { |new_assignee| update_assignee(new_assignee) }
|
|
end
|
|
|
|
def create_status_change_message(user_name)
|
|
content = I18n.t("conversations.activity.status.#{status}", user_name: user_name)
|
|
|
|
messages.create(activity_message_params(content))
|
|
end
|
|
|
|
def create_assignee_change(user_name)
|
|
params = { assignee_name: assignee&.name, user_name: user_name }.compact
|
|
key = assignee_id ? 'assigned' : 'removed'
|
|
content = I18n.t("conversations.activity.assignee.#{key}", params)
|
|
|
|
messages.create(activity_message_params(content))
|
|
end
|
|
end
|