fix(LinkCard): skip mastodon.social redirect page

Skips the mastodon.social exclusive link redirect warning page, by
manually replacing the link card link.
This commit is contained in:
FineFindus 2024-06-26 17:33:48 +02:00
parent 0d4158a612
commit 229c0b359f
No known key found for this signature in database
GPG Key ID: 64873EE210FF8E6B
1 changed files with 20 additions and 1 deletions

View File

@ -18,8 +18,12 @@ import org.joinmastodon.android.model.Card;
import org.joinmastodon.android.model.Status;
import org.joinmastodon.android.ui.OutlineProviders;
import org.joinmastodon.android.ui.drawables.BlurhashCrossfadeDrawable;
import org.joinmastodon.android.ui.text.HtmlParser;
import org.joinmastodon.android.ui.text.LinkSpan;
import org.joinmastodon.android.ui.utils.UiUtils;
import java.util.regex.Matcher;
import me.grishka.appkit.imageloader.ImageLoaderViewHolder;
import me.grishka.appkit.imageloader.requests.ImageLoaderRequest;
import me.grishka.appkit.imageloader.requests.UrlImageLoaderRequest;
@ -142,7 +146,22 @@ public class LinkCardStatusDisplayItem extends StatusDisplayItem{
}
private void onClick(View v){
UiUtils.openURL(itemView.getContext(), item.parentFragment.getAccountID(), item.status.card.url);
String url=item.status.card.url;
// Mastodon.social sometimes adds an additional redirect page
// e.g. https://mastodon.social/@GenuineHuman/112683634483993833 (needs to be opened on another server)
// this is really disruptive on mobile, especially since it breaks the loopUp/openURL functionality
if(url.startsWith("https://mastodon.social/redirect/statuses/")){
Uri parsedURL=Uri.parse(url);
Matcher matcher=HtmlParser.URL_PATTERN.matcher(item.status.content);
while(matcher.find() && parsedURL.getLastPathSegment()!=null){
url=matcher.group(3);
if(TextUtils.isEmpty(matcher.group(4)))
url="http://"+url;
if(url.endsWith(parsedURL.getLastPathSegment()))
break;
}
}
UiUtils.openURL(itemView.getContext(), item.parentFragment.getAccountID(), url);
}
}
}