mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-16 03:59:14 +03:00
64 lines
2.5 KiB
Java
64 lines
2.5 KiB
Java
package ru.gravit.utils;
|
|
|
|
import com.google.gson.JsonElement;
|
|
import com.google.gson.JsonParser;
|
|
import ru.gravit.utils.helper.IOHelper;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStreamReader;
|
|
import java.io.OutputStream;
|
|
import java.io.OutputStreamWriter;
|
|
import java.net.HttpURLConnection;
|
|
import java.net.URL;
|
|
import java.nio.charset.Charset;
|
|
import java.nio.charset.StandardCharsets;
|
|
|
|
public class HTTPRequest {
|
|
private static final int TIMEOUT = 10000;
|
|
private static final JsonParser parser = new JsonParser();
|
|
|
|
public static int sendCrashreport(String strurl, byte[] data) throws IOException {
|
|
URL url = new URL(strurl);
|
|
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
|
|
connection.setRequestMethod("POST");
|
|
connection.setRequestProperty("Content-Type",
|
|
"application/x-www-form-urlencoded");
|
|
connection.setRequestProperty("Content-Length",
|
|
Integer.toString(data.length));
|
|
connection.setRequestProperty("Content-Language", "en-US");
|
|
OutputStream outputStream = connection.getOutputStream();
|
|
outputStream.write(data);
|
|
outputStream.close();
|
|
return connection.getResponseCode();
|
|
}
|
|
|
|
public static int sendCrashreport(String strurl, String data) throws IOException {
|
|
return sendCrashreport(strurl, data.getBytes(IOHelper.UNICODE_CHARSET));
|
|
}
|
|
|
|
public static JsonElement jsonRequest(JsonElement request, URL url) throws IOException {
|
|
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
|
|
connection.setDoInput(true);
|
|
connection.setDoOutput(true);
|
|
connection.setRequestMethod("POST");
|
|
connection.setRequestProperty("Content-Type", "application/json; charset=UTF-8");
|
|
connection.setRequestProperty("Accept", "application/json");
|
|
if (TIMEOUT > 0)
|
|
connection.setConnectTimeout(TIMEOUT);
|
|
|
|
OutputStreamWriter writer = new OutputStreamWriter(connection.getOutputStream(), Charset.forName("UTF-8"));
|
|
writer.write(request.toString());
|
|
writer.flush();
|
|
writer.close();
|
|
|
|
InputStreamReader reader;
|
|
int statusCode = connection.getResponseCode();
|
|
|
|
if (200 <= statusCode && statusCode < 300)
|
|
reader = new InputStreamReader(connection.getInputStream(), StandardCharsets.UTF_8);
|
|
else
|
|
reader = new InputStreamReader(connection.getErrorStream(), StandardCharsets.UTF_8);
|
|
JsonElement content = parser.parse(reader);
|
|
return content;
|
|
}
|
|
}
|