token.user
end
- can [:create, :comment, :close, :reopen], Note if scope?(token, :write_notes)
- can [:show, :data], Trace if scope?(token, :read_gpx)
- can [:create, :update, :destroy], Trace if scope?(token, :write_gpx)
- can [:details], User if scope?(token, :read_prefs)
- can [:gpx_files], User if scope?(token, :read_gpx)
- can [:index, :show], UserPreference if scope?(token, :read_prefs)
- can [:update, :update_all, :destroy], UserPreference if scope?(token, :write_prefs)
+ if user&.active?
+ can [:create, :comment, :close, :reopen], Note if scope?(token, :write_notes)
+ can [:show, :data], Trace if scope?(token, :read_gpx)
+ can [:create, :update, :destroy], Trace if scope?(token, :write_gpx)
+ can [:details], User if scope?(token, :read_prefs)
+ can [:gpx_files], User if scope?(token, :read_gpx)
+ can [:index, :show], UserPreference if scope?(token, :read_prefs)
+ can [:update, :update_all, :destroy], UserPreference if scope?(token, :write_prefs)
- if user&.terms_agreed?
- can [:create, :update, :upload, :close, :subscribe, :unsubscribe], Changeset if scope?(token, :write_api)
- can :create, ChangesetComment if scope?(token, :write_api)
- can [:create, :update, :delete], Node if scope?(token, :write_api)
- can [:create, :update, :delete], Way if scope?(token, :write_api)
- can [:create, :update, :delete], Relation if scope?(token, :write_api)
- end
+ if user.terms_agreed?
+ can [:create, :update, :upload, :close, :subscribe, :unsubscribe], Changeset if scope?(token, :write_api)
+ can :create, ChangesetComment if scope?(token, :write_api)
+ can [:create, :update, :delete], Node if scope?(token, :write_api)
+ can [:create, :update, :delete], Way if scope?(token, :write_api)
+ can [:create, :update, :delete], Relation if scope?(token, :write_api)
+ end
- if user&.moderator?
- can [:destroy, :restore], ChangesetComment if scope?(token, :write_api)
- can :destroy, Note if scope?(token, :write_notes)
- if user&.terms_agreed?
- can :redact, OldNode if scope?(token, :write_api)
- can :redact, OldWay if scope?(token, :write_api)
- can :redact, OldRelation if scope?(token, :write_api)
+ if user.moderator?
+ can [:destroy, :restore], ChangesetComment if scope?(token, :write_api)
+ can :destroy, Note if scope?(token, :write_notes)
+ if user&.terms_agreed?
+ can :redact, OldNode if scope?(token, :write_api)
+ can :redact, OldWay if scope?(token, :write_api)
+ can :redact, OldRelation if scope?(token, :write_api)
+ end
end
end
end
require "test_helper"
-class ApiCapabilityTest < ActiveSupport::TestCase
- private
-
- def tokens(*toks)
- AccessToken.new do |token|
- toks.each do |t|
- token.public_send("#{t}=", true)
- end
- end
- end
-end
-
-class ChangesetCommentApiCapabilityTest < ApiCapabilityTest
+class ChangesetCommentApiCapabilityTest < ActiveSupport::TestCase
test "as a normal user with permissionless token" do
token = create(:access_token)
capability = ApiCapability.new token
end
end
-class NoteApiCapabilityTest < ApiCapabilityTest
+class NoteApiCapabilityTest < ActiveSupport::TestCase
test "as a normal user with permissionless token" do
token = create(:access_token)
capability = ApiCapability.new token
end
end
-class UserApiCapabilityTest < ApiCapabilityTest
+class UserApiCapabilityTest < ActiveSupport::TestCase
test "user preferences" do
# a user with no tokens
capability = ApiCapability.new nil
end
# A user with empty tokens
- capability = ApiCapability.new tokens
+ token = create(:access_token)
+ capability = ApiCapability.new token
[:index, :show, :update_all, :update, :destroy].each do |act|
assert capability.cannot? act, UserPreference
end
- capability = ApiCapability.new tokens(:allow_read_prefs)
+ token = create(:access_token, :allow_read_prefs => true)
+ capability = ApiCapability.new token
[:update_all, :update, :destroy].each do |act|
assert capability.cannot? act, UserPreference
assert capability.can? act, UserPreference
end
- capability = ApiCapability.new tokens(:allow_write_prefs)
+ token = create(:access_token, :allow_write_prefs => true)
+ capability = ApiCapability.new token
+
[:index, :show].each do |act|
assert capability.cannot? act, UserPreference
end