2017-07-18 14:39:47 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-18 23:37:26 +00:00
|
|
|
class OStatus::Activity::Base
|
2017-07-18 14:39:47 +00:00
|
|
|
def initialize(xml, account = nil)
|
|
|
|
@xml = xml
|
|
|
|
@account = account
|
|
|
|
end
|
|
|
|
|
|
|
|
def status?
|
|
|
|
[:activity, :note, :comment].include?(type)
|
|
|
|
end
|
|
|
|
|
|
|
|
def verb
|
|
|
|
raw = @xml.at_xpath('./activity:verb', activity: TagManager::AS_XMLNS).content
|
|
|
|
TagManager::VERBS.key(raw)
|
|
|
|
rescue
|
|
|
|
:post
|
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
|
|
|
raw = @xml.at_xpath('./activity:object-type', activity: TagManager::AS_XMLNS).content
|
|
|
|
TagManager::TYPES.key(raw)
|
|
|
|
rescue
|
|
|
|
:activity
|
|
|
|
end
|
|
|
|
|
|
|
|
def id
|
|
|
|
@xml.at_xpath('./xmlns:id', xmlns: TagManager::XMLNS).content
|
|
|
|
end
|
|
|
|
|
|
|
|
def url
|
2017-08-17 23:03:18 +00:00
|
|
|
link = @xml.xpath('./xmlns:link[@rel="alternate"]', xmlns: TagManager::XMLNS).find { |link_candidate| link_candidate['type'] == 'text/html' }
|
2017-07-18 14:39:47 +00:00
|
|
|
link.nil? ? nil : link['href']
|
|
|
|
end
|
|
|
|
|
2017-08-17 23:03:18 +00:00
|
|
|
def activitypub_uri
|
|
|
|
link = @xml.xpath('./xmlns:link[@rel="alternate"]', xmlns: TagManager::XMLNS).find { |link_candidate| ['application/activity+json', 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'].include?(link_candidate['type']) }
|
|
|
|
link.nil? ? nil : link['href']
|
|
|
|
end
|
|
|
|
|
|
|
|
def activitypub_uri?
|
|
|
|
activitypub_uri.present?
|
|
|
|
end
|
|
|
|
|
2017-07-18 14:39:47 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def find_status(uri)
|
|
|
|
if TagManager.instance.local_id?(uri)
|
|
|
|
local_id = TagManager.instance.unique_tag_to_local_id(uri, 'Status')
|
|
|
|
return Status.find_by(id: local_id)
|
2017-08-17 23:03:18 +00: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 14:39:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
Status.find_by(uri: uri)
|
|
|
|
end
|
|
|
|
|
|
|
|
def redis
|
|
|
|
Redis.current
|
|
|
|
end
|
|
|
|
end
|