about summary refs log tree commit diff
path: root/app/controllers/directories_controller.rb
blob: b8565af4b50f53cfd1878695687f364f63d9438b (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
47
48
49
50
51
52
53
# frozen_string_literal: true

class DirectoriesController < ApplicationController
  layout 'public'

  before_action :check_enabled
  before_action :set_instance_presenter
  before_action :set_tag, only: :show
  before_action :set_tags
  before_action :set_accounts

  def index
    render :index
  end

  def show
    render :index
  end

  private

  def check_enabled
    return not_found unless Setting.profile_directory
  end

  def set_tag
    @tag = Tag.discoverable.find_by!(name: params[:id].downcase)
  end

  def set_tags
    @tags = Tag.discoverable.limit(30)
  end

  def set_accounts
    @accounts = Account.searchable.discoverable.page(params[:page]).per(50).tap do |query|
      query.merge!(Account.tagged_with(@tag.id)) if @tag

      if popular_requested?
        query.merge!(Account.popular)
      else
        query.merge!(Account.by_recent_status)
      end
    end
  end

  def set_instance_presenter
    @instance_presenter = InstancePresenter.new
  end

  def popular_requested?
    request.path.ends_with?('/popular')
  end
end