正在查看: Mint v5.7.3 应用的 d.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: Mint v5.7.3 应用的 d.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package s8;
import android.text.TextUtils;
import androidx.annotation.VisibleForTesting;
import com.android.volley.AuthFailureError;
import com.android.volley.Header;
import com.android.volley.Request;
import com.android.volley.toolbox.BaseHttpStack;
import com.android.volley.toolbox.HttpResponse;
import com.google.firebase.perf.network.FirebasePerfUrlConnection;
import com.thoughtbot.expandablerecyclerview.BuildConfig;
import java.io.DataOutputStream;
import java.io.FilterInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLSocketFactory;
public class d extends BaseHttpStack {
private final SSLSocketFactory a;
static class a extends FilterInputStream {
private final HttpURLConnection a;
a(HttpURLConnection httpURLConnection) {
super(d.inputStreamFromConnection(httpURLConnection));
this.a = httpURLConnection;
}
@Override
public void close() throws IOException {
super.close();
this.a.disconnect();
}
}
public interface b {
}
public d() {
this(null);
}
public d(b bVar) {
this(bVar, null);
}
public d(b bVar, SSLSocketFactory sSLSocketFactory) {
this.a = sSLSocketFactory;
}
private static void addBody(HttpURLConnection httpURLConnection, Request<?> request, byte[] bArr) throws IOException {
httpURLConnection.setDoOutput(true);
if (!httpURLConnection.getRequestProperties().containsKey("Content-Type")) {
httpURLConnection.setRequestProperty("Content-Type", request.getBodyContentType());
}
DataOutputStream dataOutputStream = new DataOutputStream(httpURLConnection.getOutputStream());
dataOutputStream.write(bArr);
dataOutputStream.close();
}
private static void addBodyIfExists(HttpURLConnection httpURLConnection, Request<?> request) throws IOException, AuthFailureError {
byte[] body = request.getBody();
if (body != null) {
addBody(httpURLConnection, request, body);
}
}
@VisibleForTesting
static List<Header> convertHeaders(Map<String, List<String>> map) {
ArrayList arrayList = new ArrayList(map.size());
for (Map.Entry<String, List<String>> entry : map.entrySet()) {
if (entry.getKey() != null) {
Iterator<String> it = entry.getValue().iterator();
while (it.hasNext()) {
arrayList.add(new Header(entry.getKey(), it.next()));
}
}
}
return arrayList;
}
private static boolean hasResponseBody(int i, int i2) {
return (i == 4 || (100 <= i2 && i2 < 200) || i2 == 204 || i2 == 304) ? false : true;
}
public static InputStream inputStreamFromConnection(HttpURLConnection httpURLConnection) {
try {
return httpURLConnection.getInputStream();
} catch (IOException unused) {
return httpURLConnection.getErrorStream();
}
}
private HttpURLConnection openConnection(URL url, Request<?> request) throws IOException {
SSLSocketFactory sSLSocketFactory;
HttpURLConnection createConnection = createConnection(url);
int timeoutMs = request.getTimeoutMs();
createConnection.setConnectTimeout(timeoutMs);
createConnection.setReadTimeout(timeoutMs);
createConnection.setUseCaches(false);
createConnection.setDoInput(true);
if ("https".equals(url.getProtocol()) && (sSLSocketFactory = this.a) != null) {
((HttpsURLConnection) createConnection).setSSLSocketFactory(sSLSocketFactory);
}
return createConnection;
}
static void setConnectionParametersForRequest(HttpURLConnection httpURLConnection, Request<?> request) throws IOException, AuthFailureError {
switch (request.getMethod()) {
case -1:
byte[] postBody = request.getPostBody();
if (postBody != null) {
httpURLConnection.setRequestMethod("POST");
addBody(httpURLConnection, request, postBody);
return;
}
return;
case 0:
httpURLConnection.setRequestMethod("GET");
return;
case 1:
httpURLConnection.setRequestMethod("POST");
addBodyIfExists(httpURLConnection, request);
return;
case 2:
httpURLConnection.setRequestMethod("PUT");
addBodyIfExists(httpURLConnection, request);
return;
case 3:
httpURLConnection.setRequestMethod("DELETE");
addBodyIfExists(httpURLConnection, request);
return;
case 4:
httpURLConnection.setRequestMethod("HEAD");
return;
case 5:
httpURLConnection.setRequestMethod("OPTIONS");
return;
case 6:
httpURLConnection.setRequestMethod("TRACE");
return;
case 7:
httpURLConnection.setRequestMethod("PATCH");
addBodyIfExists(httpURLConnection, request);
return;
default:
throw new IllegalStateException("Unknown method type.");
}
}
protected HttpURLConnection createConnection(URL url) throws IOException {
HttpURLConnection httpURLConnection = (HttpURLConnection) ((URLConnection) FirebasePerfUrlConnection.instrument(url.openConnection()));
httpURLConnection.setInstanceFollowRedirects(HttpURLConnection.getFollowRedirects());
return httpURLConnection;
}
public HttpResponse executeRequest(Request<?> request, Map<String, String> map) throws IOException, AuthFailureError {
String url = request.getUrl();
HashMap hashMap = new HashMap();
hashMap.putAll(map);
hashMap.putAll(request.getHeaders());
if (TextUtils.isEmpty(url)) {
url = BuildConfig.FLAVOR;
}
HttpURLConnection openConnection = openConnection(new URL(url), request);
try {
for (String str : hashMap.keySet()) {
openConnection.setRequestProperty(str, (String) hashMap.get(str));
}
setConnectionParametersForRequest(openConnection, request);
int responseCode = openConnection.getResponseCode();
if (responseCode == -1) {
throw new IOException("Could not retrieve response code from HttpUrlConnection.");
}
if (hasResponseBody(request.getMethod(), responseCode)) {
return new HttpResponse(responseCode, convertHeaders(openConnection.getHeaderFields()), openConnection.getContentLength(), new a(openConnection));
}
HttpResponse httpResponse = new HttpResponse(responseCode, convertHeaders(openConnection.getHeaderFields()));
openConnection.disconnect();
return httpResponse;
} catch (Throwable th) {
if (0 == 0) {
openConnection.disconnect();
}
throw th;
}
}
}