about summary refs log tree commit diff
path: root/app/lib/status_finder.rb
blob: 22ced8bf82d8648de62f03c1d20e337f39e79969 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

class StatusFinder
  attr_reader :url

  def initialize(url)
    @url = url
  end

  def status
    verify_action!

    raise ActiveRecord::RecordNotFound unless TagManager.instance.local_url?(url)

    case recognized_params[:controller]
    when 'statuses'
      Status.find(recognized_params[:id])
    else
      raise ActiveRecord::RecordNotFound
    end
  end

  private

  def recognized_params
    Rails.application.routes.recognize_path(url)
  end

  def verify_action!
    unless recognized_params[:action] == 'show'
      raise ActiveRecord::RecordNotFound
    end
  end
end