Sha256: d69c5a65232e19b198850fdcd812371bba8f70be020920155d8589d4aaf1bb8d

Contents?: true

Size: 1.62 KB

Versions: 6

Compression:

Stored size: 1.62 KB

Contents

module EnjuLibrary
  class Ability
    include CanCan::Ability
  
    def initialize(user, ip_address = nil)
      case user.try(:role).try(:name)
      when 'Administrator'
        can [:read, :create, :update], Bookstore
        can [:delete, :destroy], Bookstore do |bookstore|
          bookstore.items.empty?
        end
        can [:read, :create, :update], Library
        can [:delete, :destroy], Library do |library|
          library.shelves.empty? and !library.web?
        end
        can [:read, :create, :update], Shelf
        can [:delete, :destroy], Shelf do |shelf|
          shelf.items.empty? and !shelf.web_shelf?
        end
        can :manage, [
          Accept,
          BudgetType,
          SearchEngine,
          Subscribe,
          Subscription
        ]
        can :update, [
          LibraryGroup,
          RequestStatusType,
          RequestType
        ] if LibraryGroup.site_config.network_access_allowed?(ip_address, :network_type => :admin)
        can :read, [
          LibraryGroup,
          RequestStatusType,
          RequestType
        ]
      when 'Librarian'
        can :manage, [
          Accept,
          Subscribe,
          Subscription
        ]
        can :read, [
          Bookstore,
          BudgetType,
          Library,
          LibraryGroup,
          RequestStatusType,
          RequestType,
          SearchEngine,
          Shelf
        ]
      when 'User'
        can :read, [
          Library,
          LibraryGroup,
          Shelf
        ]
      else
        can :read, [
          Library,
          LibraryGroup,
          Shelf
        ]
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
enju_library-0.1.0.pre36 app/models/enju_library/ability.rb
enju_library-0.1.0.pre35 app/models/enju_library/ability.rb
enju_library-0.1.0.pre34 app/models/enju_library/ability.rb
enju_library-0.1.0.pre33 app/models/enju_library/ability.rb
enju_library-0.1.0.pre32 app/models/enju_library/ability.rb
enju_library-0.1.0.pre31 app/models/enju_library/ability.rb