discord-jadx/app/src/main/java/com/discord/utilities/integrations/SpotifyHelper.java

99 lines
4.0 KiB
Java

package com.discord.utilities.integrations;
import android.content.ActivityNotFoundException;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.PackageManager;
import android.net.Uri;
import com.discord.api.activity.Activity;
import com.discord.utilities.receiver.spotify.SpotifyMetadataReceiver;
import com.discord.utilities.receiver.spotify.SpotifyPlayingStateReceiver;
import com.discord.utilities.uri.UriHandler;
import d0.z.d.m;
import kotlin.Unit;
import kotlin.jvm.functions.Function0;
/* compiled from: SpotifyHelper.kt */
public final class SpotifyHelper {
public static final SpotifyHelper INSTANCE = new SpotifyHelper();
private static final String SPOTIFY_PACKAGE_NAME = "com.spotify.music";
private static final String SPOTIFY_UTM_PARAMS = "utm_source=discord&utm_medium=mobile";
private SpotifyHelper() {
}
public static final /* synthetic */ void access$launchSpotifyIntent(SpotifyHelper spotifyHelper, Context context, Intent intent) {
spotifyHelper.launchSpotifyIntent(context, intent);
}
private final void launchSpotifyIntent(Context context, Intent intent) {
try {
intent.putExtra("android.intent.extra.REFERRER", Uri.parse("android-app://" + context.getPackageName()));
context.startActivity(intent);
} catch (ActivityNotFoundException unused) {
if (!isSpotifyInstalled(context)) {
openPlayStoreForSpotify(context);
}
}
}
public static final void registerSpotifyBroadcastReceivers(Context context) {
m.checkNotNullParameter(context, "context");
context.registerReceiver(new SpotifyMetadataReceiver(), new IntentFilter("com.spotify.music.metadatachanged"));
context.registerReceiver(new SpotifyPlayingStateReceiver(), new IntentFilter("com.spotify.music.playbackstatechanged"));
}
private final void runIfSpotifyInstalled(Function0<Unit> function0, Context context) {
try {
function0.mo1invoke();
} catch (ActivityNotFoundException unused) {
if (!isSpotifyInstalled(context)) {
openPlayStoreForSpotify(context);
}
}
}
public final boolean isSpotifyInstalled(Context context) {
m.checkNotNullParameter(context, "context");
try {
context.getPackageManager().getPackageInfo("com.spotify.music", 0);
return true;
} catch (PackageManager.NameNotFoundException unused) {
return false;
}
}
public final void launchAlbum(Context context, Activity activity, long j, boolean z2) {
String k;
Long a;
m.checkNotNullParameter(context, "context");
if (z2) {
openSpotifyApp(context);
} else if (activity != null && (k = activity.k()) != null && (a = activity.a()) != null) {
runIfSpotifyInstalled(new SpotifyHelper$launchAlbum$1(j, k, a.longValue(), context), context);
}
}
public final void launchTrack(Context context, Activity activity) {
String n;
m.checkNotNullParameter(context, "context");
if (activity != null && (n = activity.n()) != null) {
INSTANCE.runIfSpotifyInstalled(new SpotifyHelper$launchTrack$$inlined$let$lambda$1(n, context), context);
}
}
public final void openPlayStoreForSpotify(Context context) {
m.checkNotNullParameter(context, "context");
new Thread(new SpotifyHelper$openPlayStoreForSpotify$1(context)).start();
UriHandler.handle$default(UriHandler.INSTANCE, context, "https://play.google.com/store/apps/details?id=com.spotify.music&utm_source=discord&utm_medium=mobile", null, 4, null);
}
public final void openSpotifyApp(Context context) {
m.checkNotNullParameter(context, "context");
Intent launchIntentForPackage = context.getPackageManager().getLaunchIntentForPackage("com.spotify.music");
if (launchIntentForPackage != null) {
context.startActivity(launchIntentForPackage);
}
}
}