package fr.gouv.etalab.mastodon.client; /* Copyright 2017 Thomas Schneider * * This file is a part of Mastalab * * This program is free software; you can redistribute it and/or modify it under the terms of the * GNU General Public License as published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * Mastalab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * Public License for more details. * * You should have received a copy of the GNU General Public License along with Mastalab; if not, * see . */ import android.content.Context; import android.content.SharedPreferences; import android.os.Build; import android.text.Html; import android.text.SpannableString; import com.google.common.io.ByteStreams; import org.json.JSONObject; import java.io.BufferedInputStream; import java.io.BufferedReader; import java.io.ByteArrayOutputStream; import java.io.DataOutputStream; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.security.KeyManagementException; import java.security.NoSuchAlgorithmException; import java.util.HashMap; import java.util.Iterator; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.regex.Matcher; import java.util.regex.Pattern; import javax.net.ssl.HttpsURLConnection; import fr.gouv.etalab.mastodon.R; import fr.gouv.etalab.mastodon.activities.MediaActivity; import fr.gouv.etalab.mastodon.activities.TootActivity; import fr.gouv.etalab.mastodon.client.Entities.Attachment; import fr.gouv.etalab.mastodon.client.Entities.Error; import fr.gouv.etalab.mastodon.helper.Helper; import fr.gouv.etalab.mastodon.interfaces.OnDownloadInterface; import fr.gouv.etalab.mastodon.interfaces.OnRetrieveAttachmentInterface; /** * Created by Thomas on 17/11/2017. * Manage http queries */ public class HttpsConnection { private HttpsURLConnection httpsURLConnection; private String since_id, max_id; private Context context; private int CHUNK_SIZE = 4096; public HttpsConnection(){} public HttpsConnection(Context context){ this.context = context; } @SuppressWarnings("ConstantConditions") public String get(String urlConnection, int timeout, HashMap paramaters, String token) throws IOException, NoSuchAlgorithmException, KeyManagementException, HttpsConnectionException { Map params = new LinkedHashMap<>(); if( paramaters != null) { Iterator it = paramaters.entrySet().iterator(); while (it.hasNext()) { Map.Entry pair = (Map.Entry) it.next(); params.put(pair.getKey().toString(), pair.getValue()); it.remove(); } } StringBuilder postData = new StringBuilder(); for (Map.Entry param : params.entrySet()) { if (postData.length() != 0) postData.append('&'); postData.append(param.getKey()); postData.append('='); postData.append(String.valueOf(param.getValue())); } URL url = new URL(urlConnection + "?" + postData); httpsURLConnection = (HttpsURLConnection)url.openConnection(); httpsURLConnection.setConnectTimeout(timeout * 1000); httpsURLConnection.setRequestProperty("http.keepAlive", "false"); httpsURLConnection.setRequestProperty("User-Agent", Helper.USER_AGENT); httpsURLConnection.setSSLSocketFactory(new TLSSocketFactory()); if( token != null) httpsURLConnection.setRequestProperty("Authorization", "Bearer " + token); httpsURLConnection.setRequestMethod("GET"); String response; if (httpsURLConnection.getResponseCode() >= 200 && httpsURLConnection.getResponseCode() < 400) { response = new String(ByteStreams.toByteArray(httpsURLConnection.getInputStream())); }else { String error = new String(ByteStreams.toByteArray(httpsURLConnection.getErrorStream())); int responseCode = httpsURLConnection.getResponseCode(); httpsURLConnection.getInputStream().close(); throw new HttpsConnectionException(responseCode, error); } getSinceMaxId(); httpsURLConnection.getInputStream().close(); return response; } public String get(String urlConnection) throws IOException, NoSuchAlgorithmException, KeyManagementException, HttpsConnectionException { HttpsURLConnection httpsURLConnection; HttpURLConnection httpURLConnection; if( urlConnection.startsWith("https://")) { URL url = new URL(urlConnection); httpsURLConnection = (HttpsURLConnection) url.openConnection(); httpsURLConnection.setConnectTimeout(30 * 1000); httpsURLConnection.setRequestProperty("http.keepAlive", "false"); httpsURLConnection.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1667.0 Safari/537.36"); httpsURLConnection.setSSLSocketFactory(new TLSSocketFactory()); httpsURLConnection.setRequestMethod("GET"); String response; if (httpsURLConnection.getResponseCode() >= 200 && httpsURLConnection.getResponseCode() < 400) { getSinceMaxId(); response = new String(ByteStreams.toByteArray(httpsURLConnection.getInputStream())); }else { String error = new String(ByteStreams.toByteArray(httpsURLConnection.getErrorStream())); int responseCode = httpsURLConnection.getResponseCode(); httpsURLConnection.getInputStream().close(); throw new HttpsConnectionException(responseCode, error); } getSinceMaxId(); httpsURLConnection.getInputStream().close(); return response; }else{ URL url = new URL(urlConnection); httpURLConnection = (HttpURLConnection) url.openConnection(); httpURLConnection.setConnectTimeout(30 * 1000); httpURLConnection.setRequestProperty("http.keepAlive", "false"); httpURLConnection.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1667.0 Safari/537.36"); httpURLConnection.setRequestMethod("GET"); String response; if (httpURLConnection.getResponseCode() >= 200 && httpURLConnection.getResponseCode() < 400) { getSinceMaxId(); response = new String(ByteStreams.toByteArray(httpURLConnection.getInputStream())); }else { String error = new String(ByteStreams.toByteArray(httpURLConnection.getErrorStream())); int responseCode = httpURLConnection.getResponseCode(); httpURLConnection.getInputStream().close(); throw new HttpsConnectionException(responseCode, error); } getSinceMaxId(); httpURLConnection.getInputStream().close(); return response; } } public String post(String urlConnection, int timeout, HashMap paramaters, String token) throws IOException, NoSuchAlgorithmException, KeyManagementException, HttpsConnectionException { URL url = new URL(urlConnection); Map params = new LinkedHashMap<>(); if( paramaters != null) { Iterator it = paramaters.entrySet().iterator(); while (it.hasNext()) { Map.Entry pair = (Map.Entry) it.next(); params.put(pair.getKey().toString(), pair.getValue()); it.remove(); } } StringBuilder postData = new StringBuilder(); for (Map.Entry param : params.entrySet()) { if (postData.length() != 0) postData.append('&'); postData.append(param.getKey()); postData.append('='); postData.append(String.valueOf(param.getValue())); } byte[] postDataBytes = postData.toString().getBytes("UTF-8"); httpsURLConnection = (HttpsURLConnection)url.openConnection(); httpsURLConnection.setRequestProperty("User-Agent", Helper.USER_AGENT); httpsURLConnection.setConnectTimeout(timeout * 1000); httpsURLConnection.setDoOutput(true); httpsURLConnection.setSSLSocketFactory(new TLSSocketFactory()); httpsURLConnection.setRequestMethod("POST"); if( token != null) httpsURLConnection.setRequestProperty("Authorization", "Bearer " + token); httpsURLConnection.setRequestProperty("Content-Length", String.valueOf(postDataBytes.length)); httpsURLConnection.getOutputStream().write(postDataBytes); String response; if (httpsURLConnection.getResponseCode() >= 200 && httpsURLConnection.getResponseCode() < 400) { getSinceMaxId(); response = new String(ByteStreams.toByteArray(httpsURLConnection.getInputStream())); }else { String error = new String(ByteStreams.toByteArray(httpsURLConnection.getErrorStream())); int responseCode = httpsURLConnection.getResponseCode(); httpsURLConnection.getInputStream().close(); throw new HttpsConnectionException(responseCode, error); } getSinceMaxId(); httpsURLConnection.getInputStream().close(); return response; } /*** * Download method which works for http and https connections * @param downloadUrl String download url * @param listener OnDownloadInterface, listener which manages progress */ public void download(final String downloadUrl, final OnDownloadInterface listener) { new Thread(new Runnable() { @Override public void run() { URL url; HttpsURLConnection httpsURLConnection = null; HttpURLConnection httpURLConnection = null; if (downloadUrl.startsWith("https://")) { try { url = new URL(downloadUrl); httpsURLConnection = (HttpsURLConnection) url.openConnection(); httpsURLConnection.setRequestProperty("User-Agent", Helper.USER_AGENT); int responseCode = httpsURLConnection.getResponseCode(); // always check HTTP response code first if (responseCode == HttpURLConnection.HTTP_OK) { String fileName = ""; String disposition = httpsURLConnection.getHeaderField("Content-Disposition"); if (disposition != null) { // extracts file name from header field int index = disposition.indexOf("filename="); if (index > 0) { fileName = disposition.substring(index + 10, disposition.length() - 1); } } else { // extracts file name from URL fileName = downloadUrl.substring(downloadUrl.lastIndexOf("/") + 1, downloadUrl.length()); } // opens input stream from the HTTP connection InputStream inputStream = httpsURLConnection.getInputStream(); File saveDir = context.getCacheDir(); final String saveFilePath = saveDir + File.separator + fileName; // opens an output stream to save into file FileOutputStream outputStream = new FileOutputStream(saveFilePath); int bytesRead; byte[] buffer = new byte[CHUNK_SIZE]; int contentSize = httpsURLConnection.getContentLength(); int downloadedFileSize = 0; while ((bytesRead = inputStream.read(buffer)) != -1) { outputStream.write(buffer, 0, bytesRead); downloadedFileSize += bytesRead; if (context instanceof MediaActivity) { final int currentProgress = (downloadedFileSize * 100) / contentSize; ((MediaActivity) context).runOnUiThread(new Runnable() { public void run() { listener.onUpdateProgress(currentProgress); } }); } } outputStream.close(); inputStream.close(); if (context instanceof TootActivity) ((TootActivity) context).runOnUiThread(new Runnable() { public void run() { listener.onDownloaded(saveFilePath, downloadUrl, null); } }); if (context instanceof MediaActivity) ((MediaActivity) context).runOnUiThread(new Runnable() { public void run() { listener.onDownloaded(saveFilePath, downloadUrl, null); } }); } else { final Error error = new Error(); error.setError(String.valueOf(responseCode)); if (context instanceof TootActivity) ((TootActivity) context).runOnUiThread(new Runnable() { public void run() { listener.onDownloaded(null, downloadUrl, error); } }); if (context instanceof MediaActivity) ((MediaActivity) context).runOnUiThread(new Runnable() { public void run() { listener.onDownloaded(null, downloadUrl, error); } }); } httpsURLConnection.disconnect(); } catch (IOException e) { Error error = new Error(); error.setError(context.getString(R.string.toast_error)); if (httpsURLConnection != null) httpsURLConnection.disconnect(); } } else { try { url = new URL(downloadUrl); httpURLConnection = (HttpURLConnection) url.openConnection(); httpURLConnection.setRequestProperty("User-Agent", Helper.USER_AGENT); int responseCode = httpURLConnection.getResponseCode(); // always check HTTP response code first if (responseCode == HttpURLConnection.HTTP_OK) { String fileName = ""; String disposition = httpURLConnection.getHeaderField("Content-Disposition"); if (disposition != null) { // extracts file name from header field int index = disposition.indexOf("filename="); if (index > 0) { fileName = disposition.substring(index + 10, disposition.length() - 1); } } else { // extracts file name from URL fileName = downloadUrl.substring(downloadUrl.lastIndexOf("/") + 1, downloadUrl.length()); } // opens input stream from the HTTP connection InputStream inputStream = httpURLConnection.getInputStream(); File saveDir = context.getCacheDir(); final String saveFilePath = saveDir + File.separator + fileName; // opens an output stream to save into file FileOutputStream outputStream = new FileOutputStream(saveFilePath); int bytesRead; byte[] buffer = new byte[CHUNK_SIZE]; int contentSize = httpURLConnection.getContentLength(); int downloadedFileSize = 0; while ((bytesRead = inputStream.read(buffer)) != -1) { outputStream.write(buffer, 0, bytesRead); downloadedFileSize += bytesRead; if (context instanceof MediaActivity) { final int currentProgress = (downloadedFileSize * 100) / contentSize; ((MediaActivity) context).runOnUiThread(new Runnable() { public void run() { listener.onUpdateProgress(currentProgress); } }); } } outputStream.close(); inputStream.close(); if (context instanceof TootActivity) ((TootActivity) context).runOnUiThread(new Runnable() { public void run() { listener.onDownloaded(saveFilePath, downloadUrl, null); } }); if (context instanceof MediaActivity) ((MediaActivity) context).runOnUiThread(new Runnable() { public void run() { listener.onDownloaded(saveFilePath, downloadUrl, null); } }); } else { final Error error = new Error(); error.setError(String.valueOf(responseCode)); if (context instanceof TootActivity) ((TootActivity) context).runOnUiThread(new Runnable() { public void run() { listener.onDownloaded(null, downloadUrl, error); } }); if (context instanceof MediaActivity) ((MediaActivity) context).runOnUiThread(new Runnable() { public void run() { listener.onDownloaded(null, downloadUrl, error); } }); } httpURLConnection.disconnect(); } catch (IOException e) { Error error = new Error(); error.setError(context.getString(R.string.toast_error)); if (httpURLConnection != null) httpURLConnection.disconnect(); } } } }).start(); } public InputStream getPicture(final String downloadUrl) { try { URL url = new URL(downloadUrl); httpsURLConnection = (HttpsURLConnection) url.openConnection(); httpsURLConnection.setSSLSocketFactory(new TLSSocketFactory()); httpsURLConnection.setRequestProperty("User-Agent", Helper.USER_AGENT); int responseCode = httpsURLConnection.getResponseCode(); // always check HTTP response code first if (responseCode == HttpURLConnection.HTTP_OK) { // opens input stream from the HTTP connection return httpsURLConnection.getInputStream(); } httpsURLConnection.disconnect(); } catch (IOException | NoSuchAlgorithmException | KeyManagementException ignored) {} if(httpsURLConnection != null) httpsURLConnection.disconnect(); return null; } /** * Upload method - https only * @param inputStream InputStream of the file to upload * @param listener - OnRetrieveAttachmentInterface: listener to send information about attachment once uploaded. */ public void upload(final InputStream inputStream, final OnRetrieveAttachmentInterface listener) { new Thread(new Runnable() { @Override public void run() { try { String twoHyphens = "--"; String boundary = "*****" + Long.toString(System.currentTimeMillis()) + "*****"; String lineEnd = "\r\n"; SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE); String token = sharedpreferences.getString(Helper.PREF_KEY_OAUTH_TOKEN, null); final URL url = new URL("https://"+Helper.getLiveInstance(context)+"/api/v1/media"); ByteArrayOutputStream ous = null; try { try { byte[] buffer = new byte[CHUNK_SIZE]; // or other buffer size ous = new ByteArrayOutputStream(); int read; while ((read = inputStream.read(buffer)) != -1) { ous.write(buffer, 0, read); } ous.flush(); } finally { if (ous != null) ous.close(); } } catch (FileNotFoundException ignored) { } catch (IOException ignored) {} byte[] pixels = ous.toByteArray(); int lengthSent = pixels.length; lengthSent += 2 * (twoHyphens + boundary + twoHyphens + lineEnd).getBytes().length; lengthSent += ("Content-Disposition: form-data; name=\"file\";filename=\"picture.png\"" + lineEnd).getBytes().length; lengthSent += 2 * (lineEnd).getBytes().length; httpsURLConnection = (HttpsURLConnection) url.openConnection(); httpsURLConnection.setFixedLengthStreamingMode(lengthSent); httpsURLConnection.setRequestProperty("User-Agent", Helper.USER_AGENT); httpsURLConnection.setSSLSocketFactory(new TLSSocketFactory()); httpsURLConnection.setDoInput(true); httpsURLConnection.setDoOutput(true); httpsURLConnection.setUseCaches(false); httpsURLConnection.setRequestMethod("POST"); if (token != null) httpsURLConnection.setRequestProperty("Authorization", "Bearer " + token); httpsURLConnection.setRequestProperty("Connection", "Keep-Alive"); httpsURLConnection.setRequestProperty("Cache-Control", "no-cache"); httpsURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); httpsURLConnection.setRequestProperty("Content-Type", "multipart/form-data;boundary="+ boundary); DataOutputStream request = new DataOutputStream(httpsURLConnection.getOutputStream()); request.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd); request.writeBytes("Content-Disposition: form-data; name=\"file\";filename=\"picture.png\"" + lineEnd); request.writeBytes(lineEnd); //request.write(pixels); int totalSize = pixels.length; int bytesTransferred = 0; while (bytesTransferred < totalSize) { int nextChunkSize = totalSize - bytesTransferred; if (nextChunkSize > CHUNK_SIZE) { nextChunkSize = CHUNK_SIZE; } request.write(pixels, bytesTransferred, nextChunkSize); bytesTransferred += nextChunkSize; final int progress = 100 * bytesTransferred / totalSize; ((TootActivity)context).runOnUiThread(new Runnable() { public void run() { listener.onUpdateProgress(progress); }}); request.flush(); } request.writeBytes(lineEnd); request.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd); request.flush(); request.close(); if (200 != httpsURLConnection.getResponseCode()) { String error = new String(ByteStreams.toByteArray(httpsURLConnection.getErrorStream())); int responseCode = httpsURLConnection.getResponseCode(); httpsURLConnection.getInputStream().close(); throw new HttpsConnectionException(responseCode, error); } InputStream responseStream = new BufferedInputStream(httpsURLConnection.getInputStream()); BufferedReader responseStreamReader = new BufferedReader(new InputStreamReader(responseStream)); String response = new String(ByteStreams.toByteArray(httpsURLConnection.getInputStream())); ((TootActivity)context).runOnUiThread(new Runnable() { public void run() { listener.onUpdateProgress(101); }}); final Attachment attachment = API.parseAttachmentResponse(new JSONObject(response)); responseStreamReader.close(); responseStream.close(); httpsURLConnection.getInputStream().close(); ((TootActivity)context).runOnUiThread(new Runnable() { public void run() { listener.onRetrieveAttachment(attachment, null); }}); }catch (Exception e) { ((TootActivity)context).runOnUiThread(new Runnable() { public void run() { listener.onUpdateProgress(101); }}); final Error error = new Error(); error.setError(e.getMessage()); if(httpsURLConnection != null) try { httpsURLConnection.getInputStream().close(); } catch (IOException e1) { e1.printStackTrace(); } ((TootActivity)context).runOnUiThread(new Runnable() { public void run() { listener.onRetrieveAttachment(null, error); }}); } } }).start(); } public String put(String urlConnection, int timeout, HashMap paramaters, String token) throws IOException, NoSuchAlgorithmException, KeyManagementException, HttpsConnectionException { URL url = new URL(urlConnection); Map params = new LinkedHashMap<>(); if( paramaters != null) { Iterator it = paramaters.entrySet().iterator(); while (it.hasNext()) { Map.Entry pair = (Map.Entry) it.next(); params.put(pair.getKey().toString(), pair.getValue()); it.remove(); } } StringBuilder postData = new StringBuilder(); for (Map.Entry param : params.entrySet()) { if (postData.length() != 0) postData.append('&'); postData.append(param.getKey()); postData.append('='); postData.append(String.valueOf(param.getValue())); } byte[] postDataBytes = postData.toString().getBytes("UTF-8"); httpsURLConnection = (HttpsURLConnection)url.openConnection(); httpsURLConnection.setRequestProperty("User-Agent", Helper.USER_AGENT); httpsURLConnection.setConnectTimeout(timeout * 1000); httpsURLConnection.setSSLSocketFactory(new TLSSocketFactory()); if( token != null) httpsURLConnection.setRequestProperty("Authorization", "Bearer " + token); httpsURLConnection.setRequestProperty("Content-Length", String.valueOf(postDataBytes.length)); httpsURLConnection.setRequestMethod("PUT"); httpsURLConnection.setDoInput(true); httpsURLConnection.setDoOutput(true); httpsURLConnection.getOutputStream().write(postDataBytes); String response; if (httpsURLConnection.getResponseCode() >= 200 && httpsURLConnection.getResponseCode() < 400) { getSinceMaxId(); response = new String(ByteStreams.toByteArray(httpsURLConnection.getInputStream())); }else { String error = new String(ByteStreams.toByteArray(httpsURLConnection.getErrorStream())); int responseCode = httpsURLConnection.getResponseCode(); httpsURLConnection.getInputStream().close(); throw new HttpsConnectionException(responseCode, error); } getSinceMaxId(); httpsURLConnection.getInputStream().close(); return response; } public String patch(String urlConnection, int timeout, HashMap paramaters, String token) throws IOException, NoSuchAlgorithmException, KeyManagementException, HttpsConnectionException { URL url = new URL(urlConnection); Map params = new LinkedHashMap<>(); if( paramaters != null) { Iterator it = paramaters.entrySet().iterator(); while (it.hasNext()) { Map.Entry pair = (Map.Entry) it.next(); params.put(pair.getKey().toString(), pair.getValue()); it.remove(); } } StringBuilder postData = new StringBuilder(); for (Map.Entry param : params.entrySet()) { if (postData.length() != 0) postData.append('&'); postData.append(param.getKey()); postData.append('='); postData.append(String.valueOf(param.getValue())); } byte[] postDataBytes = postData.toString().getBytes("UTF-8"); httpsURLConnection = (HttpsURLConnection)url.openConnection(); httpsURLConnection.setRequestProperty("User-Agent", Helper.USER_AGENT); httpsURLConnection.setConnectTimeout(timeout * 1000); httpsURLConnection.setSSLSocketFactory(new TLSSocketFactory()); httpsURLConnection.setRequestMethod("PATCH"); if( token != null) httpsURLConnection.setRequestProperty("Authorization", "Bearer " + token); httpsURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); httpsURLConnection.setRequestProperty("Content-Length", String.valueOf(postDataBytes.length)); httpsURLConnection.setDoOutput(true); httpsURLConnection.getOutputStream().write(postDataBytes); String response; if (httpsURLConnection.getResponseCode() >= 200 && httpsURLConnection.getResponseCode() < 400) { getSinceMaxId(); response = new String(ByteStreams.toByteArray(httpsURLConnection.getInputStream())); }else { String error = new String(ByteStreams.toByteArray(httpsURLConnection.getErrorStream())); int responseCode = httpsURLConnection.getResponseCode(); httpsURLConnection.getInputStream().close(); throw new HttpsConnectionException(responseCode, error); } getSinceMaxId(); httpsURLConnection.getInputStream().close(); return response; } public int delete(String urlConnection, int timeout, HashMap paramaters, String token) throws IOException, NoSuchAlgorithmException, KeyManagementException, HttpsConnectionException { URL url = new URL(urlConnection); Map params = new LinkedHashMap<>(); if( paramaters != null) { Iterator it = paramaters.entrySet().iterator(); while (it.hasNext()) { Map.Entry pair = (Map.Entry) it.next(); params.put(pair.getKey().toString(), pair.getValue()); it.remove(); } } StringBuilder postData = new StringBuilder(); for (Map.Entry param : params.entrySet()) { if (postData.length() != 0) postData.append('&'); postData.append(param.getKey()); postData.append('='); postData.append(String.valueOf(param.getValue())); } byte[] postDataBytes = postData.toString().getBytes("UTF-8"); httpsURLConnection = (HttpsURLConnection)url.openConnection(); httpsURLConnection.setRequestProperty("User-Agent", Helper.USER_AGENT); httpsURLConnection.setSSLSocketFactory(new TLSSocketFactory()); if( token != null) httpsURLConnection.setRequestProperty("Authorization", "Bearer " + token); httpsURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); httpsURLConnection.setRequestMethod("DELETE"); httpsURLConnection.setConnectTimeout(timeout * 1000); httpsURLConnection.setRequestProperty("Content-Length", String.valueOf(postDataBytes.length)); httpsURLConnection.getOutputStream().write(postDataBytes); if (httpsURLConnection.getResponseCode() >= 200 && httpsURLConnection.getResponseCode() < 400) { getSinceMaxId(); httpsURLConnection.getInputStream().close(); return httpsURLConnection.getResponseCode(); }else { String error = new String(ByteStreams.toByteArray(httpsURLConnection.getErrorStream())); int responseCode = httpsURLConnection.getResponseCode(); httpsURLConnection.getInputStream().close(); throw new HttpsConnectionException(responseCode, error); } } public String getSince_id() { return since_id; } public String getMax_id() { return max_id; } private void getSinceMaxId(){ Map> map = httpsURLConnection.getHeaderFields(); for (Map.Entry> entry : map.entrySet()) { if( entry.toString().startsWith("Link")){ Pattern patternMaxId = Pattern.compile("max_id=([0-9]{1,}).*"); Matcher matcherMaxId = patternMaxId.matcher(entry.toString()); if (matcherMaxId.find()) { max_id = matcherMaxId.group(1); } if( entry.toString().startsWith("Link")){ Pattern patternSinceId = Pattern.compile("since_id=([0-9]{1,}).*"); Matcher matcherSinceId = patternSinceId.matcher(entry.toString()); if (matcherSinceId.find()) { since_id = matcherSinceId.group(1); } } } } } int getActionCode() { try { return httpsURLConnection.getResponseCode(); } catch (IOException e) { return -1; } } public class HttpsConnectionException extends Exception { private int statusCode; private String message; HttpsConnectionException(int statusCode, String message) { this.statusCode = statusCode; SpannableString spannableString; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) spannableString = new SpannableString(Html.fromHtml(message, Html.FROM_HTML_MODE_LEGACY)); else //noinspection deprecation spannableString = new SpannableString(Html.fromHtml(message)); this.message = spannableString.toString(); } public int getStatusCode() { return statusCode; } @Override public String getMessage() { return message; } } }