MD5 校验值:abac416d58de62cbb13589224e25fe1c
c.java 文件包含反编译后的源代码,请注意,该内容仅供学习和参考使用,不得用于非法用途。
package c5; import android.content.Context; import android.content.pm.PackageManager; import android.net.TrafficStats; import android.text.TextUtils; import android.util.JsonReader; import android.util.Log; import c5.d; import c5.f; import com.google.firebase.installations.c; import g5.i; import j3.s; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; import java.net.URLConnection; import java.nio.charset.Charset; import java.util.regex.Pattern; import java.util.zip.GZIPOutputStream; import n3.j; import org.json.JSONException; import org.json.JSONObject; import v4.f; public class c { private static final Pattern f2982e = Pattern.compile("[0-9]+s"); private static final Charset f2983f = Charset.forName("UTF-8"); private final Context f2984a; private final y4.b<i> f2985b; private final y4.b<v4.f> f2986c; private final e f2987d = new e(); public c(Context context, y4.b<i> bVar, y4.b<v4.f> bVar2) { this.f2984a = context; this.f2985b = bVar; this.f2986c = bVar2; } private static String a(String str, String str2, String str3) { String str4; Object[] objArr = new Object[3]; objArr[0] = str2; objArr[1] = str3; if (TextUtils.isEmpty(str)) { str4 = ""; } else { str4 = ", " + str; } objArr[2] = str4; return String.format("Firebase options used while communicating with Firebase server APIs: %s, %s%s", objArr); } private static JSONObject b(String str, String str2) { try { JSONObject jSONObject = new JSONObject(); jSONObject.put("fid", str); jSONObject.put("appId", str2); jSONObject.put("authVersion", "FIS_v2"); jSONObject.put("sdkVersion", "a:17.0.0"); return jSONObject; } catch (JSONException e6) { throw new IllegalStateException(e6); } } private static JSONObject c() { try { JSONObject jSONObject = new JSONObject(); jSONObject.put("sdkVersion", "a:17.0.0"); JSONObject jSONObject2 = new JSONObject(); jSONObject2.put("installation", jSONObject); return jSONObject2; } catch (JSONException e6) { throw new IllegalStateException(e6); } } private String f() { try { Context context = this.f2984a; byte[] a7 = n3.a.a(context, context.getPackageName()); if (a7 != null) { return j.b(a7, false); } Log.e("ContentValues", "Could not get fingerprint hash for package: " + this.f2984a.getPackageName()); return null; } catch (PackageManager.NameNotFoundException e6) { Log.e("ContentValues", "No such package: " + this.f2984a.getPackageName(), e6); return null; } } private URL g(String str) { try { return new URL(String.format("https://%s/%s/%s", "firebaseinstallations.googleapis.com", "v1", str)); } catch (MalformedURLException e6) { throw new com.google.firebase.installations.c(e6.getMessage(), c.a.UNAVAILABLE); } } private static byte[] h(JSONObject jSONObject) { return jSONObject.toString().getBytes("UTF-8"); } private static boolean i(int i6) { return i6 >= 200 && i6 < 300; } private static void j() { Log.e("Firebase-Installations", "Firebase Installations can not communicate with Firebase server APIs due to invalid configuration. Please update your Firebase initialization process and set valid Firebase options (API key, Project ID, Application ID) when initializing Firebase."); } private static void k(HttpURLConnection httpURLConnection, String str, String str2, String str3) { String o6 = o(httpURLConnection); if (TextUtils.isEmpty(o6)) { return; } Log.w("Firebase-Installations", o6); Log.w("Firebase-Installations", a(str, str2, str3)); } private HttpURLConnection l(URL url, String str) { f.a a7; try { HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection(); httpURLConnection.setConnectTimeout(10000); httpURLConnection.setUseCaches(false); httpURLConnection.setReadTimeout(10000); httpURLConnection.addRequestProperty("Content-Type", "application/json"); httpURLConnection.addRequestProperty("Accept", "application/json"); httpURLConnection.addRequestProperty("Content-Encoding", "gzip"); httpURLConnection.addRequestProperty("Cache-Control", "no-cache"); httpURLConnection.addRequestProperty("X-Android-Package", this.f2984a.getPackageName()); if (this.f2986c.get() != null && this.f2985b.get() != null && (a7 = this.f2986c.get().a("fire-installations-id")) != f.a.NONE) { httpURLConnection.addRequestProperty("x-firebase-client", this.f2985b.get().a()); httpURLConnection.addRequestProperty("x-firebase-client-log-type", Integer.toString(a7.d())); } httpURLConnection.addRequestProperty("X-Android-Cert", f()); httpURLConnection.addRequestProperty("x-goog-api-key", str); return httpURLConnection; } catch (IOException unused) { throw new com.google.firebase.installations.c("Firebase Installations Service is unavailable. Please try again later.", c.a.UNAVAILABLE); } } static long m(String str) { s.b(f2982e.matcher(str).matches(), "Invalid Expiration Timestamp."); if (str == null || str.length() == 0) { return 0L; } return Long.parseLong(str.substring(0, str.length() - 1)); } private d n(HttpURLConnection httpURLConnection) { InputStream inputStream = httpURLConnection.getInputStream(); JsonReader jsonReader = new JsonReader(new InputStreamReader(inputStream, f2983f)); f.a a7 = f.a(); d.a a8 = d.a(); jsonReader.beginObject(); while (jsonReader.hasNext()) { String nextName = jsonReader.nextName(); if (nextName.equals("name")) { a8.f(jsonReader.nextString()); } else if (nextName.equals("fid")) { a8.c(jsonReader.nextString()); } else if (nextName.equals("refreshToken")) { a8.d(jsonReader.nextString()); } else if (nextName.equals("authToken")) { jsonReader.beginObject(); while (jsonReader.hasNext()) { String nextName2 = jsonReader.nextName(); if (nextName2.equals("token")) { a7.c(jsonReader.nextString()); } else if (nextName2.equals("expiresIn")) { a7.d(m(jsonReader.nextString())); } else { jsonReader.skipValue(); } } a8.b(a7.a()); jsonReader.endObject(); } else { jsonReader.skipValue(); } } jsonReader.endObject(); jsonReader.close(); inputStream.close(); return a8.e(d.b.OK).a(); } private static String o(HttpURLConnection httpURLConnection) { InputStream errorStream = httpURLConnection.getErrorStream(); if (errorStream == null) { return null; } BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(errorStream, f2983f)); try { try { StringBuilder sb = new StringBuilder(); while (true) { String readLine = bufferedReader.readLine(); if (readLine == null) { break; } sb.append(readLine); sb.append('\n'); } String format = String.format("Error when communicating with the Firebase Installations server API. HTTP response: [%d %s: %s]", Integer.valueOf(httpURLConnection.getResponseCode()), httpURLConnection.getResponseMessage(), sb); try { bufferedReader.close(); } catch (IOException unused) { } return format; } catch (IOException unused2) { return null; } } catch (IOException unused3) { bufferedReader.close(); return null; } catch (Throwable th) { try { bufferedReader.close(); } catch (IOException unused4) { } throw th; } } private f p(HttpURLConnection httpURLConnection) { InputStream inputStream = httpURLConnection.getInputStream(); JsonReader jsonReader = new JsonReader(new InputStreamReader(inputStream, f2983f)); f.a a7 = f.a(); jsonReader.beginObject(); while (jsonReader.hasNext()) { String nextName = jsonReader.nextName(); if (nextName.equals("token")) { a7.c(jsonReader.nextString()); } else if (nextName.equals("expiresIn")) { a7.d(m(jsonReader.nextString())); } else { jsonReader.skipValue(); } } jsonReader.endObject(); jsonReader.close(); inputStream.close(); return a7.b(f.b.OK).a(); } private void q(HttpURLConnection httpURLConnection, String str, String str2) { s(httpURLConnection, h(b(str, str2))); } private void r(HttpURLConnection httpURLConnection) { s(httpURLConnection, h(c())); } private static void s(URLConnection uRLConnection, byte[] bArr) { OutputStream outputStream = uRLConnection.getOutputStream(); if (outputStream == null) { throw new IOException("Cannot send request to FIS servers. No OutputStream available."); } GZIPOutputStream gZIPOutputStream = new GZIPOutputStream(outputStream); try { gZIPOutputStream.write(bArr); } finally { try { gZIPOutputStream.close(); outputStream.close(); } catch (IOException unused) { } } } public d d(String str, String str2, String str3, String str4, String str5) { int responseCode; d n6; if (!this.f2987d.b()) { throw new com.google.firebase.installations.c("Firebase Installations Service is unavailable. Please try again later.", c.a.UNAVAILABLE); } URL g6 = g(String.format("projects/%s/installations", str3)); for (int i6 = 0; i6 <= 1; i6++) { TrafficStats.setThreadStatsTag(32769); HttpURLConnection l6 = l(g6, str); try { try { l6.setRequestMethod("POST"); l6.setDoOutput(true); if (str5 != null) { l6.addRequestProperty("x-goog-fis-android-iid-migration-auth", str5); } q(l6, str2, str4); responseCode = l6.getResponseCode(); this.f2987d.f(responseCode); } catch (IOException | AssertionError unused) { } if (i(responseCode)) { n6 = n(l6); } else { k(l6, str4, str, str3); if (responseCode == 429) { throw new com.google.firebase.installations.c("Firebase servers have received too many requests from this client in a short period of time. Please try again later.", c.a.TOO_MANY_REQUESTS); } if (responseCode < 500 || responseCode >= 600) { j(); n6 = d.a().e(d.b.BAD_CONFIG).a(); } else { l6.disconnect(); TrafficStats.clearThreadStatsTag(); } } return n6; } finally { l6.disconnect(); TrafficStats.clearThreadStatsTag(); } } throw new com.google.firebase.installations.c("Firebase Installations Service is unavailable. Please try again later.", c.a.UNAVAILABLE); } public f e(String str, String str2, String str3, String str4) { int responseCode; f p6; f.a b6; if (!this.f2987d.b()) { throw new com.google.firebase.installations.c("Firebase Installations Service is unavailable. Please try again later.", c.a.UNAVAILABLE); } URL g6 = g(String.format("projects/%s/installations/%s/authTokens:generate", str3, str2)); for (int i6 = 0; i6 <= 1; i6++) { TrafficStats.setThreadStatsTag(32771); HttpURLConnection l6 = l(g6, str); try { try { l6.setRequestMethod("POST"); l6.addRequestProperty("Authorization", "FIS_v2 " + str4); l6.setDoOutput(true); r(l6); responseCode = l6.getResponseCode(); this.f2987d.f(responseCode); } finally { l6.disconnect(); TrafficStats.clearThreadStatsTag(); } } catch (IOException | AssertionError unused) { } if (i(responseCode)) { p6 = p(l6); } else { k(l6, null, str, str3); if (responseCode != 401 && responseCode != 404) { if (responseCode == 429) { throw new com.google.firebase.installations.c("Firebase servers have received too many requests from this client in a short period of time. Please try again later.", c.a.TOO_MANY_REQUESTS); } if (responseCode < 500 || responseCode >= 600) { j(); b6 = f.a().b(f.b.BAD_CONFIG); p6 = b6.a(); } else { l6.disconnect(); TrafficStats.clearThreadStatsTag(); } } b6 = f.a().b(f.b.AUTH_ERROR); p6 = b6.a(); } return p6; } throw new com.google.firebase.installations.c("Firebase Installations Service is unavailable. Please try again later.", c.a.UNAVAILABLE); } }