From e89e4355eb2ab74f7ec93313508c3afb72539855 Mon Sep 17 00:00:00 2001 From: alpaca-tc Date: Wed, 17 May 2017 10:00:34 +0900 Subject: Add filter to AccountFilter (#2968) --- app/controllers/admin/accounts_controller.rb | 6 ++++- app/helpers/admin/filter_helper.rb | 2 +- app/models/account_filter.rb | 38 ++++++++++++++++++++++------ app/views/admin/accounts/index.html.haml | 15 +++++++++++ 4 files changed, 51 insertions(+), 10 deletions(-) (limited to 'app') diff --git a/app/controllers/admin/accounts_controller.rb b/app/controllers/admin/accounts_controller.rb index 0e9e52f42..4c41c4215 100644 --- a/app/controllers/admin/accounts_controller.rb +++ b/app/controllers/admin/accounts_controller.rb @@ -23,7 +23,11 @@ module Admin :by_domain, :silenced, :recent, - :suspended + :suspended, + :username, + :display_name, + :email, + :ip ) end end diff --git a/app/helpers/admin/filter_helper.rb b/app/helpers/admin/filter_helper.rb index 1e4a3f0d0..72f851e5a 100644 --- a/app/helpers/admin/filter_helper.rb +++ b/app/helpers/admin/filter_helper.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true module Admin::FilterHelper - ACCOUNT_FILTERS = %i(local remote by_domain silenced suspended recent).freeze + ACCOUNT_FILTERS = %i(local remote by_domain silenced suspended recent username display_name email ip).freeze REPORT_FILTERS = %i(resolved account_id target_account_id).freeze FILTERS = ACCOUNT_FILTERS + REPORT_FILTERS diff --git a/app/models/account_filter.rb b/app/models/account_filter.rb index a8d8c8837..186b38cd7 100644 --- a/app/models/account_filter.rb +++ b/app/models/account_filter.rb @@ -10,27 +10,49 @@ class AccountFilter def results scope = Account.alphabetic params.each do |key, value| - scope = scope.merge scope_for(key, value) + scope.merge!(scope_for(key, value)) if value.present? end scope end + private + def scope_for(key, value) - case key - when /local/ + accounts = Account.arel_table + + case key.to_s + when 'local' Account.local - when /remote/ + when 'remote' Account.remote - when /by_domain/ + when 'by_domain' Account.where(domain: value) - when /silenced/ + when 'silenced' Account.silenced - when /recent/ + when 'recent' Account.recent - when /suspended/ + when 'suspended' Account.suspended + when 'username' + Account.where(accounts[:username].matches("#{value}%")) + when 'display_name' + Account.where(accounts[:display_name].matches("#{value}%")) + when 'email' + users = User.arel_table + Account.joins(:user).merge(User.where(users[:email].matches("#{value}%"))) + when 'ip' + return Account.default_scoped unless valid_ip?(value) + matches_ip = User.where(current_sign_in_ip: value).or(User.where(last_sign_in_ip: value)) + Account.joins(:user).merge(matches_ip) else raise "Unknown filter: #{key}" end end + + def valid_ip?(value) + IPAddr.new(value) + true + rescue IPAddr::InvalidAddressError + false + end end diff --git a/app/views/admin/accounts/index.html.haml b/app/views/admin/accounts/index.html.haml index 0cff944ba..c9a5dd17a 100644 --- a/app/views/admin/accounts/index.html.haml +++ b/app/views/admin/accounts/index.html.haml @@ -20,6 +20,21 @@ %li= filter_link_to t('admin.accounts.order.alphabetic'), recent: nil %li= filter_link_to t('admin.accounts.order.most_recent'), recent: '1' += form_tag(admin_accounts_url, { method: 'GET', class: 'simple_form' }) do + .fields-group + - Admin::FilterHelper::ACCOUNT_FILTERS.each do |key| + - if params[key].present? + = hidden_field_tag key, params[key] + + - %i(username display_name email ip).each do |key| + .input.string.optional + .label_input + %label.string.optional= t("admin.accounts.#{key}") + = text_field_tag key, params[key], class: 'string optional' + + .actions + %button.btn= t('admin.accounts.search') + %table.table %thead %tr -- cgit