2016-03-11 21:30:54 +08:00
|
|
|
class MappingPolicy < ApplicationPolicy
|
|
|
|
class Scope < Scope
|
|
|
|
def resolve
|
2016-07-26 08:14:23 +08:00
|
|
|
# TODO: base this on the map policy
|
2016-03-11 21:30:54 +08:00
|
|
|
# it would be nice if we could also base this on the mappable, but that
|
|
|
|
# gets really complicated. Devin thinks it's OK to SHOW a mapping for
|
|
|
|
# a private topic, since you can't see the private topic anyways
|
2016-07-26 08:14:23 +08:00
|
|
|
visible = %w(public commons)
|
2016-03-13 02:41:32 +11:00
|
|
|
permission = 'maps.permission IN (?)'
|
|
|
|
if user
|
2016-09-22 01:22:40 +08:00
|
|
|
scope.joins(:map).where(permission, visible).or(scope.joins(:map).where(user_id: user.id))
|
2016-03-13 02:41:32 +11:00
|
|
|
else
|
2016-09-22 01:22:40 +08:00
|
|
|
scope.joins(:map).where(permission, visible)
|
2016-07-26 08:14:23 +08:00
|
|
|
end
|
2016-03-11 21:30:54 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-22 01:22:40 +08:00
|
|
|
def index?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2016-03-11 21:30:54 +08:00
|
|
|
def show?
|
2016-07-02 16:32:02 +08:00
|
|
|
map_policy.show? && mappable_policy.try(:show?)
|
2016-03-11 21:30:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def create?
|
2016-03-14 14:37:01 +08:00
|
|
|
record.map.present? && map_policy.update?
|
2016-03-11 21:30:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def update?
|
2016-03-14 11:09:27 +08:00
|
|
|
record.mappable_type == 'Topic' && map_policy.update?
|
2016-03-11 21:30:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy?
|
2016-03-14 11:09:27 +08:00
|
|
|
map_policy.update? || admin_override
|
|
|
|
end
|
|
|
|
|
|
|
|
# Helpers
|
|
|
|
|
|
|
|
def map_policy
|
|
|
|
@map_policy ||= Pundit.policy(user, record.map)
|
|
|
|
end
|
|
|
|
|
|
|
|
def mappable_policy
|
|
|
|
@mappable_policy ||= Pundit.policy(user, record.mappable)
|
2016-03-11 21:30:54 +08:00
|
|
|
end
|
|
|
|
end
|