Browse Source
Merge pull request #1201 from tcely/issue-1178
Merge pull request #1201 from tcely/issue-1178
Use Uri.parse for IntentUtils.parseUrlrenovate/org.robolectric-robolectric-4.x
Austin Huang
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 37 additions and 54 deletions
@ -1,78 +1,61 @@ |
|||||
package awais.instagrabber.utils; |
package awais.instagrabber.utils; |
||||
|
|
||||
|
import android.net.Uri; |
||||
import android.text.TextUtils; |
import android.text.TextUtils; |
||||
|
|
||||
import androidx.annotation.NonNull; |
import androidx.annotation.NonNull; |
||||
import androidx.annotation.Nullable; |
import androidx.annotation.Nullable; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
import awais.instagrabber.models.IntentModel; |
import awais.instagrabber.models.IntentModel; |
||||
import awais.instagrabber.models.enums.IntentModelType; |
import awais.instagrabber.models.enums.IntentModelType; |
||||
|
|
||||
public final class IntentUtils { |
public final class IntentUtils { |
||||
|
|
||||
@Nullable |
@Nullable |
||||
public static IntentModel parseUrl(@NonNull String url) { |
|
||||
if (url.contains("instagr.am/")) { |
|
||||
url = url.replaceFirst("s?://(?:www\\.)?instagr\\.am/", "s://www.instagram.com/"); |
|
||||
|
public static IntentModel parseUrl(@NonNull final String url) { |
||||
|
final Uri parsedUrl = Uri.parse(url).normalizeScheme(); |
||||
|
|
||||
|
// final String domain = parsedUrl.getHost().replaceFirst("^www\\.", ""); |
||||
|
// final boolean isHttpsUri = "https".equals(parsedUrl.getScheme()); |
||||
|
|
||||
|
final List<String> paths = parsedUrl.getPathSegments(); |
||||
|
|
||||
|
if (paths.isEmpty()) { |
||||
|
return null; |
||||
} |
} |
||||
final int wwwDel = url.contains("www.") ? 4 : 0; |
|
||||
final boolean isHttps = url.startsWith("https"); |
|
||||
|
|
||||
|
String path = paths.get(0); |
||||
|
String text = null; |
||||
IntentModelType type = IntentModelType.UNKNOWN; |
IntentModelType type = IntentModelType.UNKNOWN; |
||||
if (url.contains("instagram.com/")) { |
|
||||
url = url.substring((isHttps ? 22 : 21) + wwwDel); |
|
||||
|
|
||||
// final char firstChar = url.charAt(0); |
|
||||
if (url.startsWith("p/") || url.startsWith("reel/") || url.startsWith("tv/")) { |
|
||||
url = url.substring(url.startsWith("p/") ? 2 : (url.startsWith("tv/") ? 3 : 5)); |
|
||||
type = IntentModelType.POST; |
|
||||
} else if (url.startsWith("explore/tags/")) { |
|
||||
url = url.substring(13); |
|
||||
type = IntentModelType.HASHTAG; |
|
||||
} else if (url.startsWith("explore/locations/")) { |
|
||||
url = url.substring(18); |
|
||||
|
if (1 == paths.size()) { |
||||
|
text = path; |
||||
|
type = IntentModelType.USERNAME; |
||||
|
} else if ("_u".equals(path)) { |
||||
|
text = paths.get(1); |
||||
|
type = IntentModelType.USERNAME; |
||||
|
} else if ("p".equals(path) || "reel".equals(path) || "tv".equals(path)) { |
||||
|
text = paths.get(1); |
||||
|
type = IntentModelType.POST; |
||||
|
} else if (2 < paths.size() && "explore".equals(path)) { |
||||
|
path = paths.get(1); |
||||
|
|
||||
|
if ("locations".equals(path)) { |
||||
|
text = paths.get(2); |
||||
type = IntentModelType.LOCATION; |
type = IntentModelType.LOCATION; |
||||
} else if (url.startsWith("_u/")) { // usually exists in embeds |
|
||||
url = url.substring(3); |
|
||||
type = IntentModelType.USERNAME; |
|
||||
} |
|
||||
url = cleanString(url); |
|
||||
if (TextUtils.isEmpty(url)) return null; |
|
||||
else if (type == IntentModelType.UNKNOWN){ |
|
||||
type = IntentModelType.USERNAME; |
|
||||
} |
} |
||||
} else if (url.contains("ig.me/u/")) { |
|
||||
url = url.substring((isHttps ? 16 : 15) + wwwDel); |
|
||||
url = cleanString(url); |
|
||||
type = IntentModelType.USERNAME; |
|
||||
|
|
||||
} else return null; |
|
||||
|
|
||||
final int clipLen = url.length() - 1; |
|
||||
if (url.charAt(clipLen) == '/') |
|
||||
url = url.substring(0, clipLen); |
|
||||
|
|
||||
if (type == IntentModelType.LOCATION && url.contains("/")) { |
|
||||
url = url.substring(0, url.indexOf("/")); |
|
||||
|
if ("tags".equals(path)) { |
||||
|
text = paths.get(2); |
||||
|
type = IntentModelType.HASHTAG; |
||||
|
} |
||||
} |
} |
||||
|
|
||||
if (!url.contains("/")) return new IntentModel(type, url); |
|
||||
return null; |
|
||||
} |
|
||||
|
|
||||
@NonNull |
|
||||
public static String cleanString(@NonNull final String clipString) { |
|
||||
final int queryIndex = clipString.indexOf('?'); |
|
||||
final int paramIndex = clipString.indexOf('#'); |
|
||||
int startIndex = -1; |
|
||||
if (queryIndex > 0 && paramIndex > 0) { |
|
||||
if (queryIndex < paramIndex) startIndex = queryIndex; |
|
||||
else if (paramIndex < queryIndex) startIndex = paramIndex; |
|
||||
} else if (queryIndex == -1 && paramIndex >= 0) { |
|
||||
startIndex = paramIndex; |
|
||||
} else if (paramIndex == -1 && queryIndex >= 0) { |
|
||||
startIndex = queryIndex; |
|
||||
|
if (TextUtils.isEmpty(text)) { |
||||
|
return null; |
||||
} |
} |
||||
return startIndex != -1 ? clipString.substring(0, startIndex) : clipString; |
|
||||
|
|
||||
|
return new IntentModel(type, text); |
||||
} |
} |
||||
} |
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue