2024-12-17 00:46:01 +01:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AffinitiesController < ApplicationController
|
|
|
|
before_action :set_group
|
|
|
|
|
|
|
|
def index
|
2024-12-28 18:28:28 +01:00
|
|
|
overridden = @group.affinities.each_with_object({}) do |affinity, acc|
|
|
|
|
acc[affinity.another_group(@group).id] = affinity.discomfort
|
|
|
|
end
|
|
|
|
Group.where.not(id: @group.id)
|
|
|
|
.pluck(:id)
|
|
|
|
.index_with { |group_id| GroupAffinity::MAX_DISCOMFORT - (overridden[group_id] || GroupAffinity::NEUTRAL) }
|
|
|
|
.then { |affinities| render json: affinities }
|
2024-12-17 00:46:01 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def bulk_update
|
2024-12-28 18:28:28 +01:00
|
|
|
affinities = params.expect(affinities: [%i[group_id affinity]]).map(&:to_h).map do |affinity|
|
2024-12-17 00:46:01 +01:00
|
|
|
{
|
|
|
|
group_a_id: @group.id,
|
|
|
|
group_b_id: affinity[:group_id],
|
2024-12-28 14:18:59 +01:00
|
|
|
discomfort: GroupAffinity::MAX_DISCOMFORT - affinity[:affinity]
|
2024-12-17 00:46:01 +01:00
|
|
|
}
|
2024-12-28 18:28:28 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
GroupAffinity.upsert_all(affinities)
|
2024-12-17 00:46:01 +01:00
|
|
|
|
2024-12-28 18:28:28 +01:00
|
|
|
render json: {}, status: :ok
|
2024-12-17 00:46:01 +01:00
|
|
|
rescue ActiveRecord::InvalidForeignKey
|
|
|
|
render json: { error: 'At least one of the group IDs provided does not exist.' }, status: :bad_request
|
|
|
|
rescue ActiveRecord::StatementInvalid
|
2024-12-28 14:18:59 +01:00
|
|
|
render json: { error: 'Invalid group ID or discomfort provided.' }, status: :bad_request
|
2024-12-17 00:46:01 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_group
|
|
|
|
@group = Group.find(params[:group_id])
|
|
|
|
end
|
|
|
|
end
|