mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
116 lines
3.9 KiB
Ruby
116 lines
3.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class StorageLocationRepositoryRowsController < ApplicationController
|
|
before_action :load_storage_location_repository_row, only: %i(update destroy move)
|
|
before_action :load_storage_location
|
|
before_action :load_repository_row, only: %i(create update destroy move)
|
|
before_action :check_read_permissions, except: %i(create actions_toolbar)
|
|
before_action :check_manage_permissions, only: %i(create update destroy)
|
|
|
|
def index
|
|
storage_location_repository_row = Lists::StorageLocationRepositoryRowsService.new(
|
|
current_team, params
|
|
).call
|
|
render json: storage_location_repository_row,
|
|
each_serializer: Lists::StorageLocationRepositoryRowSerializer,
|
|
meta: (pagination_dict(storage_location_repository_row) unless @storage_location.with_grid?)
|
|
end
|
|
|
|
def update
|
|
@storage_location_repository_row.update(storage_location_repository_row_params)
|
|
|
|
if @storage_location_repository_row.save
|
|
render json: @storage_location_repository_row,
|
|
serializer: Lists::StorageLocationRepositoryRowSerializer
|
|
else
|
|
render json: @storage_location_repository_row.errors, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def create
|
|
@storage_location_repository_row = StorageLocationRepositoryRow.new(
|
|
repository_row: @repository_row,
|
|
storage_location: @storage_location,
|
|
metadata: storage_location_repository_row_params[:metadata] || {},
|
|
created_by: current_user
|
|
)
|
|
|
|
if @storage_location_repository_row.save
|
|
render json: @storage_location_repository_row,
|
|
serializer: Lists::StorageLocationRepositoryRowSerializer
|
|
else
|
|
render json: @storage_location_repository_row.errors, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def move
|
|
ActiveRecord::Base.transaction do
|
|
@storage_location_repository_row.discard
|
|
@storage_location_repository_row = StorageLocationRepositoryRow.create!(
|
|
repository_row: @repository_row,
|
|
storage_location: @storage_location,
|
|
metadata: storage_location_repository_row_params[:metadata] || {},
|
|
created_by: current_user
|
|
)
|
|
|
|
render json: @storage_location_repository_row,
|
|
serializer: Lists::StorageLocationRepositoryRowSerializer
|
|
rescue ActiveRecord::RecordInvalid => e
|
|
render json: { errors: e.record.errors.full_messages }, status: :unprocessable_entity
|
|
raise ActiveRecord::Rollback
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
if @storage_location_repository_row.discard
|
|
render json: {}
|
|
else
|
|
render json: { errors: @storage_location_repository_row.errors.full_messages }, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def actions_toolbar
|
|
render json: {
|
|
actions: Toolbars::StorageLocationRepositoryRowsService.new(
|
|
current_user,
|
|
items_ids: JSON.parse(params[:items]).map { |i| i['id'] }
|
|
).actions
|
|
}
|
|
end
|
|
|
|
private
|
|
|
|
def load_storage_location_repository_row
|
|
@storage_location_repository_row = StorageLocationRepositoryRow.find(
|
|
storage_location_repository_row_params[:id]
|
|
)
|
|
render_404 unless @storage_location_repository_row
|
|
end
|
|
|
|
def load_storage_location
|
|
@storage_location = StorageLocation.where(team: current_team).find(
|
|
storage_location_repository_row_params[:storage_location_id]
|
|
)
|
|
render_404 unless @storage_location
|
|
end
|
|
|
|
def load_repository_row
|
|
@repository_row = RepositoryRow.find(storage_location_repository_row_params[:repository_row_id])
|
|
render_404 unless @repository_row
|
|
end
|
|
|
|
def storage_location_repository_row_params
|
|
params.permit(:id, :storage_location_id, :repository_row_id,
|
|
metadata: { position: [] })
|
|
end
|
|
|
|
def check_read_permissions
|
|
render_403 unless can_read_storage_location_containers?(current_team)
|
|
end
|
|
|
|
def check_manage_permissions
|
|
unless can_manage_storage_location_containers?(current_team) && can_read_repository?(@repository_row.repository)
|
|
render_403
|
|
end
|
|
end
|
|
end
|