tumblr: fetch tags, commentary, and image urls.
This commit is contained in:
@@ -140,8 +140,8 @@ module Downloads
|
|||||||
def set_source_to_referer(src, referer)
|
def set_source_to_referer(src, referer)
|
||||||
if Sources::Strategies::Nijie.url_match?(src) ||
|
if Sources::Strategies::Nijie.url_match?(src) ||
|
||||||
Sources::Strategies::Twitter.url_match?(src) ||
|
Sources::Strategies::Twitter.url_match?(src) ||
|
||||||
Sources::Strategies::Tumblr.url_match?(src) ||
|
|
||||||
Sources::Strategies::Pawoo.url_match?(src) ||
|
Sources::Strategies::Pawoo.url_match?(src) ||
|
||||||
|
Sources::Strategies::Tumblr.url_match?(src) || Sources::Strategies::Tumblr.url_match?(referer)
|
||||||
Sources::Strategies::ArtStation.url_match?(src) || Sources::Strategies::ArtStation.url_match?(referer)
|
Sources::Strategies::ArtStation.url_match?(src) || Sources::Strategies::ArtStation.url_match?(referer)
|
||||||
strategy = Sources::Site.new(src, :referer_url => referer)
|
strategy = Sources::Site.new(src, :referer_url => referer)
|
||||||
strategy.referer_url
|
strategy.referer_url
|
||||||
|
|||||||
@@ -1,28 +1,130 @@
|
|||||||
module Sources::Strategies
|
module Sources::Strategies
|
||||||
class Tumblr < Base
|
class Tumblr < Base
|
||||||
|
extend Memoist
|
||||||
|
|
||||||
def self.url_match?(url)
|
def self.url_match?(url)
|
||||||
url =~ %r{^https?://.+\.tumblr\.com/(?:\w+/)?(?:tumblr_)?(\w+_)(\d+)\..+$} || url =~ %r{^https?://[^.]+\.tumblr\.com/(?:post|image)/\d+}
|
blog_name, post_id = parse_info_from_url(url)
|
||||||
|
blog_name.present? && post_id.present?
|
||||||
end
|
end
|
||||||
|
|
||||||
def referer_url
|
def referer_url
|
||||||
if @referer_url =~ %r{^https?://[^.]+\.tumblr\.com/post/\d+} && @url =~ %r{^https?://.+\.tumblr\.com/(?:\w+/)?(?:tumblr_)?(\w+_)(\d+)\..+$}
|
blog_name, post_id = self.class.parse_info_from_url(normalized_url)
|
||||||
@referer_url
|
"https://#{blog_name}.tumblr.com/post/#{post_id}"
|
||||||
elsif @referer_url =~ %r{^https?://[^.]+\.tumblr\.com/image/\d+} && @url =~ %r{^https?://.+\.tumblr\.com/(?:\w+/)?(?:tumblr_)?(\w+_)(\d+)\..+$}
|
|
||||||
@referer_url.sub("/image/", "/post/")
|
|
||||||
else
|
|
||||||
@url
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def tags
|
def tags
|
||||||
[]
|
post[:tags].map do |tag|
|
||||||
|
# normalize tags: space, underscore, and hyphen are equivalent in tumblr tags.
|
||||||
|
[tag.tr(" _-", "_"), "https://tumblr.com/tagged/#{CGI::escape(tag.tr(" _-", "-"))}"]
|
||||||
|
end.uniq
|
||||||
end
|
end
|
||||||
|
|
||||||
def site_name
|
def site_name
|
||||||
"Tumblr"
|
"Tumblr"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def profile_url
|
||||||
|
"https://#{artist_name}.tumblr.com/"
|
||||||
|
end
|
||||||
|
|
||||||
|
def artist_name
|
||||||
|
post[:blog_name]
|
||||||
|
end
|
||||||
|
|
||||||
|
def artist_commentary_title
|
||||||
|
case post[:type]
|
||||||
|
when "text", "link"
|
||||||
|
post[:title]
|
||||||
|
else
|
||||||
|
nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def artist_commentary_desc
|
||||||
|
case post[:type]
|
||||||
|
when "text"
|
||||||
|
post[:body]
|
||||||
|
when "link"
|
||||||
|
post[:description]
|
||||||
|
when "photo", "video"
|
||||||
|
post[:caption]
|
||||||
|
else
|
||||||
|
nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def image_url
|
||||||
|
image_urls.first
|
||||||
|
end
|
||||||
|
|
||||||
|
def image_urls
|
||||||
|
urls = case post[:type]
|
||||||
|
when "photo"
|
||||||
|
post[:photos].map do |photo|
|
||||||
|
self.class.normalize_image_url(photo[:original_size][:url])
|
||||||
|
end
|
||||||
|
when "video"
|
||||||
|
[post[:video_url]]
|
||||||
|
else
|
||||||
|
[]
|
||||||
|
end
|
||||||
|
|
||||||
|
urls += self.class.parse_inline_images(artist_commentary_desc)
|
||||||
|
urls
|
||||||
|
end
|
||||||
|
|
||||||
def get
|
def get
|
||||||
end
|
end
|
||||||
|
|
||||||
|
module HelperMethods
|
||||||
|
extend ActiveSupport::Concern
|
||||||
|
|
||||||
|
module ClassMethods
|
||||||
|
def parse_info_from_url(url)
|
||||||
|
url =~ %r!\Ahttps?://(?<blog_name>[^.]+)\.tumblr\.com/(?:post|image)/(?<post_id>\d+)!i
|
||||||
|
[$1, $2]
|
||||||
|
end
|
||||||
|
|
||||||
|
def parse_inline_images(text)
|
||||||
|
html = Nokogiri::HTML.fragment(text)
|
||||||
|
image_urls = html.css("img").map { |node| node["src"] }
|
||||||
|
image_urls = image_urls.map(&method(:normalize_image_url))
|
||||||
|
image_urls
|
||||||
|
end
|
||||||
|
|
||||||
|
def normalize_image_url(url)
|
||||||
|
url, _, _ = Downloads::RewriteStrategies::Tumblr.new.rewrite(url, {})
|
||||||
|
url
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def normalized_url
|
||||||
|
if self.class.url_match?(@referer_url)
|
||||||
|
@referer_url
|
||||||
|
elsif self.class.url_match?(@url)
|
||||||
|
@url
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
module ApiMethods
|
||||||
|
def client
|
||||||
|
::TumblrApiClient.new(Danbooru.config.tumblr_consumer_key)
|
||||||
|
end
|
||||||
|
|
||||||
|
def api_response
|
||||||
|
blog_name, post_id = self.class.parse_info_from_url(normalized_url)
|
||||||
|
client.posts(blog_name, post_id)
|
||||||
|
end
|
||||||
|
|
||||||
|
def post
|
||||||
|
api_response[:posts].first
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
include ApiMethods
|
||||||
|
include HelperMethods
|
||||||
|
|
||||||
|
memoize :client, :api_response
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -382,6 +382,12 @@ module Danbooru
|
|||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# 1. Register app at https://www.tumblr.com/oauth/register.
|
||||||
|
# 2. Copy "OAuth Consumer Key" from https://www.tumblr.com/oauth/apps.
|
||||||
|
def tumblr_consumer_key
|
||||||
|
nil
|
||||||
|
end
|
||||||
|
|
||||||
def enable_dimension_autotagging
|
def enable_dimension_autotagging
|
||||||
true
|
true
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user