2020-06-07 08:28:05 +00:00
|
|
|
class Api::V1::Accounts::InboxMembersController < Api::V1::Accounts::BaseController
|
2021-09-14 06:25:02 +00:00
|
|
|
before_action :fetch_inbox
|
2021-12-21 17:18:01 +00:00
|
|
|
before_action :current_agents_ids, only: [:create, :update]
|
2020-01-09 07:36:40 +00:00
|
|
|
|
|
|
|
def create
|
2021-06-11 06:14:31 +00:00
|
|
|
authorize @inbox, :create?
|
2021-09-14 06:25:02 +00:00
|
|
|
ActiveRecord::Base.transaction do
|
2021-12-21 17:18:01 +00:00
|
|
|
agents_to_be_added_ids.map { |user_id| @inbox.add_member(user_id) }
|
2021-06-11 06:14:31 +00:00
|
|
|
end
|
2021-09-14 06:25:02 +00:00
|
|
|
fetch_updated_agents
|
2020-01-09 07:36:40 +00:00
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
def show
|
2021-06-11 06:14:31 +00:00
|
|
|
authorize @inbox, :show?
|
2021-09-14 06:25:02 +00:00
|
|
|
fetch_updated_agents
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
authorize @inbox, :update?
|
|
|
|
update_agents_list
|
|
|
|
fetch_updated_agents
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
authorize @inbox, :destroy?
|
|
|
|
ActiveRecord::Base.transaction do
|
|
|
|
params[:user_ids].map { |user_id| @inbox.remove_member(user_id) }
|
|
|
|
end
|
|
|
|
head :ok
|
2020-01-09 07:36:40 +00:00
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
private
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2021-09-14 06:25:02 +00:00
|
|
|
def fetch_updated_agents
|
|
|
|
@agents = Current.account.users.where(id: @inbox.members.select(:user_id))
|
|
|
|
end
|
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
def update_agents_list
|
|
|
|
# get all the user_ids which the inbox currently has as members.
|
|
|
|
# get the list of user_ids from params
|
|
|
|
# the missing ones are the agents which are to be deleted from the inbox
|
|
|
|
# the new ones are the agents which are to be added to the inbox
|
2021-02-09 13:51:31 +00:00
|
|
|
ActiveRecord::Base.transaction do
|
|
|
|
agents_to_be_added_ids.each { |user_id| @inbox.add_member(user_id) }
|
|
|
|
agents_to_be_removed_ids.each { |user_id| @inbox.remove_member(user_id) }
|
|
|
|
end
|
2020-01-09 07:36:40 +00:00
|
|
|
end
|
2019-10-03 22:57:34 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
def agents_to_be_added_ids
|
|
|
|
params[:user_ids] - @current_agents_ids
|
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
def agents_to_be_removed_ids
|
|
|
|
@current_agents_ids - params[:user_ids]
|
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
def current_agents_ids
|
|
|
|
@current_agents_ids = @inbox.members.pluck(:id)
|
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
def fetch_inbox
|
2020-06-07 08:28:05 +00:00
|
|
|
@inbox = Current.account.inboxes.find(params[:inbox_id])
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
end
|