]> git.openstreetmap.org Git - rails.git/blob - app/abilities/ability.rb
Refactor login/logout into sessions 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 [:index, :rss, :show, :comments], DiaryEntry
20       can [:index], Note
21       can [:index, :show], Redaction
22       can [:new, :create, :destroy], :session
23       can [:index, :show, :data, :georss, :picture, :icon], Trace
24       can [:terms, :new, :create, :save, :confirm, :confirm_resend, :confirm_email, :lost_password, :reset_password, :show, :auth_success, :auth_failure], User
25       can [:index, :show, :blocks_on, :blocks_by], UserBlock
26       can [:index, :show], Node
27       can [:index, :show, :full, :ways_for_node], Way
28       can [:index, :show, :full, :relations_for_node, :relations_for_way, :relations_for_relation], Relation
29       can [:history, :version], OldNode
30       can [:history, :version], OldWay
31       can [:history, :version], OldRelation
32     end
33
34     if user
35       can :welcome, :site
36       can [:revoke, :authorize], :oauth
37
38       if Settings.status != "database_offline"
39         can [:index, :new, :create, :show, :edit, :update, :destroy], ClientApplication
40         can [:new, :create, :edit, :update, :comment, :subscribe, :unsubscribe], DiaryEntry
41         can [:make_friend, :remove_friend], Friendship
42         can [:new, :create, :reply, :show, :inbox, :outbox, :mark, :destroy], Message
43         can [:close, :reopen], Note
44         can [:new, :create], Report
45         can [:mine, :new, :create, :edit, :update, :destroy], Trace
46         can [:account, :go_public], User
47
48         if user.moderator?
49           can [:hide, :hidecomment], DiaryEntry
50           can [:index, :show, :resolve, :ignore, :reopen], Issue
51           can :create, IssueComment
52           can [:new, :create, :edit, :update, :destroy], Redaction
53           can [:new, :edit, :create, :update, :revoke], UserBlock
54         end
55
56         if user.administrator?
57           can [:hide, :unhide, :hidecomment, :unhidecomment], DiaryEntry
58           can [:index, :show, :resolve, :ignore, :reopen], Issue
59           can :create, IssueComment
60           can [:set_status, :destroy, :index], User
61           can [:grant, :revoke], UserRole
62         end
63       end
64     end
65
66     # Define abilities for the passed in user here. For example:
67     #
68     #   user ||= User.new # guest user (not logged in)
69     #   if user.admin?
70     #     can :manage, :all
71     #   else
72     #     can :read, :all
73     #   end
74     #
75     # The first argument to `can` is the action you are giving the user
76     # permission to do.
77     # If you pass :manage it will apply to every action. Other common actions
78     # here are :read, :create, :update and :destroy.
79     #
80     # The second argument is the resource the user can perform the action on.
81     # If you pass :all it will apply to every resource. Otherwise pass a Ruby
82     # class of the resource.
83     #
84     # The third argument is an optional hash of conditions to further filter the
85     # objects.
86     # For example, here the user can only update published articles.
87     #
88     #   can :update, Article, :published => true
89     #
90     # See the wiki for details:
91     # https://github.com/CanCanCommunity/cancancan/wiki/Defining-Abilities
92   end
93 end