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