]> git.openstreetmap.org Git - rails.git/blob - app/abilities/api_ability.rb
Merge remote-tracking branch 'upstream/pull/5494'
[rails.git] / app / abilities / api_ability.rb
1 # frozen_string_literal: true
2
3 class ApiAbility
4   include CanCan::Ability
5
6   def initialize(token)
7     can :read, [:version, :capability, :permission, :map]
8
9     if Settings.status != "database_offline"
10       user = User.find(token.resource_owner_id) if token
11
12       can [:read, :feed, :search], Note
13       can :create, Note unless token
14
15       can [:read, :download], Changeset
16       can :read, Tracepoint
17       can :read, User
18       can :read, Node
19       can [:read, :full, :ways_for_node], Way
20       can [:read, :full, :relations_for_node, :relations_for_way, :relations_for_relation], Relation
21       can [:history, :read], [OldNode, OldWay, OldRelation]
22       can :read, UserBlock
23
24       if user&.active?
25         can [:create, :comment, :close, :reopen], Note if scope?(token, :write_notes)
26         can [:create, :destroy], NoteSubscription if scope?(token, :write_notes)
27
28         can :read, Trace if scope?(token, :read_gpx)
29         can [:create, :update, :destroy], Trace if scope?(token, :write_gpx)
30
31         can :details, User if scope?(token, :read_prefs)
32         can :read, UserPreference if scope?(token, :read_prefs)
33         can [:update, :update_all, :destroy], UserPreference if scope?(token, :write_prefs)
34
35         can [:read, :update, :destroy], Message if scope?(token, :consume_messages)
36         can :create, Message if scope?(token, :send_messages)
37
38         if user.terms_agreed?
39           can [:create, :update, :upload, :close, :subscribe, :unsubscribe], Changeset if scope?(token, :write_api)
40           can :create, ChangesetComment if scope?(token, :write_api)
41           can [:create, :update, :delete], [Node, Way, Relation] if scope?(token, :write_api)
42         end
43
44         if user.moderator?
45           can [:destroy, :restore], ChangesetComment if scope?(token, :write_api)
46
47           can :destroy, Note if scope?(token, :write_notes)
48
49           can :redact, [OldNode, OldWay, OldRelation] if user&.terms_agreed? && scope?(token, :write_redactions)
50         end
51       end
52     end
53
54     # Define abilities for the passed in user here. For example:
55     #
56     #   user ||= User.new # guest user (not logged in)
57     #   if user.admin?
58     #     can :manage, :all
59     #   else
60     #     can :read, :all
61     #   end
62     #
63     # The first argument to `can` is the action you are giving the user
64     # permission to do.
65     # If you pass :manage it will apply to every action. Other common actions
66     # here are :read, :create, :update and :destroy.
67     #
68     # The second argument is the resource the user can perform the action on.
69     # If you pass :all it will apply to every resource. Otherwise pass a Ruby
70     # class of the resource.
71     #
72     # The third argument is an optional hash of conditions to further filter the
73     # objects.
74     # For example, here the user can only update published articles.
75     #
76     #   can :update, Article, :published => true
77     #
78     # See the wiki for details:
79     # https://github.com/CanCanCommunity/cancancan/wiki/Defining-Abilities
80   end
81
82   private
83
84   def scope?(token, scope)
85     token&.includes_scope?(scope)
86   end
87 end