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
|
|
|
|
2018-08-15 13:33:36 -04:00
|
|
|
def call(url, on_behalf_of: nil)
|
2019-07-10 12:59:28 -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
|
|
|
|
2019-07-10 12:59:28 -04:00
|
|
|
if local_url?
|
|
|
|
process_local_url
|
|
|
|
elsif !fetched_resource.nil?
|
|
|
|
process_url
|
2020-03-12 18:06:43 -04:00
|
|
|
else
|
2020-01-02 23:01:45 -05:00
|
|
|
process_url_from_db
|
2019-07-10 12:59:28 -04:00
|
|
|
end
|
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
|
2019-06-26 13:32:36 -04:00
|
|
|
if equals_or_includes_any?(type, ActivityPub::FetchRemoteAccountService::SUPPORTED_TYPES)
|
2019-12-17 07:32:57 -05:00
|
|
|
ActivityPub::FetchRemoteAccountService.new.call(resource_url, prefetched_body: body)
|
2019-06-26 13:32:36 -04:00
|
|
|
elsif equals_or_includes_any?(type, ActivityPub::Activity::Create::SUPPORTED_TYPES + ActivityPub::Activity::Create::CONVERTED_TYPES)
|
2019-12-17 07:32:57 -05:00
|
|
|
status = FetchRemoteStatusService.new.call(resource_url, body)
|
2019-07-14 20:29:04 -04:00
|
|
|
authorize_with @on_behalf_of, status, :show? unless status.nil?
|
|
|
|
status
|
2017-03-21 21:32:27 -04:00
|
|
|
end
|
|
|
|
end
|
2017-05-05 11:26:04 -04:00
|
|
|
|
2020-01-02 23:01:45 -05:00
|
|
|
def process_url_from_db
|
2020-03-12 18:06:43 -04:00
|
|
|
return unless @on_behalf_of.present? && [401, 403, 404].include?(fetch_resource_service.response_code)
|
|
|
|
|
2020-01-02 23:01:45 -05:00
|
|
|
# It may happen that the resource is a private toot, and thus not fetchable,
|
|
|
|
# but we can return the toot if we already know about it.
|
|
|
|
status = Status.find_by(uri: @url) || Status.find_by(url: @url)
|
|
|
|
authorize_with @on_behalf_of, status, :show? unless status.nil?
|
|
|
|
status
|
|
|
|
rescue Mastodon::NotPermittedError
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2019-07-10 12:59:28 -04:00
|
|
|
def fetched_resource
|
2020-03-12 18:06:43 -04:00
|
|
|
@fetched_resource ||= fetch_resource_service.call(@url)
|
|
|
|
end
|
|
|
|
|
|
|
|
def fetch_resource_service
|
|
|
|
@_fetch_resource_service ||= FetchResourceService.new
|
2017-05-05 11:26:04 -04:00
|
|
|
end
|
|
|
|
|
2019-07-10 12:59:28 -04:00
|
|
|
def resource_url
|
|
|
|
fetched_resource.first
|
2017-05-05 11:26:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def body
|
2019-07-10 12:59:28 -04:00
|
|
|
fetched_resource.second[:prefetched_body]
|
2017-05-05 11:26:04 -04:00
|
|
|
end
|
|
|
|
|
2017-08-14 08:08:34 -04:00
|
|
|
def type
|
2019-12-17 07:32:57 -05:00
|
|
|
json_data['type']
|
2017-08-14 08:08:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def json_data
|
2019-07-10 12:59:28 -04:00
|
|
|
@json_data ||= body_to_json(body)
|
2017-05-05 11:26:04 -04:00
|
|
|
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'
|
|
|
|
|
2019-07-07 10:16:51 -04:00
|
|
|
if recognized_params[:controller] == 'statuses'
|
2017-07-11 18:39:15 -04:00
|
|
|
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?
|
2019-07-10 12:59:28 -04:00
|
|
|
|
2018-08-15 13:33:36 -04:00
|
|
|
authorize_with @on_behalf_of, status, :show?
|
|
|
|
status
|
|
|
|
rescue Mastodon::NotPermittedError
|
|
|
|
nil
|
2017-07-11 18:39:15 -04:00
|
|
|
end
|
2017-03-21 21:32:27 -04:00
|
|
|
end
|