FIX: Ignore suspect users that were migrated or users who were created more than six months ago (#9205)

This commit is contained in:
Roman Rizzi
2020-03-14 08:47:53 -03:00
committed by GitHub
parent e825f47daa
commit 27bc4f51c7
2 changed files with 29 additions and 1 deletions

View File

@@ -9,15 +9,19 @@ module Jobs
return if SiteSetting.must_approve_users
users = User
.distinct
.activated
.human_users
.where(approved: false)
.joins(:user_profile, :user_stat)
.where("users.created_at <= ?", 1.day.ago)
.where("users.created_at <= ? AND users.created_at >= ?", 1.day.ago, 6.months.ago)
.where("LENGTH(COALESCE(user_profiles.bio_raw, user_profiles.website, '')) > 0")
.where("user_stats.posts_read_count <= 1 AND user_stats.topics_entered <= 1")
.joins("LEFT OUTER JOIN reviewables r ON r.target_id = users.id AND r.target_type = 'User'")
.where('r.id IS NULL')
.joins('LEFT OUTER JOIN user_custom_fields ucf ON users.id = ucf.user_id')
.group('users.id, ucf.id')
.having('ucf.id IS NULL OR NOT bool_or(ucf.name = ?)', 'import_id')
.limit(10)
users.each do |user|