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