mastodon/app/controllers/tags_controller.rb

79 lines
2.0 KiB
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2016-11-05 15:20:05 +01:00
class TagsController < ApplicationController
include SignatureVerification
2020-06-09 00:18:47 +02:00
PAGE_SIZE = 20
PAGE_SIZE_MAX = 200
layout 'public'
before_action :require_signature!, if: -> { request.format == :json && authorized_fetch_mode? }
2019-07-30 11:10:46 +02:00
before_action :authenticate_user!, if: :whitelist_mode?
before_action :set_local
before_action :set_tag
before_action :set_statuses
2017-10-07 20:00:35 +02:00
before_action :set_body_classes
before_action :set_instance_presenter
skip_before_action :require_functional!, unless: :whitelist_mode?
2016-11-05 15:20:05 +01:00
def show
respond_to do |format|
2017-10-07 20:00:35 +02:00
format.html do
expires_in 0, public: true
2017-10-07 20:00:35 +02:00
end
format.rss do
expires_in 0, public: true
render xml: RSS::TagSerializer.render(@tag, @statuses)
end
format.json do
expires_in 3.minutes, public: public_fetch_mode?
render json: collection_presenter, serializer: ActivityPub::CollectionSerializer, adapter: ActivityPub::Adapter, content_type: 'application/activity+json'
end
end
end
private
def set_tag
@tag = Tag.usable.find_normalized!(params[:id])
end
def set_local
@local = truthy_param?(:local)
end
def set_statuses
case request.format&.to_sym
when :json
@statuses = cache_collection(TagFeed.new(@tag, current_account, local: @local).get(PAGE_SIZE, params[:max_id], params[:since_id], params[:min_id]), Status)
when :rss
@statuses = cache_collection(TagFeed.new(@tag, nil, local: @local).get(limit_param), Status)
end
end
2017-10-07 20:00:35 +02:00
def set_body_classes
@body_classes = 'with-modals'
2017-10-07 20:00:35 +02:00
end
def set_instance_presenter
@instance_presenter = InstancePresenter.new
end
def limit_param
params[:limit].present? ? [params[:limit].to_i, PAGE_SIZE_MAX].min : PAGE_SIZE
end
def collection_presenter
ActivityPub::CollectionPresenter.new(
id: tag_url(@tag),
type: :ordered,
size: @tag.statuses.count,
items: @statuses.map { |s| ActivityPub::TagManager.instance.uri_for(s) }
)
2016-11-05 15:20:05 +01:00
end
end