Reddit: support user galleries and embedded images

This commit is contained in:
nonamethanks
2022-11-05 15:43:38 +01:00
committed by N. Oname
parent f083f29c3b
commit 0a78a6188d
3 changed files with 31 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ module Source
if parsed_url&.full_image_url.present?
[parsed_url.full_image_url]
elsif data.present?
images = [data.dig("media", "resolutions", 0, "url")].compact
images = [data.dig("media", "content")].compact
images += ordered_gallery_images
images.compact.uniq.map { |i| Source::URL.parse(i)&.full_image_url }.compact
else
@@ -30,7 +30,7 @@ module Source
def profile_url
return nil if artist_name.blank?
"https://reddit.com/user/#{artist_name}"
"https://www.reddit.com/user/#{artist_name}"
end
def page_url

View File

@@ -18,11 +18,18 @@ module Source
@file = file
# https://external-preview.redd.it/92G2gkb545UNlA-PywJqM_F-4TT0xngvmf_gb9sFDqk.jpg?auto=webp&s=0f1e3d0603dbaabe1ead7352202d0de1653d76f6
# https://external-preview.redd.it/VlT1G4JoqAmP_7DG5UKRCJP8eTRef7dCrRvu2ABm_Xg.png?width=1080&crop=smart&auto=webp&s=d074e9cbfcb2780e6ec0d948daff3cadc91c2a50
# https://g.redditmedia.com/f-OWw5C5aVumPS4HXVFhTspgzgQB4S77mO-6ad0rzpg.gif?fm=mp4&mp4-fragmented=false&s=ed3d767bf3b0360a50ddd7f503d46225
# https://i.redditmedia.com/9cYFBDQ3QsqWnF9v7EhW5uOcQNHz1Ak9_E1zVNeSLek.png?s=6fee1bb56e7d926847dc3ece01a1ffd4
in *rest if image_url?
# pass
# https://www.reddit.com/user/blank_page_drawings/comments/nfjz0d/a_sleepy_orc/
in _, "reddit.com", ("user" | "u"), username, "comments", work_id, title
@username = username
@work_id = work_id
@title = title
# https://www.reddit.com/user/xSlimes
# https://www.reddit.com/u/Valshier
in _, "reddit.com", ("user" | "u"), username
@@ -66,6 +73,8 @@ module Source
def page_url
if subreddit.present? && work_id.present? && title.present?
"https://www.reddit.com/r/#{subreddit}/comments/#{work_id}/#{title}"
elsif username.present? && work_id.present? && title.present?
"https://www.reddit.com/user/#{username}/comments/#{work_id}/#{title}"
elsif subreddit.present? && work_id.present?
"https://www.reddit.com/r/#{subreddit}/comments/#{work_id}"
elsif work_id.present?