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