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