]> git.openstreetmap.org Git - rails.git/blob - app/abilities/ability.rb
643465c5423126d5dfa03f96154637cb93de3107
[rails.git] / app / abilities / ability.rb
1 # frozen_string_literal: true
2
3 class Ability
4   include CanCan::Ability
5
6   def initialize(user)
7     can [:relation, :relation_history, :way, :way_history, :node, :node_history,
8          :changeset, :query], :browse
9     can [:show], OldNode
10     can [:show], OldWay
11     can [:show, :new], Note
12     can :search, :direction
13     can [:index, :permalink, :edit, :help, :fixthemap, :offline, :export, :about, :communities, :preview, :copyright, :key, :id], :site
14     can [:finish, :embed], :export
15     can [:search, :search_latlon, :search_osm_nominatim, :search_osm_nominatim_reverse], :geocoder
16     can [:token, :request_token, :access_token, :test_request], :oauth
17
18     if Settings.status != "database_offline"
19       can [:index, :feed], Changeset
20       can :index, ChangesetComment
21       can [:confirm, :confirm_resend, :confirm_email], :confirmation
22       can [:index, :rss, :show, :comments], DiaryEntry
23       can [:index], Note
24       can [:new, :create, :edit, :update], :password
25       can [:index, :show], Redaction
26       can [:new, :create, :destroy], :session
27       can [:index, :show, :data, :georss, :picture, :icon], Trace
28       can [:terms, :new, :create, :save, :suspended, :show, :auth_success, :auth_failure], User
29       can [:index, :show, :blocks_on, :blocks_by], UserBlock
30     end
31
32     if user&.active?
33       can :welcome, :site
34       can [:revoke, :authorize], :oauth
35       can [:show], :deletion
36
37       if Settings.status != "database_offline"
38         can [:index, :new, :create, :show, :edit, :update, :destroy], ClientApplication
39         can [:index, :new, :create, :show, :edit, :update, :destroy], :oauth2_application
40         can [:index, :destroy], :oauth2_authorized_application
41         can [:new, :show, :create, :destroy], :oauth2_authorization
42         can [:edit, :update, :destroy], :account
43         can [:show], :dashboard
44         can [:new, :create, :edit, :update, :comment, :subscribe, :unsubscribe], DiaryEntry
45         can [:make_friend, :remove_friend], Friendship
46         can [:new, :create, :reply, :show, :inbox, :outbox, :muted, :mark, :unmute, :destroy], Message
47         can [:close, :reopen], Note
48         can [:show, :edit, :update], :preference
49         can [:edit, :update], :profile
50         can [:new, :create], Report
51         can [:mine, :new, :create, :edit, :update, :destroy], Trace
52         can [:account, :go_public], User
53         can [:index, :create, :destroy], UserMute
54
55         if user.moderator?
56           can [:hide, :unhide, :hidecomment, :unhidecomment], DiaryEntry
57           can [:index, :show, :resolve, :ignore, :reopen], Issue
58           can :create, IssueComment
59           can [:new, :create, :edit, :update, :destroy], Redaction
60           can [:new, :edit, :create, :update, :revoke, :revoke_all], UserBlock
61         end
62
63         if user.administrator?
64           can [:hide, :unhide, :hidecomment, :unhidecomment], DiaryEntry
65           can [:index, :show, :resolve, :ignore, :reopen], Issue
66           can :create, IssueComment
67           can [:set_status, :destroy, :index], User
68           can [:grant, :revoke], UserRole
69         end
70       end
71     end
72
73     # Define abilities for the passed in user here. For example:
74     #
75     #   user ||= User.new # guest user (not logged in)
76     #   if user.admin?
77     #     can :manage, :all
78     #   else
79     #     can :read, :all
80     #   end
81     #
82     # The first argument to `can` is the action you are giving the user
83     # permission to do.
84     # If you pass :manage it will apply to every action. Other common actions
85     # here are :read, :create, :update and :destroy.
86     #
87     # The second argument is the resource the user can perform the action on.
88     # If you pass :all it will apply to every resource. Otherwise pass a Ruby
89     # class of the resource.
90     #
91     # The third argument is an optional hash of conditions to further filter the
92     # objects.
93     # For example, here the user can only update published articles.
94     #
95     #   can :update, Article, :published => true
96     #
97     # See the wiki for details:
98     # https://github.com/CanCanCommunity/cancancan/wiki/Defining-Abilities
99   end
100 end