about summary refs log tree commit diff
path: root/app/models/trends/status_filter.rb
blob: 7c453e33938113ffd62426cdb3fec0852a625c71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true

class Trends::StatusFilter
  KEYS = %i(
    trending
    locale
  ).freeze

  attr_reader :params

  def initialize(params)
    @params = params
  end

  def results
    scope = Status.unscoped.kept

    params.each do |key, value|
      next if %w(page locale).include?(key.to_s)

      scope.merge!(scope_for(key, value.to_s.strip)) if value.present?
    end

    scope
  end

  private

  def scope_for(key, value)
    case key.to_s
    when 'trending'
      trending_scope(value)
    else
      raise "Unknown filter: #{key}"
    end
  end

  def trending_scope(value)
    scope = Trends.statuses.query

    scope = scope.in_locale(@params[:locale].to_s) if @params[:locale].present?
    scope = scope.allowed if value == 'allowed'

    scope.to_arel
  end
end