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