Class: Ability

Inherits:
Object
  • Object
show all
Includes:
CanCan::Ability
Defined in:
app/models/ability.rb

Constant Summary collapse

@@if_published =
lambda { |o| o.published? }

Instance Method Summary collapse

Constructor Details

#initialize(user = nil) ⇒ Ability

Returns a new instance of Ability.



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'app/models/ability.rb', line 6

def initialize(user = nil)
  can :read, Iqvoc::Concept.root_class.instance
  can :read, [::Concept::Base, ::Collection::Base, ::Label::Base], &@@if_published
  can :read, ::Note::Base

  # static pages
  can :read, :help
  can :read, :version

  if user # Every logged in user ...
    can :use, :dashboard
    can :destroy, UserSession
    can :update, User, id: user.id # users can update their profile

    if user.owns_role?(:reader)
      can :read, [::Concept::Base, ::Collection::Base, ::Label::Base]
    end

    if user.owns_role?(:editor) || user.owns_role?(:publisher) || user.owns_role?(:administrator) # Editors and above ...
      can :read, [::Concept::Base, ::Collection::Base, ::Label::Base]
      can :create, [::Concept::Base, ::Collection::Base, ::Label::Base]
      can [:update, :destroy], [::Concept::Base, ::Collection::Base, ::Label::Base], published_at: nil
      can :check_consistency, [::Concept::Base, ::Collection::Base, ::Label::Base], published_at: nil
      can :send_to_review, [::Concept::Base, ::Collection::Base, ::Label::Base] do |object|
        !object.in_review?
      end
      can :branch, [::Concept::Base, ::Collection::Base, ::Label::Base], &@@if_published
    end

    if user.owns_role?(:match_editor)
      can :read, ::Concept::Base
      can :create, ::Concept::Base
      can :update, ::Concept::Base, published_at: nil
      can :lock, ::Concept::Base, published_at: nil
      can :branch, ::Concept::Base, &@@if_published
    end

    if user.owns_role?(:publisher) || user.owns_role?(:administrator) # Publishers and above ...
      can :merge, [::Concept::Base, ::Collection::Base, ::Label::Base] do |object|
        !object.published?
      end
    end

    if user.owns_role?(:administrator)
      can [:update, :destroy], [::Concept::Base, ::Label::Base], published_at: nil

      can :manage, User
      can :manage, Iqvoc.config

      can :full_export, ::Concept::Base
      can :import, ::Concept::Base
      can :export, ::Concept::Base

      can :update, Iqvoc::Concept.root_class.instance

      can :use, :administration

      can :reset, :thesaurus
      can :sync, :triplestore

      can :see, :exception
      can :profile, :system
    end
  else # no user
    can :create, UserSession
  end
end