Browse Source

Raise an error for remote url in StatusFinder (#4776)

* Raise an error for remote url in StatusFinder

Previous implementation had allowed remote url with status id which also exists on local.

Then that bug leads /api/web/embed to return wrong embed url.

* Fix oembed_controller_spec
closed-social-v3
unarist 7 years ago
committed by Eugen Rochko
parent
commit
6a4e2db661
3 changed files with 13 additions and 0 deletions
  1. +2
    -0
      app/lib/status_finder.rb
  2. +1
    -0
      spec/controllers/api/oembed_controller_spec.rb
  3. +10
    -0
      spec/lib/status_finder_spec.rb

+ 2
- 0
app/lib/status_finder.rb View File

@ -10,6 +10,8 @@ class StatusFinder
def status
verify_action!
raise ActiveRecord::RecordNotFound unless TagManager.instance.local_url?(url)
case recognized_params[:controller]
when 'stream_entries'
StreamEntry.find(recognized_params[:id]).status

+ 1
- 0
spec/controllers/api/oembed_controller_spec.rb View File

@ -8,6 +8,7 @@ RSpec.describe Api::OEmbedController, type: :controller do
describe 'GET #show' do
before do
request.host = Rails.configuration.x.local_domain
get :show, params: { url: account_stream_entry_url(alice, status.stream_entry) }, format: :json
end

+ 10
- 0
spec/lib/status_finder_spec.rb View File

@ -34,6 +34,16 @@ describe StatusFinder do
end
end
context 'with a remote url even if id exists on local' do
let(:status) { Fabricate(:status) }
let(:url) { "https://example.com/users/test/statuses/#{status.id}" }
subject { described_class.new(url) }
it 'raises an error' do
expect { subject.status }.to raise_error(ActiveRecord::RecordNotFound)
end
end
context 'with a plausible url' do
let(:url) { 'https://example.com/users/test/updates/123/embed' }
subject { described_class.new(url) }

Loading…
Cancel
Save