Chatwoot/app/models/macro.rb

76 lines
2 KiB
Ruby
Raw Normal View History

2022-07-19 12:07:00 +00:00
# == Schema Information
#
# Table name: macros
#
# id :bigint not null, primary key
# actions :jsonb not null
# name :string not null
# visibility :integer default("personal")
2022-07-19 12:07:00 +00:00
# created_at :datetime not null
# updated_at :datetime not null
# account_id :bigint not null
# created_by_id :bigint
# updated_by_id :bigint
2022-07-19 12:07:00 +00:00
#
# Indexes
#
# index_macros_on_account_id (account_id)
2022-07-19 12:07:00 +00:00
#
class Macro < ApplicationRecord
include Rails.application.routes.url_helpers
2022-07-19 12:07:00 +00:00
belongs_to :account
belongs_to :created_by,
class_name: :User, optional: true
2022-07-19 12:07:00 +00:00
belongs_to :updated_by,
class_name: :User, optional: true
has_many_attached :files
2022-07-19 12:07:00 +00:00
enum visibility: { personal: 0, global: 1 }
validate :json_actions_format
ACTIONS_ATTRS = %w[send_message add_label assign_team assign_agent mute_conversation change_status remove_label remove_assigned_team
resolve_conversation snooze_conversation send_email_transcript send_attachment add_private_note].freeze
2022-07-19 12:07:00 +00:00
def set_visibility(user, params)
self.visibility = params[:visibility]
self.visibility = :personal if user.agent?
end
def self.with_visibility(user, params)
records = Current.account.macros.global
records = records.or(personal.where(created_by_id: user.id))
records.order(:id).page(current_page(params))
2022-07-19 12:07:00 +00:00
end
def self.current_page(params)
params[:page] || 1
end
def file_base_data
files.map do |file|
{
id: file.id,
macro_id: id,
file_type: file.content_type,
account_id: account_id,
file_url: url_for(file),
blob_id: file.blob_id,
filename: file.filename.to_s
}
end
end
private
def json_actions_format
return if actions.blank?
attributes = actions.map { |obj, _| obj['action_name'] }
actions = attributes - ACTIONS_ATTRS
errors.add(:actions, "Macro execution actions #{actions.join(',')} not supported.") if actions.any?
end
2022-07-19 12:07:00 +00:00
end