]> git.openstreetmap.org Git - rails.git/blob - app/abilities/ability.rb
Mark non-action methods as protected
[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 [:index, :feed, :read, :download, :query], Changeset
10     can :index, ChangesetComment
11     can :search, :direction
12     can [:index, :permalink, :edit, :help, :fixthemap, :offline, :export, :about, :preview, :copyright, :key, :id], :site
13     can [:index, :rss, :show, :comments], DiaryEntry
14     can [:finish, :embed], :export
15     can [:search, :search_latlon, :search_ca_postcode, :search_osm_nominatim,
16          :search_geonames, :search_osm_nominatim_reverse, :search_geonames_reverse], :geocoder
17     can [:index, :create, :comment, :feed, :show, :search, :mine], Note
18     can [:index, :show], Redaction
19     can [:search_all, :search_nodes, :search_ways, :search_relations], :search
20     can [:trackpoints], :swf
21     can [:index, :show, :data, :georss, :picture, :icon], Trace
22     can [:terms, :api_users, :login, :logout, :new, :create, :save, :confirm, :confirm_resend, :confirm_email, :lost_password, :reset_password, :show, :api_read, :auth_success, :auth_failure], User
23     can [:index, :show, :blocks_on, :blocks_by], UserBlock
24
25     if user
26       can :welcome, :site
27       can [:index, :new, :create, :show, :edit, :update, :destroy], ClientApplication
28       can [:create, :edit, :comment, :subscribe, :unsubscribe], DiaryEntry
29       can [:new, :create, :reply, :show, :inbox, :outbox, :mark, :destroy], Message
30       can [:close, :reopen], Note
31       can [:new, :create], Report
32       can [:mine, :new, :create, :edit, :update, :delete, :api_create, :api_read, :api_update, :api_delete, :api_data], Trace
33       can [:account, :go_public, :make_friend, :remove_friend, :api_details, :api_gpx_files], User
34       can [:read, :read_one, :update, :update_one, :delete_one], UserPreference
35
36       if user.terms_agreed? || !REQUIRE_TERMS_AGREED
37         can [:create, :update, :upload, :close, :subscribe, :unsubscribe, :expand_bbox], Changeset
38         can :create, ChangesetComment
39       end
40
41       if user.moderator?
42         can [:destroy, :restore], ChangesetComment
43         can [:index, :show, :resolve, :ignore, :reopen], Issue
44         can :create, IssueComment
45         can :destroy, Note
46         can [:new, :create, :edit, :update, :destroy], Redaction
47         can [:new, :edit, :create, :update, :revoke], UserBlock
48       end
49
50       if user.administrator?
51         can [:hide, :hidecomment], [DiaryEntry, DiaryComment]
52         can [:index, :show, :resolve, :ignore, :reopen], Issue
53         can :create, IssueComment
54         can [:set_status, :delete, :index], User
55         can [:grant, :revoke], UserRole
56       end
57     end
58
59     # Define abilities for the passed in user here. For example:
60     #
61     #   user ||= User.new # guest user (not logged in)
62     #   if user.admin?
63     #     can :manage, :all
64     #   else
65     #     can :read, :all
66     #   end
67     #
68     # The first argument to `can` is the action you are giving the user
69     # permission to do.
70     # If you pass :manage it will apply to every action. Other common actions
71     # here are :read, :create, :update and :destroy.
72     #
73     # The second argument is the resource the user can perform the action on.
74     # If you pass :all it will apply to every resource. Otherwise pass a Ruby
75     # class of the resource.
76     #
77     # The third argument is an optional hash of conditions to further filter the
78     # objects.
79     # For example, here the user can only update published articles.
80     #
81     #   can :update, Article, :published => true
82     #
83     # See the wiki for details:
84     # https://github.com/CanCanCommunity/cancancan/wiki/Defining-Abilities
85   end
86 end