1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-12 23:09:03 +01:00
fab-manager/app/controllers/api/spaces_controller.rb

72 lines
2.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
# API Controller for resources of type Space
2023-02-24 17:26:55 +01:00
class API::SpacesController < API::APIController
before_action :authenticate_user!, except: %i[index show]
before_action :set_space, only: %i[update destroy]
2017-02-13 16:10:12 +01:00
respond_to :json
def index
2023-07-28 16:16:44 +02:00
@spaces = Space.includes(:space_image, :machines).where(deleted_at: nil)
@spaces_indexed_with_parent = @spaces.index_with { |space| @spaces.find { |s| s.id == space.parent_id } }
@spaces_grouped_by_parent_id = @spaces.group_by(&:parent_id)
2017-02-13 16:10:12 +01:00
end
def show
@space = Space.includes(:space_files, :projects).friendly.find(params[:id])
2022-11-22 14:17:25 +01:00
head :not_found if @space.deleted_at
2017-02-13 16:10:12 +01:00
end
def create
authorize Space
@space = Space.new(space_params)
if @space.save
2023-07-28 16:16:44 +02:00
update_space_children(@space, params[:space][:child_ids])
2017-02-13 16:10:12 +01:00
render :show, status: :created, location: @space
else
render json: @space.errors, status: :unprocessable_entity
end
end
def update
authorize @space
2017-02-13 16:10:12 +01:00
if @space.update(space_params)
2023-07-28 16:16:44 +02:00
update_space_children(@space, params[:space][:child_ids])
2017-02-13 16:10:12 +01:00
render :show, status: :ok, location: @space
else
render json: @space.errors, status: :unprocessable_entity
end
end
def destroy
authorize @space
method = @space.destroyable? ? :destroy : :soft_destroy!
@space.send(method)
2017-02-13 16:10:12 +01:00
head :no_content
end
private
def set_space
@space = Space.friendly.find(params[:id])
end
def space_params
params.require(:space).permit(:name, :description, :characteristics, :default_places, :disabled,
2023-07-28 16:16:44 +02:00
machine_ids: [],
space_image_attributes: %i[id attachment],
space_files_attributes: %i[id attachment _destroy],
advanced_accounting_attributes: %i[code analytical_section])
end
2023-07-28 16:16:44 +02:00
def update_space_children(parent_space, child_ids)
Space.transaction do
parent_space.children.each { |child| child.update!(parent: nil) }
child_ids.to_a.select(&:present?).each do |child_id|
Space.find(child_id).update!(parent: parent_space)
end
end
end
2017-02-13 16:10:12 +01:00
end