mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
58 lines
1.5 KiB
Ruby
58 lines
1.5 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Api
|
||
|
module V1
|
||
|
class ProtocolsController < BaseController
|
||
|
before_action :load_team
|
||
|
before_action :load_project
|
||
|
before_action :load_experiment
|
||
|
before_action :load_task
|
||
|
before_action :load_protocol, only: :show
|
||
|
|
||
|
def index
|
||
|
protocols = @my_module.protocols
|
||
|
.page(params.dig(:page, :number))
|
||
|
.per(params.dig(:page, :size))
|
||
|
|
||
|
render jsonapi: protocols,
|
||
|
each_serializer: ProtocolSerializer
|
||
|
end
|
||
|
|
||
|
def show
|
||
|
render jsonapi: @protocol, serializer: ProtocolSerializer
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def load_team
|
||
|
@team = Team.find(params.require(:team_id))
|
||
|
render jsonapi: {}, status: :forbidden unless can_read_team?(@team)
|
||
|
end
|
||
|
|
||
|
def load_project
|
||
|
@project = @team.projects.find(params.require(:project_id))
|
||
|
render jsonapi: {}, status: :forbidden unless can_read_project?(
|
||
|
@project
|
||
|
)
|
||
|
end
|
||
|
|
||
|
def load_experiment
|
||
|
@experiment = @project.experiments.find(params.require(:experiment_id))
|
||
|
render jsonapi: {}, status: :forbidden unless can_read_experiment?(
|
||
|
@experiment
|
||
|
)
|
||
|
end
|
||
|
|
||
|
def load_task
|
||
|
@my_module = @experiment.my_modules.find(params.require(:task_id))
|
||
|
end
|
||
|
|
||
|
def load_protocol
|
||
|
@protocol = @my_module.protocols.find(
|
||
|
params.require(:id)
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|