]> git.openstreetmap.org Git - rails.git/blob - app/abilities/api_capability.rb
Add create note subscription api endpoint
[rails.git] / app / abilities / api_capability.rb
1 # frozen_string_literal: true
2
3 class ApiCapability
4   include CanCan::Ability
5
6   def initialize(token)
7     if Settings.status != "database_offline"
8       user = User.find(token.resource_owner_id)
9
10       if user&.active?
11         can [:create, :comment, :close, :reopen], Note if scope?(token, :write_notes)
12         can :create, NoteSubscription if scope?(token, :write_notes)
13         can [:show, :data], Trace if scope?(token, :read_gpx)
14         can [:create, :update, :destroy], Trace if scope?(token, :write_gpx)
15         can [:details], User if scope?(token, :read_prefs)
16         can [:gpx_files], User if scope?(token, :read_gpx)
17         can [:index, :show], UserPreference if scope?(token, :read_prefs)
18         can [:update, :update_all, :destroy], UserPreference if scope?(token, :write_prefs)
19         can [:inbox, :outbox, :show, :update, :destroy], Message if scope?(token, :consume_messages)
20         can [:create], Message if scope?(token, :send_messages)
21
22         if user.terms_agreed?
23           can [:create, :update, :upload, :close, :subscribe, :unsubscribe], Changeset if scope?(token, :write_api)
24           can :create, ChangesetComment if scope?(token, :write_api)
25           can [:create, :update, :delete], [Node, Way, Relation] if scope?(token, :write_api)
26         end
27
28         if user.moderator?
29           can [:destroy, :restore], ChangesetComment if scope?(token, :write_api)
30           can :destroy, Note if scope?(token, :write_notes)
31           can :redact, [OldNode, OldWay, OldRelation] if user&.terms_agreed? && scope?(token, :write_redactions)
32         end
33       end
34     end
35   end
36
37   private
38
39   def scope?(token, scope)
40     token&.includes_scope?(scope)
41   end
42 end