aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Tantau <bjoern-tantau@users.noreply.github.com>2023-01-21 05:03:50 +0000
committerGitHub <noreply@github.com>2023-01-21 05:03:50 +0000
commit116be7ecc2f1d36b01f1c5edd7dc6f2032c688ce (patch)
tree770fc7f2093eed967f8cfca7fb85776853feb290
parent2ff6bcfcd75b1f1f24fa1a2544d928936c653ecc (diff)
downloadinfinity-for-reddit-116be7ecc2f1d36b01f1c5edd7dc6f2032c688ce.tar
infinity-for-reddit-116be7ecc2f1d36b01f1c5edd7dc6f2032c688ce.tar.gz
infinity-for-reddit-116be7ecc2f1d36b01f1c5edd7dc6f2032c688ce.tar.bz2
infinity-for-reddit-116be7ecc2f1d36b01f1c5edd7dc6f2032c688ce.tar.lz
infinity-for-reddit-116be7ecc2f1d36b01f1c5edd7dc6f2032c688ce.tar.xz
infinity-for-reddit-116be7ecc2f1d36b01f1c5edd7dc6f2032c688ce.tar.zst
infinity-for-reddit-116be7ecc2f1d36b01f1c5edd7dc6f2032c688ce.zip
Handle image posts if url contains query string (#1300)
* Handle image posts if url contains query string Sometimes the URL to an image contains a query string, which results in Infinity showing a link instead of the image. Example: https://www.reddit.com/r/ProgrammerHumor/comments/zxsf93/like_why_the_hell_does_windows_news_leak/ * Check path for file ending instead of using regex
-rw-r--r--app/src/main/java/ml/docilealligator/infinityforreddit/post/ParsePost.java26
1 files changed, 11 insertions, 15 deletions
diff --git a/app/src/main/java/ml/docilealligator/infinityforreddit/post/ParsePost.java b/app/src/main/java/ml/docilealligator/infinityforreddit/post/ParsePost.java
index 8afc0e58..27ef3385 100644
--- a/app/src/main/java/ml/docilealligator/infinityforreddit/post/ParsePost.java
+++ b/app/src/main/java/ml/docilealligator/infinityforreddit/post/ParsePost.java
@@ -262,6 +262,8 @@ public class ParsePost {
boolean isVideo = data.getBoolean(JSONUtils.IS_VIDEO_KEY);
String url = Html.fromHtml(data.getString(JSONUtils.URL_KEY)).toString();
+ Uri uri = Uri.parse(url);
+ String path = uri.getPath();
if (!data.has(JSONUtils.PREVIEW_KEY) && previews.isEmpty()) {
if (url.contains(permalink)) {
@@ -272,7 +274,7 @@ public class ParsePost {
voteType, nComments, upvoteRatio, flair, awards, nAwards, hidden, spoiler, nsfw,
stickied, archived, locked, saved, isCrosspost, distinguished);
} else {
- if (url.endsWith("jpg") || url.endsWith("png") || url.endsWith("jpeg")) {
+ if (path.endsWith(".jpg") || path.endsWith(".png") || path.endsWith(".jpeg")) {
//Image post
int postType = Post.IMAGE_TYPE;
@@ -313,7 +315,6 @@ public class ParsePost {
post.setSelfText(Utils.modifyMarkdown(Utils.trimTrailingWhitespace(data.getString(JSONUtils.SELFTEXT_KEY))));
}
- Uri uri = Uri.parse(url);
String authority = uri.getAuthority();
if (authority != null) {
@@ -379,11 +380,10 @@ public class ParsePost {
} else if (data.has(JSONUtils.PREVIEW_KEY)) {
if (data.getJSONObject(JSONUtils.PREVIEW_KEY).has(JSONUtils.REDDIT_VIDEO_PREVIEW_KEY)) {
int postType = Post.VIDEO_TYPE;
- Uri uri = Uri.parse(url);
String authority = uri.getAuthority();
// The hls stream inside REDDIT_VIDEO_PREVIEW_KEY can sometimes lack an audio track
- if (authority.contains("imgur.com") && (url.endsWith(".gifv") || url.endsWith(".mp4"))) {
- if (url.endsWith("gifv")) {
+ if (authority.contains("imgur.com") && (path.endsWith(".gifv") || path.endsWith(".mp4"))) {
+ if (path.endsWith(".gifv")) {
url = url.substring(0, url.length() - 5) + ".mp4";
}
@@ -412,7 +412,7 @@ public class ParsePost {
post.setVideoDownloadUrl(videoDownloadUrl);
}
} else {
- if (url.endsWith("jpg") || url.endsWith("png")) {
+ if (path.endsWith(".jpg") || path.endsWith(".png") || path.endsWith(".jpeg")) {
//Image post
int postType = Post.IMAGE_TYPE;
@@ -426,7 +426,7 @@ public class ParsePost {
previews.add(new Post.Preview(url, 0, 0, "", ""));
}
post.setPreviews(previews);
- } else if (url.endsWith("gif")) {
+ } else if (path.endsWith(".gif")) {
//Gif post
int postType = Post.GIF_TYPE;
post = new Post(id, fullName, subredditName, subredditNamePrefixed, author,
@@ -437,7 +437,7 @@ public class ParsePost {
post.setPreviews(previews);
post.setVideoUrl(url);
- } else if (Uri.parse(url).getAuthority().contains("imgur.com") && (url.endsWith("gifv") || url.endsWith("mp4"))) {
+ } else if (uri.getAuthority().contains("imgur.com") && (path.endsWith(".gifv") || path.endsWith(".mp4"))) {
// Imgur gifv/mp4
int postType = Post.VIDEO_TYPE;
@@ -454,7 +454,7 @@ public class ParsePost {
post.setVideoUrl(url);
post.setVideoDownloadUrl(url);
post.setIsImgur(true);
- } else if (url.endsWith("mp4")) {
+ } else if (path.endsWith(".mp4")) {
//Video post
int postType = Post.VIDEO_TYPE;
@@ -496,7 +496,6 @@ public class ParsePost {
post.setPreviews(previews);
- Uri uri = Uri.parse(url);
String authority = uri.getAuthority();
if (authority != null) {
@@ -524,7 +523,7 @@ public class ParsePost {
}
}
} else {
- if (url.endsWith("jpg") || url.endsWith("png")) {
+ if (path.endsWith(".jpg") || path.endsWith(".png") || path.endsWith(".jpeg")) {
//Image post
int postType = Post.IMAGE_TYPE;
@@ -537,7 +536,7 @@ public class ParsePost {
previews.add(new Post.Preview(url, 0, 0, "", ""));
}
post.setPreviews(previews);
- } else if (url.endsWith("mp4")) {
+ } else if (path.endsWith(".mp4")) {
//Video post
int postType = Post.VIDEO_TYPE;
@@ -563,7 +562,6 @@ public class ParsePost {
post.setSelfText(Utils.modifyMarkdown(Utils.trimTrailingWhitespace(data.getString(JSONUtils.SELFTEXT_KEY))));
}
- Uri uri = Uri.parse(url);
String authority = uri.getAuthority();
if (authority != null) {
@@ -593,7 +591,6 @@ public class ParsePost {
if (post.getPostType() == Post.VIDEO_TYPE) {
try {
- Uri uri = Uri.parse(url);
String authority = uri.getAuthority();
if (authority != null) {
if (authority.contains("gfycat.com")) {
@@ -676,7 +673,6 @@ public class ParsePost {
post.setPreviews(previews);
}
} else if (post.getPostType() == Post.LINK_TYPE) {
- Uri uri = Uri.parse(url);
String authority = uri.getAuthority();
if (authority != null) {