The Cybre.Space fork of Mastodon -- https://github.com/tootsuite/mastodon
https://cybre.space
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
988 B
42 lines
988 B
# frozen_string_literal: true |
|
|
|
class DirectoriesController < ApplicationController |
|
layout 'public' |
|
|
|
before_action :authenticate_user!, if: :whitelist_mode? |
|
before_action :require_enabled! |
|
before_action :set_instance_presenter |
|
before_action :set_tag, only: :show |
|
before_action :set_accounts |
|
|
|
skip_before_action :require_functional!, unless: :whitelist_mode? |
|
|
|
def index |
|
render :index |
|
end |
|
|
|
def show |
|
render :index |
|
end |
|
|
|
private |
|
|
|
def require_enabled! |
|
return not_found unless Setting.profile_directory |
|
end |
|
|
|
def set_tag |
|
@tag = Tag.discoverable.find_normalized!(params[:id]) |
|
end |
|
|
|
def set_accounts |
|
@accounts = Account.local.discoverable.by_recent_status.page(params[:page]).per(20).tap do |query| |
|
query.merge!(Account.tagged_with(@tag.id)) if @tag |
|
query.merge!(Account.not_excluded_by_account(current_account)) if current_account |
|
end |
|
end |
|
|
|
def set_instance_presenter |
|
@instance_presenter = InstancePresenter.new |
|
end |
|
end
|
|
|