Files
danbooru/app/logical/sources/strategies/pawoo.rb
2017-06-19 17:10:02 -05:00

87 lines
2.1 KiB
Ruby

# html page urls:
# https://pawoo.net/@evazion/19451018
# https://pawoo.net/web/statuses/19451018
#
# image urls:
# https://img.pawoo.net/media_attachments/files/001/297/997/small/c4272a09570757c2.png
# https://img.pawoo.net/media_attachments/files/001/297/997/original/c4272a09570757c2.png
# https://pawoo.net/media/lU2uV7C1MMQSb1czwvg
#
# artist urls:
# https://pawoo.net/@evazion
# https://pawoo.net/web/accounts/47806
module Sources::Strategies
class Pawoo < Base
attr_reader :image_urls
def self.url_match?(url)
PawooApiClient::Status.is_match?(url)
end
def referer_url
normalized_url
end
def site_name
"Pawoo"
end
def api_response
@response ||= PawooApiClient.new.get_status(normalized_url)
end
def get
response = api_response
@artist_name = response.account_name
@profile_url = response.account_profile_url
@image_url = response.image_urls.first
@image_urls = response.image_urls
@tags = response.tags
@artist_commentary_title = nil
@artist_commentary_desc = response.commentary
end
def normalized_url
if self.class.url_match?(@url)
@url
elsif self.class.url_match?(@referer_url)
@referer_url
end
end
def normalizable_for_artist_finder?
true
end
def dtext_artist_commentary_desc
to_dtext(artist_commentary_desc)
end
def to_dtext(text)
html = Nokogiri::HTML.fragment(text)
dtext = html.children.map do |element|
case element.name
when "text"
element.content
when "p"
to_dtext(element.inner_html) + "\n\n"
when "a"
# don't include links to the toot itself.
media_urls = api_response.json["media_attachments"].map { |attr| attr["text_url"] }
next if element.attribute("href").value.in?(media_urls)
title = to_dtext(element.inner_html)
url = element.attributes["href"].value
%("#{title}":[#{url}])
else
to_dtext(element.inner_html)
end
end.join.strip
dtext
end
end
end