2018-12-06 17:36:11 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class DirectoriesController < ApplicationController
|
|
|
|
layout 'public'
|
|
|
|
|
2019-07-30 11:10:46 +02:00
|
|
|
before_action :authenticate_user!, if: :whitelist_mode?
|
|
|
|
before_action :require_enabled!
|
2018-12-06 17:36:11 +01:00
|
|
|
before_action :set_instance_presenter
|
|
|
|
before_action :set_accounts
|
|
|
|
|
2020-06-19 19:18:47 +02:00
|
|
|
skip_before_action :require_functional!, unless: :whitelist_mode?
|
2019-09-28 01:33:27 +02:00
|
|
|
|
2018-12-06 17:36:11 +01:00
|
|
|
def index
|
|
|
|
render :index
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-07-30 11:10:46 +02:00
|
|
|
def require_enabled!
|
2018-12-11 19:18:29 +01:00
|
|
|
return not_found unless Setting.profile_directory
|
|
|
|
end
|
|
|
|
|
2018-12-06 17:36:11 +01:00
|
|
|
def set_accounts
|
2019-08-30 07:41:16 +02:00
|
|
|
@accounts = Account.local.discoverable.by_recent_status.page(params[:page]).per(20).tap do |query|
|
2019-08-30 00:14:36 +02:00
|
|
|
query.merge!(Account.not_excluded_by_account(current_account)) if current_account
|
2018-12-06 17:36:11 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
|
|
|
end
|