1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/controllers/api/projects_controller.rb
2020-06-23 11:19:20 +02:00

89 lines
3.1 KiB
Ruby

# frozen_string_literal: true
# API Controller for resources of type Project
class API::ProjectsController < API::ApiController
before_action :authenticate_user!, except: %i[index show last_published search]
before_action :set_project, only: %i[update destroy]
respond_to :json
def index
@projects = policy_scope(Project).page(params[:page])
end
def last_published
@projects = Project.includes(:project_image).published.order('created_at desc').limit(5)
end
def show
@project = Project.friendly.find(params[:id])
end
def create
@project = Project.new(project_params.merge(author_statistic_profile_id: current_user.statistic_profile.id))
if @project.save
render :show, status: :created, location: @project
else
render json: @project.errors, status: :unprocessable_entity
end
end
def update
authorize @project
if @project.update(project_params)
render :show, status: :ok, location: @project
else
render json: @project.errors, status: :unprocessable_entity
end
end
def destroy
authorize @project
@project.destroy
head :no_content
end
def collaborator_valid
project_user = ProjectUser.find_by(valid_token: params[:valid_token])
if project_user
project_user.update(is_valid: true, valid_token: '')
redirect_to "/#!/projects/#{project_user.project.id}" and return
end
redirect_to root_url
end
def search
query_params = JSON.parse(params[:search])
records = Project.published_or_drafts(current_user&.statistic_profile&.id)
records = Project.user_projects(current_user&.statistic_profile&.id) if query_params['from'] == 'mine'
records = Project.collaborations(current_user&.id) if query_params['from'] == 'collaboration'
records = records.with_machine(query_params['machine_id']) if query_params['machine_id'].present?
records = records.with_component(query_params['component_id']) if query_params['component_id'].present?
records = records.with_theme(query_params['theme_id']) if query_params['theme_id'].present?
records = records.with_space(query_params['space_id']) if query_params['space_id'].present?
records = records.search(query_params['q']) if query_params['q'].present?
@total = records.count
@projects = records.includes(:users, :project_image).page(params[:page])
render :index
end
private
def set_project
@project = Project.find(params[:id])
end
def project_params
params.require(:project).permit(:name, :description, :tags, :machine_ids, :component_ids, :theme_ids, :licence_id, :licence_id, :state,
user_ids: [], machine_ids: [], component_ids: [], theme_ids: [],
project_image_attributes: [:attachment],
project_caos_attributes: %i[id attachment _destroy],
project_steps_attributes: [
:id, :description, :title, :_destroy, :step_nb,
project_step_images_attributes: %i[id attachment _destroy]
])
end
end