Created
March 25, 2013 22:30
-
-
Save homelinen/5241436 to your computer and use it in GitHub Desktop.
Wattball permissions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Ability | |
include CanCan::Ability | |
def initialize(user) | |
alias_action :read, :create, :edit, :to => :modify | |
alias_action :read, :edit, :destroy, :to => :self_maintain | |
user ||= User.new | |
if user.team | |
can :self_maintain, Team, :user => user | |
elsif user.staff | |
can :create, Team | |
can :create, User | |
can :panel, :admin | |
elsif user.wattball_player | |
can :self_maintain, WattballPlayer | |
elsif user.hurdle_player | |
can :self_maintain, HurdlePlayer | |
elsif user.official | |
# Official can only edit scores they manage | |
can :manage, Score, :wattball_match => { :event => { :official => user.official } } | |
can :create, Score | |
can :panel, :official | |
can :update, HurdleTime | |
# Can only edit events they own or are nil | |
can :update, WattballMatch do |match| | |
match.event.official.nil? or match.event.official == user.official | |
end | |
can :update, HurdleMatch do |match| | |
match.event.official.nil? or match.event.official == user.official | |
end | |
end | |
# All users have these rights | |
if user | |
can :create, Ticket | |
can :edit, user | |
end | |
# Everyone can read everything | |
can :read, :all | |
can :results, Team | |
cannot :index, WattballPlayer unless user.privileged? | |
cannot :manage, Ticket if !user.registered? | |
# Some read overrides | |
cannot :read, Staff unless user.admin? | |
cannot :read, User, :admin => true unless user.admin? | |
can :create, User | |
can :create, WattballPlayer | |
can :manage, :all if user.admin? | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment