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