what-the-bank/sources/com/google/firebase/auth/ActionCodeUrl.java

79 lines
2.5 KiB
Java

package com.google.firebase.auth;
import android.net.Uri;
import com.google.android.gms.common.internal.Preconditions;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
/* loaded from: classes2.dex */
public class ActionCodeUrl {
private static final Map zza;
private final String zzb;
private final String zzc;
private final String zzd;
private final String zze;
private final String zzf;
private final String zzg;
static {
HashMap hashMap = new HashMap();
hashMap.put("recoverEmail", 2);
hashMap.put("resetPassword", 0);
hashMap.put("signIn", 4);
hashMap.put("verifyEmail", 1);
hashMap.put("verifyBeforeChangeEmail", 5);
hashMap.put("revertSecondFactorAddition", 6);
zza = Collections.unmodifiableMap(hashMap);
}
private ActionCodeUrl(String str) {
String zzb = zzb(str, "apiKey");
String zzb2 = zzb(str, "oobCode");
String zzb3 = zzb(str, "mode");
if (zzb == null || zzb2 == null || zzb3 == null) {
throw new IllegalArgumentException(String.format("%s, %s and %s are required in a valid action code URL", "apiKey", "oobCode", "mode"));
}
this.zzb = Preconditions.checkNotEmpty(zzb);
this.zzc = Preconditions.checkNotEmpty(zzb2);
this.zzd = Preconditions.checkNotEmpty(zzb3);
this.zze = zzb(str, "continueUrl");
this.zzf = zzb(str, "languageCode");
this.zzg = zzb(str, "tenantId");
}
public static ActionCodeUrl parseLink(String str) {
Preconditions.checkNotEmpty(str);
try {
return new ActionCodeUrl(str);
} catch (IllegalArgumentException unused) {
return null;
}
}
private static String zzb(String str, String str2) {
Uri parse = Uri.parse(str);
try {
Set<String> queryParameterNames = parse.getQueryParameterNames();
if (queryParameterNames.contains(str2)) {
return parse.getQueryParameter(str2);
}
if (queryParameterNames.contains("link")) {
return Uri.parse(Preconditions.checkNotEmpty(parse.getQueryParameter("link"))).getQueryParameter(str2);
}
return null;
} catch (NullPointerException | UnsupportedOperationException unused) {
return null;
}
}
public final String zza() {
return this.zzg;
}
public String getCode() {
return this.zzc;
}
}