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