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