10
10
import net .hockeyapp .android .Constants ;
11
11
import net .hockeyapp .android .utils .AsyncTaskUtils ;
12
12
import net .hockeyapp .android .utils .HockeyLog ;
13
+ import net .hockeyapp .android .utils .Util ;
13
14
14
15
import java .io .*;
15
16
import java .lang .ref .WeakReference ;
16
- import java .net .HttpURLConnection ;
17
+ import javax .net .ssl . HttpsURLConnection ; ;
17
18
import java .net .URL ;
18
19
import java .util .Arrays ;
19
20
import java .util .List ;
@@ -101,7 +102,7 @@ protected Void doInBackground(Void... params) {
101
102
}
102
103
103
104
@ SuppressLint ("StaticFieldLeak" )
104
- protected void triggerSendingForTesting (final HttpURLConnection connection , final File file , final String persistedData ) {
105
+ protected void triggerSendingForTesting (final HttpsURLConnection connection , final File file , final String persistedData ) {
105
106
if (requestCount () < MAX_REQUEST_COUNT ) {
106
107
mRequestCount .getAndIncrement ();
107
108
@@ -125,7 +126,7 @@ protected void sendAvailableFiles() {
125
126
if (this .getPersistence () != null ) {
126
127
File fileToSend = this .getPersistence ().nextAvailableFileInDirectory ();
127
128
String persistedData = loadData (fileToSend );
128
- HttpURLConnection connection = createConnection ();
129
+ HttpsURLConnection connection = createConnection ();
129
130
130
131
if ((persistedData != null ) && (connection != null )) {
131
132
send (connection , fileToSend , persistedData );
@@ -143,7 +144,7 @@ protected void sendAvailableFiles() {
143
144
* @param file
144
145
* @param persistedData
145
146
*/
146
- protected void send (HttpURLConnection connection , File file , String persistedData ) {
147
+ protected void send (HttpsURLConnection connection , File file , String persistedData ) {
147
148
// TODO Why does this get the file and persistedData reference, even though everything is in the connection?
148
149
// TODO Looks like this will have to be rewritten for its own AsyncTask subclass.
149
150
if (connection != null && file != null && persistedData != null ) {
@@ -215,9 +216,9 @@ protected String loadData(File file) {
215
216
* @return connection to the API endpoint
216
217
*/
217
218
@ SuppressWarnings ("ConstantConditions" )
218
- protected HttpURLConnection createConnection () {
219
+ protected HttpsURLConnection createConnection () {
219
220
URL url ;
220
- HttpURLConnection connection = null ;
221
+ HttpsURLConnection connection = null ;
221
222
try {
222
223
if (getCustomServerURL () == null ) {
223
224
url = new URL (DEFAULT_ENDPOINT_URL );
@@ -230,8 +231,8 @@ protected HttpURLConnection createConnection() {
230
231
}
231
232
}
232
233
233
- // TODO Replace with HttpUrlConnectionBuilder calls - expand this if necessary.
234
- connection = ( HttpURLConnection ) url . openConnection ( );
234
+ // TODO Replace with HttpsUrlConnectionBuilder calls - expand this if necessary.
235
+ connection = Util . openHttpsConnection ( url );
235
236
connection .setReadTimeout (DEFAULT_SENDER_READ_TIMEOUT );
236
237
connection .setConnectTimeout (DEFAULT_SENDER_CONNECT_TIMEOUT );
237
238
connection .setRequestMethod ("POST" );
@@ -253,7 +254,7 @@ protected HttpURLConnection createConnection() {
253
254
* @param payload the payload which generated this response
254
255
* @param fileToSend reference to the file we want to send
255
256
*/
256
- protected void onResponse (HttpURLConnection connection , int responseCode , String payload , File
257
+ protected void onResponse (HttpsURLConnection connection , int responseCode , String payload , File
257
258
fileToSend ) {
258
259
// TODO Remove possible redundancy between response code and connection which also provides the same response code.
259
260
// TODO This looks like a weird solution to keep the reference to the payload and the sent file.
@@ -301,9 +302,9 @@ protected boolean isRecoverableError(int responseCode) {
301
302
429 -> TOO MANY REQUESTS
302
303
503 -> SERVICE UNAVAILABLE
303
304
511 -> NETWORK AUTHENTICATION REQUIRED
304
- All not available in HttpUrlConnection , thus listed here for reference.
305
+ All not available in HttpsUrlConnection , thus listed here for reference.
305
306
*/
306
- List <Integer > recoverableCodes = Arrays .asList (HttpURLConnection .HTTP_CLIENT_TIMEOUT , 429 , HttpURLConnection .HTTP_INTERNAL_ERROR , 503 , 511 );
307
+ List <Integer > recoverableCodes = Arrays .asList (HttpsURLConnection .HTTP_CLIENT_TIMEOUT , 429 , HttpsURLConnection .HTTP_INTERNAL_ERROR , 503 , 511 );
307
308
return recoverableCodes .contains (responseCode );
308
309
}
309
310
@@ -314,7 +315,7 @@ protected boolean isRecoverableError(int responseCode) {
314
315
* @return True, if the response code means a successful operation, otherwise false.
315
316
*/
316
317
protected boolean isExpected (int responseCode ) {
317
- return (HttpURLConnection .HTTP_OK <= responseCode && responseCode <= HttpURLConnection .HTTP_NOT_AUTHORITATIVE );
318
+ return (HttpsURLConnection .HTTP_OK <= responseCode && responseCode <= HttpsURLConnection .HTTP_NOT_AUTHORITATIVE );
318
319
}
319
320
320
321
/**
@@ -324,7 +325,7 @@ protected boolean isExpected(int responseCode) {
324
325
* @param responseCode The response code from the connection.
325
326
* @param builder A string builder for storing the response.
326
327
*/
327
- protected void onUnexpected (HttpURLConnection connection , int responseCode , StringBuilder
328
+ protected void onUnexpected (HttpsURLConnection connection , int responseCode , StringBuilder
328
329
builder ) {
329
330
String message = String .format (Locale .ROOT , "Unexpected response code: %d" , responseCode );
330
331
builder .append (message );
@@ -344,7 +345,7 @@ protected void onUnexpected(HttpURLConnection connection, int responseCode, Stri
344
345
* @param connection the connection
345
346
* @param payload the payload of telemetry data
346
347
*/
347
- private void logRequest (HttpURLConnection connection , String payload ) throws IOException , SecurityException {
348
+ private void logRequest (HttpsURLConnection connection , String payload ) throws IOException , SecurityException {
348
349
// TODO Rename this to reflect the true nature of this method: Sending the payload
349
350
Writer writer = null ;
350
351
try {
@@ -373,7 +374,7 @@ private void logRequest(HttpURLConnection connection, String payload) throws IOE
373
374
* @param connection the connection which will read the response
374
375
* @param builder a string builder for storing the response
375
376
*/
376
- protected void readResponse (HttpURLConnection connection , StringBuilder builder ) {
377
+ protected void readResponse (HttpsURLConnection connection , StringBuilder builder ) {
377
378
String result ;
378
379
StringBuilder buffer = new StringBuilder ();
379
380
InputStream inputStream = null ;
@@ -423,7 +424,7 @@ protected void readResponse(HttpURLConnection connection, StringBuilder builder)
423
424
* @throws java.io.IOException Exception thrown by GZIP (used in SDK 19+)
424
425
*/
425
426
@ TargetApi (Build .VERSION_CODES .KITKAT )
426
- protected Writer getWriter (HttpURLConnection connection ) throws IOException {
427
+ protected Writer getWriter (HttpsURLConnection connection ) throws IOException {
427
428
if (Build .VERSION .SDK_INT >= Build .VERSION_CODES .KITKAT ) {
428
429
// GZIP if we are running SDK 19 or higher
429
430
connection .addRequestProperty ("Content-Encoding" , "gzip" );
0 commit comments