Remove the `preview_urls` method from strategies. The only place this was used was when doing IQDB searches, to download the thumbnail image from the source instead of the full image. This wasn't worth it for a few reasons: * Thumbnails on other sites are sometimes not the size we want, which could affect IQDB results. * Grabbing thumbnails is complex for some sites. You can't always just rewrite the image URL. Sometimes it requires extra API calls, which can be slower than just grabbing the full image. * For videos and animations, thumbnails from other sites don't always match our thumbnails. We do smart thumbnail generation to try to avoid blank thumbnails, which means we don't always pick the first frame, which could affect IQDB results. API changes: * /iqdb_queries?search[file_url] now downloads the URL as is without any modification. Before it tried to change thumbnail and sample size image URLs to the full version. * /iqdb_queries?search[url] now returns an error if the URL is for a HTML page that contains multiple images. Before it would grab only the first image and silently ignore the rest.
124 lines
3.2 KiB
Ruby
124 lines
3.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# @see Source::URL::NicoSeiga
|
|
module Sources
|
|
module Strategies
|
|
class NicoSeiga < Base
|
|
def self.enabled?
|
|
Danbooru.config.nico_seiga_user_session.present?
|
|
end
|
|
|
|
def match?
|
|
Source::URL::NicoSeiga === parsed_url
|
|
end
|
|
|
|
def site_name
|
|
parsed_url.site_name
|
|
end
|
|
|
|
def image_urls
|
|
if image_id.present?
|
|
[image_url_for("https://seiga.nicovideo.jp/image/source/#{image_id}")]
|
|
elsif illust_id.present?
|
|
[image_url_for("https://seiga.nicovideo.jp/image/source/#{illust_id}")]
|
|
elsif manga_id.present? && api_client.image_ids.present?
|
|
api_client.image_ids.map { |id| image_url_for("https://seiga.nicovideo.jp/image/source/#{id}") }
|
|
else
|
|
[image_url_for(url)]
|
|
end
|
|
end
|
|
|
|
def image_url_for(url)
|
|
return url if api_client.blank?
|
|
|
|
resp = api_client.head(url)
|
|
if resp.uri.to_s =~ %r{https?://.+/(\w+/\d+/\d+)\z}i
|
|
"https://lohas.nicoseiga.jp/priv/#{$1}"
|
|
else
|
|
url
|
|
end
|
|
end
|
|
|
|
def page_url
|
|
# XXX what if referer isn't from NicoSeiga?
|
|
parsed_referer&.page_url || parsed_url.page_url
|
|
end
|
|
|
|
def profile_url
|
|
user_id = api_client&.user_id
|
|
return if user_id.blank? # artists can be anonymous
|
|
|
|
"https://seiga.nicovideo.jp/user/illust/#{api_client.user_id}"
|
|
end
|
|
|
|
def artist_name
|
|
return if api_client.blank?
|
|
api_client.user_name
|
|
end
|
|
|
|
def artist_commentary_title
|
|
return if api_client.blank?
|
|
api_client.title
|
|
end
|
|
|
|
def artist_commentary_desc
|
|
return if api_client.blank?
|
|
api_client.description
|
|
end
|
|
|
|
def dtext_artist_commentary_desc
|
|
DText.from_html(artist_commentary_desc) do |element|
|
|
if element.name == "font" && element["color"] == "white"
|
|
element.content = "[spoiler]#{element.content}[/spoiler]"
|
|
end
|
|
end.gsub(/[^\w]im(\d+)/, ' seiga #\1 ').chomp
|
|
end
|
|
|
|
def normalize_for_source
|
|
page_url
|
|
end
|
|
|
|
def tag_name
|
|
return if api_client&.user_id.blank?
|
|
"nicoseiga#{api_client.user_id}"
|
|
end
|
|
|
|
def tags
|
|
return [] if api_client.blank?
|
|
|
|
base_url = "https://seiga.nicovideo.jp/"
|
|
base_url += "manga/" if manga_id.present?
|
|
base_url += "tag/"
|
|
|
|
api_client.tags.map do |name|
|
|
[name, base_url + CGI.escape(name)]
|
|
end
|
|
end
|
|
|
|
def image_id
|
|
parsed_url.image_id || parsed_referer&.image_id
|
|
end
|
|
|
|
def illust_id
|
|
parsed_url.illust_id || parsed_referer&.illust_id
|
|
end
|
|
|
|
def manga_id
|
|
parsed_url.manga_id || parsed_referer&.manga_id
|
|
end
|
|
|
|
def api_client
|
|
if illust_id.present?
|
|
NicoSeigaApiClient.new(work_id: illust_id, type: "illust", http: http)
|
|
elsif manga_id.present?
|
|
NicoSeigaApiClient.new(work_id: manga_id, type: "manga", http: http)
|
|
elsif image_id.present?
|
|
# We default to illust to attempt getting the api anyway
|
|
NicoSeigaApiClient.new(work_id: image_id, type: "illust", http: http)
|
|
end
|
|
end
|
|
memoize :api_client
|
|
end
|
|
end
|
|
end
|