Merge pull request #4494 from nonamethanks/fix_deviantart_api_downloads
Deviantart: fix api downloads
This commit is contained in:
@@ -81,13 +81,17 @@ module Sources
|
|||||||
["deviantart.net", "deviantart.com", "fav.me"]
|
["deviantart.net", "deviantart.com", "fav.me"]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def wixmp_hosts
|
||||||
|
["images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com", "api-da.wixmp.com"]
|
||||||
|
end
|
||||||
|
|
||||||
def site_name
|
def site_name
|
||||||
"Deviant Art"
|
"Deviant Art"
|
||||||
end
|
end
|
||||||
|
|
||||||
def match?
|
def match?
|
||||||
return false if parsed_url.nil?
|
return false if parsed_url.nil?
|
||||||
parsed_url.domain.in?(domains) || parsed_url.host == "images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com"
|
parsed_url.domain.in?(domains) || parsed_url.host.in?(wixmp_hosts)
|
||||||
end
|
end
|
||||||
|
|
||||||
def image_urls
|
def image_urls
|
||||||
|
|||||||
@@ -244,6 +244,25 @@ module Sources
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "The source for a api-da.wixmp.com image" do
|
||||||
|
setup do
|
||||||
|
@url = "https://api-da.wixmp.com/_api/download/file?downloadToken=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsImV4cCI6MTU5MDkwMTUzMywiaWF0IjoxNTkwOTAwOTIzLCJqdGkiOiI1ZWQzMzhjNWQ5YjI0Iiwib2JqIjpudWxsLCJhdWQiOlsidXJuOnNlcnZpY2U6ZmlsZS5kb3dubG9hZCJdLCJwYXlsb2FkIjp7InBhdGgiOiJcL2ZcL2U0NmE0OGViLTNkMGItNDQ5ZS05MGRjLTBhMWIzMWNiMTM2MVwvZGQzcDF4OS1mYjQ3YmM4Zi02NTNlLTQyYTItYmI0ZC1hZmFmOWZjMmI3ODEuanBnIn19.-zo8E2eDmkmDNCK-sMabBajkaGtVYJ2Q20iVrUtt05Q"
|
||||||
|
@ref = "https://www.deviantart.com/akizero1510/art/Ten-miles-of-cherry-blossoms-792268029"
|
||||||
|
@artist = create(:artist, name: "akizero", url_string: "https://akizero1510.deviantart.com")
|
||||||
|
end
|
||||||
|
|
||||||
|
context "with a referer" do
|
||||||
|
should "work" do
|
||||||
|
@site = Sources::Strategies.find(@url, @ref)
|
||||||
|
|
||||||
|
assert_equal(@ref, @site.page_url)
|
||||||
|
assert_equal(@ref, @site.canonical_url)
|
||||||
|
assert_equal([@artist], @site.artists)
|
||||||
|
assert_nothing_raised { @site.to_h }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
context "The source for a non-downloadable animated gif with id<=790677560" do
|
context "The source for a non-downloadable animated gif with id<=790677560" do
|
||||||
should "return working image url" do
|
should "return working image url" do
|
||||||
@site = Sources::Strategies.find("https://www.deviantart.com/heartgear/art/Silent-Night-579982816")
|
@site = Sources::Strategies.find("https://www.deviantart.com/heartgear/art/Silent-Night-579982816")
|
||||||
|
|||||||
Reference in New Issue
Block a user