Gab-Social/app/models/account_filter.rb
Developer 30c05a6e96 Added new flags to admin dashboard account search
• Added:
- new flags to admin dashboard account search for PRO, investor, donor, verified
- moved spam to the flags column instead of next to username

• Removed:
- IP Address in account list

• Updated:
- Title for flags in account moderation header
2021-02-10 12:24:09 -05:00

86 lines
2.0 KiB
Ruby

# frozen_string_literal: true
class AccountFilter
attr_reader :params
def initialize(params)
@params = params
set_defaults!
end
def results
scope = Account.recent.includes(:user)
params.each do |key, value|
scope.merge!(scope_for(key, value.to_s.strip)) if value.present?
end
scope
end
private
def set_defaults!
params['local'] = '1' if params['remote'].blank?
params['active'] = '1' if params['suspended'].blank? && params['silenced'].blank? && params['pending'].blank?
end
def scope_for(key, value)
case key.to_s
when 'local'
Account.local
when 'remote'
Account.remote
when 'by_domain'
Account.where(domain: value)
when 'active'
Account.without_suspended
when 'pending'
accounts_with_users.merge User.pending
when 'silenced'
Account.silenced
when 'suspended'
Account.suspended
when 'username'
Account.matches_username(value)
when 'display_name'
Account.matches_display_name(value)
when 'email'
accounts_with_users.merge User.matches_email(value)
when 'ip'
valid_ip?(value) ? accounts_with_users.where('users.current_sign_in_ip <<= ?', value) : Account.none
when 'staff'
accounts_with_users.merge User.staff
when "note"
Account.where("LOWER(note) LIKE LOWER(?)", "%#{value}%")
when "status_count_gte"
# : todo :
Account.joins(:account_stat)
when "sign_up_date_gte"
Account.where("created_at >= ?", value)
when "spam"
Account.where(is_flagged_as_spam: true)
when "is_pro"
Account.where(is_pro: true)
when "is_investor"
Account.where(is_investor: true)
when "is_donor"
Account.where(is_donor: true)
when "is_verified"
Account.where(is_verified: true)
else
raise "Unknown filter: #{key}"
end
end
def accounts_with_users
Account.joins(:user)
end
def valid_ip?(value)
IPAddr.new(value) && true
rescue IPAddr::InvalidAddressError
false
end
end