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

77 lines
2.4 KiB
Ruby
Raw Normal View History

2015-05-05 03:10:25 +02:00
class API::ProjectsController < API::ApiController
2016-03-23 18:39:41 +01:00
before_action :authenticate_user!, except: [:index, :show, :last_published, :search]
2015-05-05 03:10:25 +02:00
before_action :set_project, only: [:update, :destroy]
respond_to :json
def index
# DEPEND per(12) -> projects.coffee
@projects = policy_scope(Project).page(params[:page]).per(12)
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_id: current_user.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
2016-03-23 18:39:41 +01:00
authorize @project
2015-05-05 03:10:25 +02:00
@project.destroy
head :no_content
end
def collaborator_valid
2016-11-23 16:30:19 +01:00
project_user = ProjectUser.find_by(valid_token: params[:valid_token])
2015-05-05 03:10:25 +02:00
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
2016-03-23 18:39:41 +01:00
def search
query_params = JSON.parse(params[:search])
records = Project.search(query_params, current_user).page(params[:page]).records
@total = records.total
@projects = records.includes(:users, :project_image)
2016-03-23 18:39:41 +01:00
render :index
end
def allowed_extensions
render json: ENV['ALLOWED_EXTENSIONS'].split(' '), status: :ok
end
2015-05-05 03:10:25 +02:00
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, :author_id, :licence_id, :state,
user_ids: [], machine_ids: [], component_ids: [], theme_ids: [], project_image_attributes: [:attachment],
project_caos_attributes: [:id, :attachment, :_destroy],
project_steps_attributes: [:id, :description, :title, :_destroy, :step_nb,
:project_step_images_attributes => [:id, :attachment, :_destroy]])
2015-05-05 03:10:25 +02:00
end
end