2017-03-21 21:32:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-22 08:24:22 -05:00
|
|
|
class ResolveURLService < BaseService
|
2017-08-14 08:08:34 -04:00
|
|
|
include JsonLdHelper
|
2018-08-15 13:33:36 -04:00
|
|
|
include Authorization
|
2017-08-14 08:08:34 -04:00
|
|
|
|
2017-05-05 11:26:04 -04:00
|
|
|
attr_reader :url
|
2017-03-21 21:32:27 -04:00
|
|
|
|
2018-08-15 13:33:36 -04:00
|
|
|
def call(url, on_behalf_of: nil)
|
2017-05-05 11:26:04 -04:00
|
|
|
@url = url
|
2018-08-15 13:33:36 -04:00
|
|
|
@on_behalf_of = on_behalf_of
|
2017-07-11 18:39:15 -04:00
|
|
|
|
|
|
|
return process_local_url if local_url?
|
|
|
|
|
2017-06-06 10:44:48 -04:00
|
|
|
process_url unless fetched_atom_feed.nil?
|
2017-05-05 11:26:04 -04:00
|
|
|
end
|
2017-03-21 21:32:27 -04:00
|
|
|
|
2017-05-05 11:26:04 -04:00
|
|
|
private
|
2017-03-21 21:32:27 -04:00
|
|
|
|
2017-05-05 11:26:04 -04:00
|
|
|
def process_url
|
2018-05-02 06:40:24 -04:00
|
|
|
if equals_or_includes_any?(type, %w(Application Group Organization Person Service))
|
2017-08-14 08:08:34 -04:00
|
|
|
FetchRemoteAccountService.new.call(atom_url, body, protocol)
|
2018-11-05 12:54:07 -05:00
|
|
|
elsif equals_or_includes_any?(type, %w(Note Article Image Video Page))
|
2017-08-14 08:08:34 -04:00
|
|
|
FetchRemoteStatusService.new.call(atom_url, body, protocol)
|
2017-03-21 21:32:27 -04:00
|
|
|
end
|
|
|
|
end
|
2017-05-05 11:26:04 -04:00
|
|
|
|
|
|
|
def fetched_atom_feed
|
|
|
|
@_fetched_atom_feed ||= FetchAtomService.new.call(url)
|
|
|
|
end
|
|
|
|
|
|
|
|
def atom_url
|
|
|
|
fetched_atom_feed.first
|
|
|
|
end
|
|
|
|
|
|
|
|
def body
|
2017-10-04 18:21:44 -04:00
|
|
|
fetched_atom_feed.second[:prefetched_body]
|
2017-05-05 11:26:04 -04:00
|
|
|
end
|
|
|
|
|
2017-08-14 08:08:34 -04:00
|
|
|
def protocol
|
|
|
|
fetched_atom_feed.third
|
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
|
|
|
return json_data['type'] if protocol == :activitypub
|
|
|
|
|
|
|
|
case xml_root
|
|
|
|
when 'feed'
|
|
|
|
'Person'
|
|
|
|
when 'entry'
|
|
|
|
'Note'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def json_data
|
|
|
|
@_json_data ||= body_to_json(body)
|
|
|
|
end
|
|
|
|
|
2017-05-05 11:26:04 -04:00
|
|
|
def xml_root
|
|
|
|
xml_data.root.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def xml_data
|
|
|
|
@_xml_data ||= Nokogiri::XML(body, nil, 'utf-8')
|
|
|
|
end
|
2017-07-11 18:39:15 -04:00
|
|
|
|
|
|
|
def local_url?
|
|
|
|
TagManager.instance.local_url?(@url)
|
|
|
|
end
|
|
|
|
|
|
|
|
def process_local_url
|
|
|
|
recognized_params = Rails.application.routes.recognize_path(@url)
|
|
|
|
|
|
|
|
return unless recognized_params[:action] == 'show'
|
|
|
|
|
|
|
|
if recognized_params[:controller] == 'stream_entries'
|
|
|
|
status = StreamEntry.find_by(id: recognized_params[:id])&.status
|
|
|
|
check_local_status(status)
|
|
|
|
elsif recognized_params[:controller] == 'statuses'
|
|
|
|
status = Status.find_by(id: recognized_params[:id])
|
|
|
|
check_local_status(status)
|
|
|
|
elsif recognized_params[:controller] == 'accounts'
|
|
|
|
Account.find_local(recognized_params[:username])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_local_status(status)
|
|
|
|
return if status.nil?
|
2018-08-15 13:33:36 -04:00
|
|
|
authorize_with @on_behalf_of, status, :show?
|
|
|
|
status
|
|
|
|
rescue Mastodon::NotPermittedError
|
|
|
|
# Do not disclose the existence of status the user is not authorized to see
|
|
|
|
nil
|
2017-07-11 18:39:15 -04:00
|
|
|
end
|
2017-03-21 21:32:27 -04:00
|
|
|
end
|