1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/app/policies/project_policy.rb
2023-06-30 11:15:37 +02:00

30 lines
922 B
Ruby

class ProjectPolicy < ApplicationPolicy
class Scope < Scope
def resolve
if user
statistic_profile = StatisticProfile.find_by(user_id: user.id)
scope.includes(:project_image, :machines, :users)
.where("state = 'published' OR (state = 'draft' AND (author_statistic_profile_id = ? OR users.id = ?))", statistic_profile.id, user.id)
.references(:users)
.order(created_at: :desc)
else
scope.includes(:project_image, :machines, :users)
.where("state = 'published'")
.order(created_at: :desc)
end
end
end
def update?
user.admin? || record.author.user_id == user.id || record.users.include?(user)
end
def markdown?
user.admin? || user.manager? || record.author.user_id == user.id || record.users.include?(user)
end
def destroy?
user.admin? || record.author.user_id == user.id
end
end