about summary refs log tree commit diff
path: root/app/lib/stream_entry_finder.rb
blob: 0ea33229ce9d22a3faf7cfc2618725a97ca71486 (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 StreamEntryFinder
  attr_reader :url

  def initialize(url)
    @url = url
  end

  def stream_entry
    verify_action!

    case recognized_params[:controller]
    when 'stream_entries'
      StreamEntry.find(recognized_params[:id])
    when 'statuses'
      Status.find(recognized_params[:id]).stream_entry
    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