@@ -5,6 +5,7 @@ module Sources
|
||||
Strategies::Pixiv,
|
||||
Strategies::NicoSeiga,
|
||||
Strategies::Twitter,
|
||||
Strategies::Stash, # must come before DeviantArt
|
||||
Strategies::DeviantArt,
|
||||
Strategies::Tumblr,
|
||||
Strategies::ArtStation,
|
||||
|
||||
@@ -86,33 +86,26 @@ module Sources
|
||||
# work is private, deleted, or the url didn't contain a deviation id; use image url as given by user.
|
||||
if api_deviation.blank?
|
||||
url
|
||||
elsif api_deviation[:isDownloadable]
|
||||
api_client.download_url
|
||||
elsif api_deviation[:is_downloadable]
|
||||
api_download[:src]
|
||||
elsif api_deviation[:flash].present?
|
||||
api_deviation.dig(:flash, :src)
|
||||
elsif api_deviation[:videos].present?
|
||||
api_deviation[:videos].max_by { |x| x[:filesize] }[:src]
|
||||
else
|
||||
media = api_deviation[:media]
|
||||
token = media[:token].first
|
||||
fullview = media[:types].find { |data| data[:t] == "fullview" && data[:c].present? }
|
||||
|
||||
if fullview.present?
|
||||
op = fullview[:c].gsub('<prettyName>', media[:prettyName])
|
||||
src = "#{media[:baseUri]}/#{op}?token=#{token}"
|
||||
else
|
||||
src = "#{media[:baseUri]}?token=#{token}"
|
||||
src = api_deviation.dig(:content, :src)
|
||||
if deviation_id && deviation_id.to_i <= 790677560 && src =~ /^https:\/\/images-wixmp-/ && src !~ /\.gif\?/
|
||||
src = src.sub(%r!(/f/[a-f0-9-]+/[a-f0-9-]+)!, '/intermediary\1')
|
||||
src = src.sub(%r!/v1/(fit|fill)/.*\z!i, "")
|
||||
end
|
||||
|
||||
if deviation_id && deviation_id.to_i <= 790677560 && src =~ /\Ahttps:\/\/images-wixmp-/i
|
||||
src = src.gsub(%r!(/f/[a-f0-9-]+/[a-f0-9-]+)!, '/intermediary\1')
|
||||
src = src.gsub(%r!/v1/(fit|fill)/.*\z!i, "")
|
||||
end
|
||||
|
||||
src = src.gsub(%r!\Ahttps?://orig\d+\.deviantart\.net!i, "http://origin-orig.deviantart.net")
|
||||
src = src.sub(%r!\Ahttps?://orig\d+\.deviantart\.net!i, "http://origin-orig.deviantart.net")
|
||||
src = src.gsub(%r!q_\d+,strp!, "q_100")
|
||||
src
|
||||
end
|
||||
end
|
||||
|
||||
def page_url
|
||||
if api_deviation[:url].present?
|
||||
if api_deviation.present?
|
||||
api_deviation[:url]
|
||||
elsif deviation_id.present?
|
||||
page_url_from_image_url
|
||||
@@ -143,7 +136,7 @@ module Sources
|
||||
def artist_name
|
||||
if artist_name_from_url.present?
|
||||
artist_name_from_url
|
||||
elsif api_deviation.dig(:author, :username).present?
|
||||
elsif api_metadata.present?
|
||||
api_metadata.dig(:author, :username)
|
||||
else
|
||||
nil
|
||||
@@ -151,12 +144,11 @@ module Sources
|
||||
end
|
||||
|
||||
def artist_commentary_title
|
||||
api_deviation[:title]
|
||||
api_metadata[:title]
|
||||
end
|
||||
|
||||
def artist_commentary_desc
|
||||
return nil unless api_deviation.dig(:extended, :description).present?
|
||||
api_deviation.dig(:extended, :description)
|
||||
api_metadata[:description]
|
||||
end
|
||||
|
||||
def normalized_for_artist_finder?
|
||||
@@ -172,10 +164,12 @@ module Sources
|
||||
end
|
||||
|
||||
def tags
|
||||
return [] unless api_deviation.dig(:extended, :tags).present?
|
||||
if api_metadata.blank?
|
||||
return []
|
||||
end
|
||||
|
||||
api_deviation.dig(:extended, :tags).map do |tag|
|
||||
[tag[:name], tag[:url]]
|
||||
api_metadata[:tags].map do |tag|
|
||||
[tag[:tag_name], "https://www.deviantart.com/tag/#{tag[:tag_name]}"]
|
||||
end
|
||||
end
|
||||
|
||||
@@ -251,19 +245,70 @@ module Sources
|
||||
self.class.title_from_url(url) || self.class.title_from_url(referer_url)
|
||||
end
|
||||
|
||||
def api_client
|
||||
@api_client ||= DeviantArtApiClient.new(deviation_id)
|
||||
def page
|
||||
return nil if page_url_from_image_url.blank?
|
||||
|
||||
resp = Danbooru::Http.cache(1.minute).get(page_url_from_image_url, follow: {max_hops: 1})
|
||||
|
||||
if resp.status.success?
|
||||
Nokogiri::HTML(resp.body.to_s)
|
||||
# the work was deleted
|
||||
elsif resp.code == 404
|
||||
nil
|
||||
else
|
||||
raise "failed to fetch page (got code #{resp.code})"
|
||||
end
|
||||
end
|
||||
memoize :page
|
||||
|
||||
# Scrape UUID from <meta property="da:appurl" content="DeviantArt://deviation/12F08C5D-A3A4-338C-2F1A-7E4E268C0E8B">
|
||||
# For hidden or deleted works the UUID will be nil.
|
||||
def uuid
|
||||
return nil if page.nil?
|
||||
meta = page.at_css('meta[property="da:appurl"]')
|
||||
return nil if meta.nil?
|
||||
|
||||
appurl = meta["content"]
|
||||
uuid = appurl[%r!\ADeviantArt://deviation/(.*)\z!, 1]
|
||||
uuid
|
||||
end
|
||||
memoize :uuid
|
||||
|
||||
def api_client
|
||||
api_client = DeviantArtApiClient.new(
|
||||
Danbooru.config.deviantart_client_id,
|
||||
Danbooru.config.deviantart_client_secret
|
||||
)
|
||||
api_client.access_token = Cache.get("da-access-token", 11.weeks) do
|
||||
api_client.access_token.to_hash
|
||||
end
|
||||
api_client
|
||||
end
|
||||
memoize :api_client
|
||||
|
||||
def api_deviation
|
||||
api_client.extended_fetch_json[:deviation] || {}
|
||||
return {} if uuid.nil?
|
||||
api_client.deviation(uuid)
|
||||
end
|
||||
memoize :api_deviation
|
||||
|
||||
def api_metadata
|
||||
return {} if uuid.nil?
|
||||
api_client.metadata(uuid)[:metadata].first
|
||||
end
|
||||
memoize :api_metadata
|
||||
|
||||
def api_download
|
||||
return {} unless uuid.present? && api_deviation[:is_downloadable]
|
||||
api_client.download(uuid)
|
||||
end
|
||||
memoize :api_download
|
||||
|
||||
def api_response
|
||||
{
|
||||
code: api_client.extended_fetch.code,
|
||||
headers: api_client.extended_fetch.headers.to_h,
|
||||
body: api_client.extended_fetch_json
|
||||
deviation: api_deviation,
|
||||
metadata: api_metadata,
|
||||
download: api_download
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
55
app/logical/sources/strategies/stash.rb
Normal file
55
app/logical/sources/strategies/stash.rb
Normal file
@@ -0,0 +1,55 @@
|
||||
# Page URLs:
|
||||
# * https://sta.sh/0wxs31o7nn2 (single image)
|
||||
# * https://sta.sh/21leo8mz87ue (folder)
|
||||
#
|
||||
# Image URLs:
|
||||
# * https://orig00.deviantart.net/0fd2/f/2018/252/9/c/a_pepe_by_noizave-dcmga0s.png
|
||||
#
|
||||
# Ref:
|
||||
# * https://github.com/danbooru/danbooru/issues/3877
|
||||
# * https://www.deviantartsupport.com/en/article/what-is-stash-3391708
|
||||
# * https://www.deviantart.com/developers/http/v1/20160316/stash_item/4662dd8b10e336486ea9a0b14da62b74
|
||||
#
|
||||
module Sources
|
||||
module Strategies
|
||||
class Stash < DeviantArt
|
||||
STASH = %r{\Ahttps?://sta\.sh/(?<post_id>[0-9a-zA-Z]+)}i
|
||||
|
||||
def domains
|
||||
["deviantart.net", "sta.sh"]
|
||||
end
|
||||
|
||||
def match?
|
||||
parsed_urls.map(&:domain).any?("sta.sh")
|
||||
end
|
||||
|
||||
def site_name
|
||||
"Sta.sh"
|
||||
end
|
||||
|
||||
def canonical_url
|
||||
page_url
|
||||
end
|
||||
|
||||
def page_url
|
||||
page_url_from_image_url
|
||||
end
|
||||
|
||||
def page_url_from_image_url
|
||||
"https://sta.sh/#{stash_id}"
|
||||
end
|
||||
|
||||
def self.stash_id_from_url(url)
|
||||
if url =~ STASH
|
||||
$~[:post_id].downcase
|
||||
else
|
||||
nil
|
||||
end
|
||||
end
|
||||
|
||||
def stash_id
|
||||
[url, referer_url].map { |x| self.class.stash_id_from_url(x) }.compact.first
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user