2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe UserGuardian do
|
2018-09-20 13:33:10 +08:00
|
|
|
let :user do
|
2019-08-10 18:02:12 +08:00
|
|
|
Fabricate(:user)
|
2018-09-20 13:33:10 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
let :moderator do
|
2019-08-10 18:02:12 +08:00
|
|
|
Fabricate(:moderator)
|
2018-09-20 13:33:10 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
let :admin do
|
2019-08-10 18:02:12 +08:00
|
|
|
Fabricate(:admin)
|
2018-09-20 13:33:10 +08:00
|
|
|
end
|
|
|
|
|
2018-12-18 13:37:45 +08:00
|
|
|
let(:user_avatar) { Fabricate(:user_avatar, user: user) }
|
2018-09-20 13:33:10 +08:00
|
|
|
|
|
|
|
let :users_upload do
|
|
|
|
Upload.new(user_id: user_avatar.user_id, id: 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
let :already_uploaded do
|
2020-05-23 12:56:13 +08:00
|
|
|
u = Upload.new(user_id: 9999, id: 2)
|
2018-09-20 13:33:10 +08:00
|
|
|
user_avatar.custom_upload_id = u.id
|
|
|
|
u
|
|
|
|
end
|
|
|
|
|
|
|
|
let :not_my_upload do
|
2020-05-23 12:56:13 +08:00
|
|
|
Upload.new(user_id: 9999, id: 3)
|
2018-09-20 13:33:10 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
let(:moderator_upload) { Upload.new(user_id: moderator.id, id: 4) }
|
|
|
|
|
2024-01-29 17:52:02 +08:00
|
|
|
fab!(:trust_level_1)
|
|
|
|
fab!(:trust_level_2)
|
2020-08-18 00:37:45 +08:00
|
|
|
|
2018-09-20 13:33:10 +08:00
|
|
|
describe "#can_pick_avatar?" do
|
|
|
|
let :guardian do
|
|
|
|
Guardian.new(user)
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "with anon user" do
|
2018-09-20 13:33:10 +08:00
|
|
|
let(:guardian) { Guardian.new }
|
|
|
|
|
|
|
|
it "should return the right value" do
|
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, users_upload)).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "with current user" do
|
2018-09-20 13:33:10 +08:00
|
|
|
it "can not set uploads not owned by current user" do
|
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, users_upload)).to eq(true)
|
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, already_uploaded)).to eq(true)
|
2018-12-18 13:37:45 +08:00
|
|
|
|
|
|
|
UserUpload.create!(upload_id: not_my_upload.id, user_id: not_my_upload.user_id)
|
|
|
|
|
2018-09-20 13:33:10 +08:00
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, not_my_upload)).to eq(false)
|
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, nil)).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can handle uploads that are associated but not directly owned" do
|
2018-12-18 13:37:45 +08:00
|
|
|
UserUpload.create!(upload_id: not_my_upload.id, user_id: user_avatar.user_id)
|
2018-09-20 13:33:10 +08:00
|
|
|
|
2018-12-18 13:37:45 +08:00
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, not_my_upload)).to eq(true)
|
2018-09-20 13:33:10 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "with moderator" do
|
2018-09-20 13:33:10 +08:00
|
|
|
let :guardian do
|
|
|
|
Guardian.new(moderator)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is secure" do
|
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, moderator_upload)).to eq(true)
|
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, users_upload)).to eq(true)
|
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, already_uploaded)).to eq(true)
|
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, not_my_upload)).to eq(false)
|
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, nil)).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "with admin" do
|
2018-09-20 13:33:10 +08:00
|
|
|
let :guardian do
|
|
|
|
Guardian.new(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is secure" do
|
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, not_my_upload)).to eq(true)
|
|
|
|
expect(guardian.can_pick_avatar?(user_avatar, nil)).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
2018-10-11 01:00:08 +08:00
|
|
|
end
|
|
|
|
|
2023-02-24 15:57:01 +08:00
|
|
|
describe "#can_see_user?" do
|
|
|
|
it "is always true" do
|
|
|
|
expect(Guardian.new.can_see_user?(anything)).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-11 01:00:08 +08:00
|
|
|
describe "#can_see_profile?" do
|
|
|
|
it "is false for no user" do
|
|
|
|
expect(Guardian.new.can_see_profile?(nil)).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is true for a user whose profile is public" do
|
|
|
|
expect(Guardian.new.can_see_profile?(user)).to eq(true)
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "with hidden profile" do
|
2018-12-06 21:32:56 +08:00
|
|
|
# Mixing Fabricate.build() and Fabricate() could cause ID clashes, so override :user
|
2023-11-10 06:47:59 +08:00
|
|
|
fab!(:user)
|
2018-12-06 21:32:56 +08:00
|
|
|
|
2018-10-11 01:00:08 +08:00
|
|
|
let(:hidden_user) do
|
|
|
|
result = Fabricate(:user)
|
|
|
|
result.user_option.update_column(:hide_profile_and_presence, true)
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is false for another user" do
|
|
|
|
expect(Guardian.new(user).can_see_profile?(hidden_user)).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is false for an anonymous user" do
|
|
|
|
expect(Guardian.new.can_see_profile?(hidden_user)).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is true for the user themselves" do
|
|
|
|
expect(Guardian.new(hidden_user).can_see_profile?(hidden_user)).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is true for a staff user" do
|
|
|
|
expect(Guardian.new(admin).can_see_profile?(hidden_user)).to eq(true)
|
|
|
|
end
|
|
|
|
|
2020-10-10 05:18:44 +08:00
|
|
|
it "is true if hiding profiles is disabled" do
|
|
|
|
SiteSetting.allow_users_to_hide_profile = false
|
|
|
|
expect(Guardian.new(user).can_see_profile?(hidden_user)).to eq(true)
|
|
|
|
end
|
2018-10-11 01:00:08 +08:00
|
|
|
end
|
2018-09-20 13:33:10 +08:00
|
|
|
end
|
2018-12-07 18:57:28 +08:00
|
|
|
|
2024-02-05 17:00:36 +08:00
|
|
|
describe "#can_see_user_actions?" do
|
|
|
|
it "is true by default" do
|
|
|
|
expect(Guardian.new.can_see_user_actions?(nil, [])).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with 'hide_user_activity_tab' setting" do
|
|
|
|
before { SiteSetting.hide_user_activity_tab = false }
|
|
|
|
|
|
|
|
it "returns true for self" do
|
|
|
|
expect(Guardian.new(user).can_see_user_actions?(user, [])).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true for admin" do
|
|
|
|
expect(Guardian.new(admin).can_see_user_actions?(user, [])).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false for regular user" do
|
|
|
|
expect(Guardian.new.can_see_user_actions?(user, [])).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-07 18:57:28 +08:00
|
|
|
describe "#allowed_user_field_ids" do
|
|
|
|
let! :fields do
|
|
|
|
[
|
|
|
|
Fabricate(:user_field),
|
|
|
|
Fabricate(:user_field),
|
|
|
|
Fabricate(:user_field, show_on_profile: true),
|
|
|
|
Fabricate(:user_field, show_on_user_card: true),
|
|
|
|
Fabricate(:user_field, show_on_user_card: true, show_on_profile: true),
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
let :user2 do
|
2019-08-10 18:02:12 +08:00
|
|
|
Fabricate(:user)
|
2018-12-07 18:57:28 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns all fields for staff" do
|
|
|
|
guardian = Guardian.new(admin)
|
|
|
|
expect(guardian.allowed_user_field_ids(user)).to contain_exactly(*fields.map(&:id))
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns all fields for self" do
|
|
|
|
guardian = Guardian.new(user)
|
|
|
|
expect(guardian.allowed_user_field_ids(user)).to contain_exactly(*fields.map(&:id))
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns only public fields for others" do
|
|
|
|
guardian = Guardian.new(user)
|
|
|
|
expect(guardian.allowed_user_field_ids(user2)).to contain_exactly(*fields[2..5].map(&:id))
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has a different cache per user" do
|
|
|
|
guardian = Guardian.new(user)
|
|
|
|
expect(guardian.allowed_user_field_ids(user2)).to contain_exactly(*fields[2..5].map(&:id))
|
|
|
|
expect(guardian.allowed_user_field_ids(user)).to contain_exactly(*fields.map(&:id))
|
|
|
|
end
|
|
|
|
end
|
2019-08-10 18:02:12 +08:00
|
|
|
|
|
|
|
describe "#can_delete_user?" do
|
|
|
|
shared_examples "can_delete_user examples" do
|
|
|
|
it "isn't allowed if user is an admin" do
|
|
|
|
another_admin = Fabricate(:admin)
|
|
|
|
expect(guardian.can_delete_user?(another_admin)).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples "can_delete_user staff examples" do
|
|
|
|
it "is allowed when user didn't create a post yet" do
|
|
|
|
expect(user.first_post_created_at).to be_nil
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when user created too many posts" do
|
|
|
|
before { (User::MAX_STAFF_DELETE_POST_COUNT + 1).times { Fabricate(:post, user: user) } }
|
|
|
|
|
|
|
|
it "is allowed when user created the first post within delete_user_max_post_age days" do
|
|
|
|
SiteSetting.delete_user_max_post_age = 2
|
|
|
|
|
|
|
|
user.user_stat = UserStat.new(new_since: 3.days.ago, first_post_created_at: 1.day.ago)
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
|
|
|
|
user.user_stat = UserStat.new(new_since: 3.days.ago, first_post_created_at: 3.day.ago)
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when user didn't create many posts" do
|
|
|
|
before { (User::MAX_STAFF_DELETE_POST_COUNT - 1).times { Fabricate(:post, user: user) } }
|
|
|
|
|
|
|
|
it "is allowed when even when user created the first post before delete_user_max_post_age days" do
|
|
|
|
SiteSetting.delete_user_max_post_age = 2
|
|
|
|
|
|
|
|
user.user_stat = UserStat.new(new_since: 3.days.ago, first_post_created_at: 3.day.ago)
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when deleting myself" do
|
2019-08-10 18:02:12 +08:00
|
|
|
let(:guardian) { Guardian.new(user) }
|
|
|
|
|
|
|
|
include_examples "can_delete_user examples"
|
|
|
|
|
|
|
|
it "isn't allowed when SSO is enabled" do
|
2021-02-08 18:04:33 +08:00
|
|
|
SiteSetting.discourse_connect_url = "https://www.example.com/sso"
|
|
|
|
SiteSetting.enable_discourse_connect = true
|
2019-08-10 18:02:12 +08:00
|
|
|
expect(guardian.can_delete_user?(user)).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "isn't allowed when user created too many posts" do
|
2022-02-07 11:23:34 +08:00
|
|
|
topic = Fabricate(:topic)
|
|
|
|
Fabricate(:post, topic: topic, user: user)
|
2019-08-10 18:02:12 +08:00
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
|
2022-02-07 11:23:34 +08:00
|
|
|
Fabricate(:post, topic: topic, user: user)
|
2019-08-10 18:02:12 +08:00
|
|
|
expect(guardian.can_delete_user?(user)).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "isn't allowed when user created too many posts in PM" do
|
|
|
|
topic = Fabricate(:private_message_topic, user: user)
|
|
|
|
|
|
|
|
Fabricate(:post, user: user, topic: topic)
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
|
|
|
|
Fabricate(:post, user: user, topic: topic)
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is allowed when user responded to PM from system user" do
|
|
|
|
topic =
|
|
|
|
Fabricate(
|
|
|
|
:private_message_topic,
|
|
|
|
user: Discourse.system_user,
|
|
|
|
topic_allowed_users: [
|
|
|
|
Fabricate.build(:topic_allowed_user, user: Discourse.system_user),
|
|
|
|
Fabricate.build(:topic_allowed_user, user: user),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
Fabricate(:post, user: user, topic: topic)
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
|
|
|
|
Fabricate(:post, user: user, topic: topic)
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
end
|
|
|
|
|
2021-05-21 09:43:47 +08:00
|
|
|
it "is allowed when user created multiple posts in PMs to themselves" do
|
2019-08-10 18:02:12 +08:00
|
|
|
topic =
|
|
|
|
Fabricate(
|
|
|
|
:private_message_topic,
|
|
|
|
user: user,
|
|
|
|
topic_allowed_users: [Fabricate.build(:topic_allowed_user, user: user)],
|
|
|
|
)
|
|
|
|
|
|
|
|
Fabricate(:post, user: user, topic: topic)
|
|
|
|
Fabricate(:post, user: user, topic: topic)
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "isn't allowed when user created multiple posts in PMs sent to other users" do
|
|
|
|
topic =
|
|
|
|
Fabricate(
|
|
|
|
:private_message_topic,
|
|
|
|
user: user,
|
|
|
|
topic_allowed_users: [
|
|
|
|
Fabricate.build(:topic_allowed_user, user: user),
|
|
|
|
Fabricate.build(:topic_allowed_user, user: Fabricate(:user)),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
Fabricate(:post, user: user, topic: topic)
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
|
|
|
|
Fabricate(:post, user: user, topic: topic)
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "isn't allowed when user created multiple posts in PMs sent to groups" do
|
|
|
|
topic =
|
|
|
|
Fabricate(
|
|
|
|
:private_message_topic,
|
|
|
|
user: user,
|
|
|
|
topic_allowed_users: [Fabricate.build(:topic_allowed_user, user: user)],
|
|
|
|
topic_allowed_groups: [
|
|
|
|
Fabricate.build(:topic_allowed_group, group: Fabricate(:group)),
|
|
|
|
Fabricate.build(:topic_allowed_group, group: Fabricate(:group)),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
Fabricate(:post, user: user, topic: topic)
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
|
|
|
|
Fabricate(:post, user: user, topic: topic)
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(false)
|
|
|
|
end
|
2020-04-02 04:10:17 +08:00
|
|
|
|
|
|
|
it "isn't allowed when site admin blocked self deletion" do
|
|
|
|
expect(user.first_post_created_at).to be_nil
|
|
|
|
|
|
|
|
SiteSetting.delete_user_self_max_post_count = -1
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "correctly respects the delete_user_self_max_post_count setting" do
|
2022-02-07 11:23:34 +08:00
|
|
|
topic = Fabricate(:topic)
|
|
|
|
|
2020-04-02 04:10:17 +08:00
|
|
|
SiteSetting.delete_user_self_max_post_count = 0
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
|
2022-02-07 11:23:34 +08:00
|
|
|
Fabricate(:post, topic: topic, user: user)
|
2020-04-02 04:10:17 +08:00
|
|
|
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(false)
|
|
|
|
SiteSetting.delete_user_self_max_post_count = 1
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
|
2022-02-07 11:23:34 +08:00
|
|
|
Fabricate(:post, topic: topic, user: user)
|
2020-04-02 04:10:17 +08:00
|
|
|
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(false)
|
|
|
|
SiteSetting.delete_user_self_max_post_count = 2
|
|
|
|
expect(guardian.can_delete_user?(user)).to eq(true)
|
|
|
|
end
|
2019-08-10 18:02:12 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
context "for moderators" do
|
|
|
|
let(:guardian) { Guardian.new(moderator) }
|
|
|
|
include_examples "can_delete_user examples"
|
|
|
|
include_examples "can_delete_user staff examples"
|
|
|
|
end
|
|
|
|
|
|
|
|
context "for admins" do
|
|
|
|
let(:guardian) { Guardian.new(admin) }
|
|
|
|
include_examples "can_delete_user examples"
|
|
|
|
include_examples "can_delete_user staff examples"
|
|
|
|
end
|
|
|
|
end
|
2020-04-28 01:51:25 +08:00
|
|
|
|
2020-04-30 23:29:33 +08:00
|
|
|
describe "#can_merge_user?" do
|
|
|
|
shared_examples "can_merge_user examples" do
|
|
|
|
it "isn't allowed if user is a staff" do
|
|
|
|
staff = Fabricate(:moderator)
|
|
|
|
expect(guardian.can_merge_user?(staff)).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "for moderators" do
|
|
|
|
let(:guardian) { Guardian.new(moderator) }
|
|
|
|
include_examples "can_merge_user examples"
|
|
|
|
|
|
|
|
it "isn't allowed if current_user is not an admin" do
|
|
|
|
expect(guardian.can_merge_user?(user)).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "for admins" do
|
|
|
|
let(:guardian) { Guardian.new(admin) }
|
|
|
|
include_examples "can_merge_user examples"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-28 01:51:25 +08:00
|
|
|
describe "#can_see_review_queue?" do
|
|
|
|
it "returns true when the user is a staff member" do
|
|
|
|
guardian = Guardian.new(moderator)
|
|
|
|
expect(guardian.can_see_review_queue?).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false for a regular user" do
|
|
|
|
guardian = Guardian.new(user)
|
|
|
|
expect(guardian.can_see_review_queue?).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true when the user's group can review an item in the queue" do
|
|
|
|
group = Fabricate(:group)
|
|
|
|
group.add(user)
|
|
|
|
guardian = Guardian.new(user)
|
2020-07-15 00:36:19 +08:00
|
|
|
SiteSetting.enable_category_group_moderation = true
|
2024-09-04 09:38:46 +08:00
|
|
|
category = Fabricate(:category)
|
|
|
|
Fabricate(:category_moderation_group, category:, group:)
|
2020-04-28 01:51:25 +08:00
|
|
|
|
2024-09-04 09:38:46 +08:00
|
|
|
Fabricate(:reviewable_flagged_post, category:)
|
2020-04-28 01:51:25 +08:00
|
|
|
|
|
|
|
expect(guardian.can_see_review_queue?).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false if category group review is disabled" do
|
|
|
|
group = Fabricate(:group)
|
|
|
|
group.add(user)
|
|
|
|
guardian = Guardian.new(user)
|
2020-07-15 00:36:19 +08:00
|
|
|
SiteSetting.enable_category_group_moderation = false
|
2024-09-04 09:38:46 +08:00
|
|
|
category = Fabricate(:category)
|
|
|
|
Fabricate(:category_moderation_group, category:, group:)
|
2020-04-28 01:51:25 +08:00
|
|
|
|
2024-09-04 09:38:46 +08:00
|
|
|
Fabricate(:reviewable_flagged_post, category:)
|
2020-04-28 01:51:25 +08:00
|
|
|
|
|
|
|
expect(guardian.can_see_review_queue?).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false if the reviewable is under a read restricted category" do
|
|
|
|
group = Fabricate(:group)
|
|
|
|
group.add(user)
|
|
|
|
guardian = Guardian.new(user)
|
2020-07-15 00:36:19 +08:00
|
|
|
SiteSetting.enable_category_group_moderation = true
|
2020-04-28 01:51:25 +08:00
|
|
|
category = Fabricate(:category, read_restricted: true)
|
2024-09-04 09:38:46 +08:00
|
|
|
Fabricate(:category_moderation_group, category:, group:)
|
2020-04-28 01:51:25 +08:00
|
|
|
|
2024-09-04 09:38:46 +08:00
|
|
|
Fabricate(:reviewable_flagged_post, category: category)
|
2020-04-28 01:51:25 +08:00
|
|
|
|
|
|
|
expect(guardian.can_see_review_queue?).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
2020-08-18 00:37:45 +08:00
|
|
|
|
|
|
|
describe "can_upload_profile_header" do
|
|
|
|
it "returns true if it is an admin" do
|
|
|
|
guardian = Guardian.new(admin)
|
|
|
|
expect(guardian.can_upload_profile_header?(admin)).to eq(true)
|
|
|
|
end
|
|
|
|
|
2024-02-19 08:47:47 +08:00
|
|
|
it "returns true if the group of user matches site setting" do
|
2020-08-18 00:37:45 +08:00
|
|
|
guardian = Guardian.new(trust_level_2)
|
2024-02-19 08:47:47 +08:00
|
|
|
SiteSetting.profile_background_allowed_groups = Group::AUTO_GROUPS[:trust_level_2]
|
2020-08-18 00:37:45 +08:00
|
|
|
expect(guardian.can_upload_profile_header?(trust_level_2)).to eq(true)
|
|
|
|
end
|
|
|
|
|
2024-02-19 08:47:47 +08:00
|
|
|
it "returns false if the group of user does not matches site setting" do
|
2020-08-18 00:37:45 +08:00
|
|
|
guardian = Guardian.new(trust_level_1)
|
2024-02-19 08:47:47 +08:00
|
|
|
SiteSetting.profile_background_allowed_groups = Group::AUTO_GROUPS[:trust_level_2]
|
2020-08-18 00:37:45 +08:00
|
|
|
expect(guardian.can_upload_profile_header?(trust_level_1)).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "can_upload_user_card_background" do
|
|
|
|
it "returns true if it is an admin" do
|
|
|
|
guardian = Guardian.new(admin)
|
|
|
|
expect(guardian.can_upload_user_card_background?(admin)).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true if the trust level of user matches site setting" do
|
|
|
|
guardian = Guardian.new(trust_level_2)
|
2023-12-14 10:57:58 +08:00
|
|
|
SiteSetting.user_card_background_allowed_groups = Group::AUTO_GROUPS[:trust_level_2]
|
2020-08-18 00:37:45 +08:00
|
|
|
expect(guardian.can_upload_user_card_background?(trust_level_2)).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false if the trust level of user does not matches site setting" do
|
|
|
|
guardian = Guardian.new(trust_level_1)
|
2023-12-14 10:57:58 +08:00
|
|
|
SiteSetting.user_card_background_allowed_groups = Group::AUTO_GROUPS[:trust_level_2]
|
2020-08-18 00:37:45 +08:00
|
|
|
expect(guardian.can_upload_user_card_background?(trust_level_1)).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
2021-07-17 02:50:40 +08:00
|
|
|
|
|
|
|
describe "#can_change_tracking_preferences?" do
|
|
|
|
let(:staged_user) { Fabricate(:staged) }
|
|
|
|
let(:admin_user) { Fabricate(:admin) }
|
|
|
|
|
|
|
|
it "is true for normal TL0 user" do
|
|
|
|
expect(Guardian.new(user).can_change_tracking_preferences?(user)).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is true for admin user" do
|
|
|
|
expect(Guardian.new(admin_user).can_change_tracking_preferences?(admin_user)).to eq(true)
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when allow_changing_staged_user_tracking is false" do
|
2021-07-17 02:50:40 +08:00
|
|
|
before { SiteSetting.allow_changing_staged_user_tracking = false }
|
|
|
|
|
|
|
|
it "is false to staged user" do
|
|
|
|
expect(Guardian.new(staged_user).can_change_tracking_preferences?(staged_user)).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is false for staged user as admin user" do
|
|
|
|
expect(Guardian.new(admin_user).can_change_tracking_preferences?(staged_user)).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when allow_changing_staged_user_tracking is true" do
|
2021-07-17 02:50:40 +08:00
|
|
|
before { SiteSetting.allow_changing_staged_user_tracking = true }
|
|
|
|
|
|
|
|
it "is true to staged user" do
|
|
|
|
expect(Guardian.new(staged_user).can_change_tracking_preferences?(staged_user)).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is true for staged user as admin user" do
|
|
|
|
expect(Guardian.new(admin_user).can_change_tracking_preferences?(staged_user)).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
FEATURE: Uppy direct S3 multipart uploads in composer (#14051)
This pull request introduces the endpoints required, and the JavaScript functionality in the `ComposerUppyUpload` mixin, for direct S3 multipart uploads. There are four new endpoints in the uploads controller:
* `create-multipart.json` - Creates the multipart upload in S3 along with an `ExternalUploadStub` record, storing information about the file in the same way as `generate-presigned-put.json` does for regular direct S3 uploads
* `batch-presign-multipart-parts.json` - Takes a list of part numbers and the unique identifier for an `ExternalUploadStub` record, and generates the presigned URLs for those parts if the multipart upload still exists and if the user has permission to access that upload
* `complete-multipart.json` - Completes the multipart upload in S3. Needs the full list of part numbers and their associated ETags which are returned when the part is uploaded to the presigned URL above. Only works if the user has permission to access the associated `ExternalUploadStub` record and the multipart upload still exists.
After we confirm the upload is complete in S3, we go through the regular `UploadCreator` flow, the same as `complete-external-upload.json`, and promote the temporary upload S3 into a full `Upload` record, moving it to its final destination.
* `abort-multipart.json` - Aborts the multipart upload on S3 and destroys the `ExternalUploadStub` record if the user has permission to access that upload.
Also added are a few new columns to `ExternalUploadStub`:
* multipart - Whether or not this is a multipart upload
* external_upload_identifier - The "upload ID" for an S3 multipart upload
* filesize - The size of the file when the `create-multipart.json` or `generate-presigned-put.json` is called. This is used for validation.
When the user completes a direct S3 upload, either regular or multipart, we take the `filesize` that was captured when the `ExternalUploadStub` was first created and compare it with the final `Content-Length` size of the file where it is stored in S3. Then, if the two do not match, we throw an error, delete the file on S3, and ban the user from uploading files for N (default 5) minutes. This would only happen if the user uploads a different file than what they first specified, or in the case of multipart uploads uploaded larger chunks than needed. This is done to prevent abuse of S3 storage by bad actors.
Also included in this PR is an update to vendor/uppy.js. This has been built locally from the latest uppy source at https://github.com/transloadit/uppy/commit/d613b849a6591083f8a0968aa8d66537e231bbcd. This must be done so that I can get my multipart upload changes into Discourse. When the Uppy team cuts a proper release, we can bump the package.json versions instead.
2021-08-25 06:46:54 +08:00
|
|
|
|
|
|
|
describe "#can_upload_external?" do
|
|
|
|
after { Discourse.redis.flushdb }
|
|
|
|
|
|
|
|
it "is true by default" do
|
|
|
|
expect(Guardian.new(user).can_upload_external?).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is false if the user has been banned from external uploads for a time period" do
|
|
|
|
ExternalUploadManager.ban_user_from_external_uploads!(user: user)
|
|
|
|
expect(Guardian.new(user).can_upload_external?).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
2018-09-20 13:33:10 +08:00
|
|
|
end
|