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