2017-07-18 16:39:47 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-19 01:37:26 +02:00
|
|
|
class OStatus::Activity::Base
|
2017-12-06 11:41:57 +01:00
|
|
|
def initialize(xml, account = nil, **options)
|
2017-10-08 17:34:34 +02:00
|
|
|
@xml = xml
|
2017-07-18 16:39:47 +02:00
|
|
|
@account = account
|
2017-10-08 17:34:34 +02:00
|
|
|
@options = options
|
2017-07-18 16:39:47 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def status?
|
|
|
|
[:activity, :note, :comment].include?(type)
|
|
|
|
end
|
|
|
|
|
|
|
|
def verb
|
2017-09-19 18:08:08 +02:00
|
|
|
raw = @xml.at_xpath('./activity:verb', activity: OStatus::TagManager::AS_XMLNS).content
|
|
|
|
OStatus::TagManager::VERBS.key(raw)
|
2017-07-18 16:39:47 +02:00
|
|
|
rescue
|
|
|
|
:post
|
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
2017-09-19 18:08:08 +02:00
|
|
|
raw = @xml.at_xpath('./activity:object-type', activity: OStatus::TagManager::AS_XMLNS).content
|
|
|
|
OStatus::TagManager::TYPES.key(raw)
|
2017-07-18 16:39:47 +02:00
|
|
|
rescue
|
|
|
|
:activity
|
|
|
|
end
|
|
|
|
|
|
|
|
def id
|
2017-09-19 18:08:08 +02:00
|
|
|
@xml.at_xpath('./xmlns:id', xmlns: OStatus::TagManager::XMLNS).content
|
2017-07-18 16:39:47 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def url
|
2017-09-19 18:08:08 +02:00
|
|
|
link = @xml.xpath('./xmlns:link[@rel="alternate"]', xmlns: OStatus::TagManager::XMLNS).find { |link_candidate| link_candidate['type'] == 'text/html' }
|
2017-07-18 16:39:47 +02:00
|
|
|
link.nil? ? nil : link['href']
|
|
|
|
end
|
|
|
|
|
2017-08-18 01:03:18 +02:00
|
|
|
def activitypub_uri
|
2017-09-19 18:08:08 +02:00
|
|
|
link = @xml.xpath('./xmlns:link[@rel="alternate"]', xmlns: OStatus::TagManager::XMLNS).find { |link_candidate| ['application/activity+json', 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'].include?(link_candidate['type']) }
|
2017-08-18 01:03:18 +02:00
|
|
|
link.nil? ? nil : link['href']
|
|
|
|
end
|
|
|
|
|
|
|
|
def activitypub_uri?
|
|
|
|
activitypub_uri.present?
|
|
|
|
end
|
|
|
|
|
2017-07-18 16:39:47 +02:00
|
|
|
private
|
|
|
|
|
|
|
|
def find_status(uri)
|
2017-09-19 18:08:08 +02:00
|
|
|
if OStatus::TagManager.instance.local_id?(uri)
|
|
|
|
local_id = OStatus::TagManager.instance.unique_tag_to_local_id(uri, 'Status')
|
2017-07-18 16:39:47 +02:00
|
|
|
return Status.find_by(id: local_id)
|
2017-08-18 01:03:18 +02:00
|
|
|
elsif ActivityPub::TagManager.instance.local_uri?(uri)
|
|
|
|
local_id = ActivityPub::TagManager.instance.uri_to_local_id(uri)
|
|
|
|
return Status.find_by(id: local_id)
|
2017-07-18 16:39:47 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
Status.find_by(uri: uri)
|
|
|
|
end
|
|
|
|
|
2017-09-01 13:34:04 +02:00
|
|
|
def find_activitypub_status(uri, href)
|
|
|
|
tag_matches = /tag:([^,:]+)[^:]*:objectId=([\d]+)/.match(uri)
|
|
|
|
href_matches = %r{/users/([^/]+)}.match(href)
|
|
|
|
|
|
|
|
unless tag_matches.nil? || href_matches.nil?
|
|
|
|
uri = "https://#{tag_matches[1]}/users/#{href_matches[1]}/statuses/#{tag_matches[2]}"
|
|
|
|
Status.find_by(uri: uri)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-18 16:39:47 +02:00
|
|
|
def redis
|
|
|
|
Redis.current
|
|
|
|
end
|
|
|
|
end
|