view app/controllers/tweets_controller.rb @ 264:4f86037f6e6a

Identifiable rate limited client
author nanaya <me@nanaya.net>
date Sun, 09 Feb 2025 03:48:26 +0900
parents e2150dce4e90
children
line wrap: on
line source

class TweetsController < ApplicationController
  def index
    redirect if params[:name].present?
  end

  def show
    return redirect if params[:id][/\D/].present?

    @user = CachedFetch.user_by_id params[:id]

    if @user.nil?
      head :not_found
      return
    end

    if @user[:protected]
      head :forbidden
      return
    end

    return redirect if normalized_screen_name != params[:name]

    @tweets = CachedFetch.timeline params[:id]

    head :not_found if @tweets.nil?
  end

  def redirect
    @user ||= CachedFetch.user_by_username(params[:name])

    if @user.nil?
      head :not_found
    else
      redirect_to tweet_path(@user[:id], normalized_screen_name)
    end
  end

  private

  def normalized_screen_name
    @user[:username].presence || "_"
  end
end