From f3e8bc9f8f6007b7bddc230be9c2ec865b5cb75e Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Sun, 11 Jun 2017 17:41:59 +0900 Subject: Refactor UpdateRemoteProfileService (#3690) --- app/models/remote_profile.rb | 53 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 app/models/remote_profile.rb (limited to 'app/models') diff --git a/app/models/remote_profile.rb b/app/models/remote_profile.rb new file mode 100644 index 000000000..93c759930 --- /dev/null +++ b/app/models/remote_profile.rb @@ -0,0 +1,53 @@ +# frozen_string_literal: true + +class RemoteProfile + include ActiveModel::Model + + attr_reader :document + + def initialize(body) + @document = Nokogiri::XML.parse(body, nil, 'utf-8') + end + + def root + @root ||= document.at_xpath('/atom:feed|/atom:entry', atom: TagManager::XMLNS) + end + + def author + @author ||= root.at_xpath('./atom:author|./dfrn:owner', atom: TagManager::XMLNS, dfrn: TagManager::DFRN_XMLNS) + end + + def hub_link + @hub_link ||= link_href_from_xml(root, 'hub') + end + + def display_name + @display_name ||= author.at_xpath('./poco:displayName', poco: TagManager::POCO_XMLNS)&.content + end + + def note + @note ||= author.at_xpath('./atom:summary|./poco:note', atom: TagManager::XMLNS, poco: TagManager::POCO_XMLNS)&.content + end + + def scope + @scope ||= author.at_xpath('./mastodon:scope', mastodon: TagManager::MTDN_XMLNS)&.content + end + + def avatar + @avatar ||= link_href_from_xml(author, 'avatar') + end + + def header + @header ||= link_href_from_xml(author, 'header') + end + + def locked? + scope == 'private' + end + + private + + def link_href_from_xml(xml, type) + xml.at_xpath(%(./atom:link[@rel="#{type}"]/@href), atom: TagManager::XMLNS)&.content + end +end -- cgit