mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
update to use same try-with-resources for CloseableHttpClient and CloseableHttpResponse
This commit is contained in:
@ -28,9 +28,9 @@ import com.kingsrook.qqq.backend.core.model.actions.tables.count.CountInput;
|
|||||||
import com.kingsrook.qqq.backend.core.model.actions.tables.count.CountOutput;
|
import com.kingsrook.qqq.backend.core.model.actions.tables.count.CountOutput;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.tables.query.QQueryFilter;
|
import com.kingsrook.qqq.backend.core.model.actions.tables.query.QQueryFilter;
|
||||||
import com.kingsrook.qqq.backend.core.model.metadata.tables.QTableMetaData;
|
import com.kingsrook.qqq.backend.core.model.metadata.tables.QTableMetaData;
|
||||||
import org.apache.http.HttpResponse;
|
import org.apache.http.client.methods.CloseableHttpResponse;
|
||||||
import org.apache.http.client.HttpClient;
|
|
||||||
import org.apache.http.client.methods.HttpGet;
|
import org.apache.http.client.methods.HttpGet;
|
||||||
|
import org.apache.http.impl.client.CloseableHttpClient;
|
||||||
import org.apache.http.impl.client.HttpClientBuilder;
|
import org.apache.http.impl.client.HttpClientBuilder;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
@ -53,14 +53,11 @@ public class APICountAction extends AbstractAPIAction implements CountInterface
|
|||||||
QTableMetaData table = countInput.getTable();
|
QTableMetaData table = countInput.getTable();
|
||||||
preAction(countInput);
|
preAction(countInput);
|
||||||
|
|
||||||
try
|
try(CloseableHttpClient httpClient = HttpClientBuilder.create().build())
|
||||||
{
|
{
|
||||||
QQueryFilter filter = countInput.getFilter();
|
QQueryFilter filter = countInput.getFilter();
|
||||||
String paramString = apiActionUtil.buildQueryStringForGet(filter, null, null, table.getFields());
|
String paramString = apiActionUtil.buildQueryStringForGet(filter, null, null, table.getFields());
|
||||||
|
|
||||||
HttpClientBuilder httpClientBuilder = HttpClientBuilder.create();
|
|
||||||
HttpClient client = httpClientBuilder.build();
|
|
||||||
|
|
||||||
String url = apiActionUtil.buildTableUrl(table) + paramString;
|
String url = apiActionUtil.buildTableUrl(table) + paramString;
|
||||||
LOG.info("API URL: " + url);
|
LOG.info("API URL: " + url);
|
||||||
HttpGet request = new HttpGet(url);
|
HttpGet request = new HttpGet(url);
|
||||||
@ -69,13 +66,15 @@ public class APICountAction extends AbstractAPIAction implements CountInterface
|
|||||||
apiActionUtil.setupContentTypeInRequest(request);
|
apiActionUtil.setupContentTypeInRequest(request);
|
||||||
apiActionUtil.setupAdditionalHeaders(request);
|
apiActionUtil.setupAdditionalHeaders(request);
|
||||||
|
|
||||||
HttpResponse response = client.execute(request);
|
try(CloseableHttpResponse response = httpClient.execute(request))
|
||||||
|
{
|
||||||
Integer count = apiActionUtil.processGetResponseForCount(table, response);
|
Integer count = apiActionUtil.processGetResponseForCount(table, response);
|
||||||
|
|
||||||
CountOutput rs = new CountOutput();
|
CountOutput rs = new CountOutput();
|
||||||
rs.setCount(count);
|
rs.setCount(count);
|
||||||
return rs;
|
return rs;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
catch(Exception e)
|
catch(Exception e)
|
||||||
{
|
{
|
||||||
LOG.warn("Error in API count", e);
|
LOG.warn("Error in API count", e);
|
||||||
|
@ -28,7 +28,7 @@ import com.kingsrook.qqq.backend.core.model.actions.tables.get.GetInput;
|
|||||||
import com.kingsrook.qqq.backend.core.model.actions.tables.get.GetOutput;
|
import com.kingsrook.qqq.backend.core.model.actions.tables.get.GetOutput;
|
||||||
import com.kingsrook.qqq.backend.core.model.data.QRecord;
|
import com.kingsrook.qqq.backend.core.model.data.QRecord;
|
||||||
import com.kingsrook.qqq.backend.core.model.metadata.tables.QTableMetaData;
|
import com.kingsrook.qqq.backend.core.model.metadata.tables.QTableMetaData;
|
||||||
import org.apache.http.HttpResponse;
|
import org.apache.http.client.methods.CloseableHttpResponse;
|
||||||
import org.apache.http.client.methods.HttpGet;
|
import org.apache.http.client.methods.HttpGet;
|
||||||
import org.apache.http.impl.client.CloseableHttpClient;
|
import org.apache.http.impl.client.CloseableHttpClient;
|
||||||
import org.apache.http.impl.client.HttpClientBuilder;
|
import org.apache.http.impl.client.HttpClientBuilder;
|
||||||
@ -53,8 +53,7 @@ public class APIGetAction extends AbstractAPIAction implements GetInterface
|
|||||||
QTableMetaData table = getInput.getTable();
|
QTableMetaData table = getInput.getTable();
|
||||||
preAction(getInput);
|
preAction(getInput);
|
||||||
|
|
||||||
HttpClientBuilder httpClientBuilder = HttpClientBuilder.create();
|
try(CloseableHttpClient httpClient = HttpClientBuilder.create().build())
|
||||||
try(CloseableHttpClient client = httpClientBuilder.build())
|
|
||||||
{
|
{
|
||||||
String urlSuffix = apiActionUtil.buildUrlSuffixForSingleRecordGet(getInput.getPrimaryKey());
|
String urlSuffix = apiActionUtil.buildUrlSuffixForSingleRecordGet(getInput.getPrimaryKey());
|
||||||
|
|
||||||
@ -65,13 +64,15 @@ public class APIGetAction extends AbstractAPIAction implements GetInterface
|
|||||||
apiActionUtil.setupContentTypeInRequest(request);
|
apiActionUtil.setupContentTypeInRequest(request);
|
||||||
apiActionUtil.setupAdditionalHeaders(request);
|
apiActionUtil.setupAdditionalHeaders(request);
|
||||||
|
|
||||||
HttpResponse response = client.execute(request);
|
try(CloseableHttpResponse response = httpClient.execute(request))
|
||||||
|
{
|
||||||
QRecord record = apiActionUtil.processSingleRecordGetResponse(table, response);
|
QRecord record = apiActionUtil.processSingleRecordGetResponse(table, response);
|
||||||
|
|
||||||
GetOutput rs = new GetOutput();
|
GetOutput rs = new GetOutput();
|
||||||
rs.setRecord(record);
|
rs.setRecord(record);
|
||||||
return rs;
|
return rs;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
catch(Exception e)
|
catch(Exception e)
|
||||||
{
|
{
|
||||||
LOG.warn("Error in API get", e);
|
LOG.warn("Error in API get", e);
|
||||||
|
@ -33,12 +33,11 @@ import com.kingsrook.qqq.backend.core.model.metadata.tables.QTableMetaData;
|
|||||||
import com.kingsrook.qqq.backend.core.utils.CollectionUtils;
|
import com.kingsrook.qqq.backend.core.utils.CollectionUtils;
|
||||||
import com.kingsrook.qqq.backend.core.utils.SleepUtils;
|
import com.kingsrook.qqq.backend.core.utils.SleepUtils;
|
||||||
import com.kingsrook.qqq.backend.module.api.exceptions.RateLimitException;
|
import com.kingsrook.qqq.backend.module.api.exceptions.RateLimitException;
|
||||||
import org.apache.http.HttpResponse;
|
import org.apache.http.HttpStatus;
|
||||||
|
import org.apache.http.client.methods.CloseableHttpResponse;
|
||||||
import org.apache.http.client.methods.HttpPost;
|
import org.apache.http.client.methods.HttpPost;
|
||||||
import org.apache.http.conn.HttpClientConnectionManager;
|
|
||||||
import org.apache.http.impl.client.CloseableHttpClient;
|
import org.apache.http.impl.client.CloseableHttpClient;
|
||||||
import org.apache.http.impl.client.HttpClients;
|
import org.apache.http.impl.client.HttpClientBuilder;
|
||||||
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
|
|
||||||
import org.apache.http.util.EntityUtils;
|
import org.apache.http.util.EntityUtils;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
@ -72,11 +71,8 @@ public class APIInsertAction extends AbstractAPIAction implements InsertInterfac
|
|||||||
|
|
||||||
preAction(insertInput);
|
preAction(insertInput);
|
||||||
|
|
||||||
HttpClientConnectionManager connectionManager = null;
|
try(CloseableHttpClient httpClient = HttpClientBuilder.create().build())
|
||||||
try
|
|
||||||
{
|
{
|
||||||
connectionManager = new PoolingHttpClientConnectionManager();
|
|
||||||
|
|
||||||
// todo - supports bulk post?
|
// todo - supports bulk post?
|
||||||
|
|
||||||
for(QRecord record : insertInput.getRecords())
|
for(QRecord record : insertInput.getRecords())
|
||||||
@ -87,7 +83,7 @@ public class APIInsertAction extends AbstractAPIAction implements InsertInterfac
|
|||||||
//////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////
|
||||||
insertInput.getAsyncJobCallback().incrementCurrent();
|
insertInput.getAsyncJobCallback().incrementCurrent();
|
||||||
|
|
||||||
postOneRecord(insertOutput, table, connectionManager, record);
|
postOneRecord(insertOutput, table, httpClient, record);
|
||||||
|
|
||||||
if(insertInput.getRecords().size() > 1 && apiActionUtil.getMillisToSleepAfterEveryCall() > 0)
|
if(insertInput.getRecords().size() > 1 && apiActionUtil.getMillisToSleepAfterEveryCall() > 0)
|
||||||
{
|
{
|
||||||
@ -102,14 +98,6 @@ public class APIInsertAction extends AbstractAPIAction implements InsertInterfac
|
|||||||
LOG.warn("Error in API Insert for [" + table.getName() + "]", e);
|
LOG.warn("Error in API Insert for [" + table.getName() + "]", e);
|
||||||
throw new QException("Error executing insert: " + e.getMessage(), e);
|
throw new QException("Error executing insert: " + e.getMessage(), e);
|
||||||
}
|
}
|
||||||
finally
|
|
||||||
{
|
|
||||||
if(connectionManager != null)
|
|
||||||
{
|
|
||||||
connectionManager.shutdown();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -117,7 +105,7 @@ public class APIInsertAction extends AbstractAPIAction implements InsertInterfac
|
|||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
private void postOneRecord(InsertOutput insertOutput, QTableMetaData table, HttpClientConnectionManager connectionManager, QRecord record) throws RateLimitException
|
private void postOneRecord(InsertOutput insertOutput, QTableMetaData table, CloseableHttpClient httpClient, QRecord record) throws RateLimitException
|
||||||
{
|
{
|
||||||
int sleepMillis = apiActionUtil.getInitialRateLimitBackoffMillis();
|
int sleepMillis = apiActionUtil.getInitialRateLimitBackoffMillis();
|
||||||
int rateLimitsCaught = 0;
|
int rateLimitsCaught = 0;
|
||||||
@ -125,7 +113,7 @@ public class APIInsertAction extends AbstractAPIAction implements InsertInterfac
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
postOneTime(insertOutput, table, connectionManager, record);
|
postOneTime(insertOutput, table, httpClient, record);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
catch(RateLimitException rle)
|
catch(RateLimitException rle)
|
||||||
@ -151,9 +139,9 @@ public class APIInsertAction extends AbstractAPIAction implements InsertInterfac
|
|||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
private void postOneTime(InsertOutput insertOutput, QTableMetaData table, HttpClientConnectionManager connectionManager, QRecord record) throws RateLimitException
|
private void postOneTime(InsertOutput insertOutput, QTableMetaData table, CloseableHttpClient httpClient, QRecord record) throws RateLimitException
|
||||||
{
|
{
|
||||||
try(CloseableHttpClient client = HttpClients.custom().setConnectionManager(connectionManager).build())
|
try
|
||||||
{
|
{
|
||||||
String url = apiActionUtil.buildTableUrl(table);
|
String url = apiActionUtil.buildTableUrl(table);
|
||||||
HttpPost request = new HttpPost(url);
|
HttpPost request = new HttpPost(url);
|
||||||
@ -163,9 +151,10 @@ public class APIInsertAction extends AbstractAPIAction implements InsertInterfac
|
|||||||
|
|
||||||
request.setEntity(apiActionUtil.recordToEntity(table, record));
|
request.setEntity(apiActionUtil.recordToEntity(table, record));
|
||||||
|
|
||||||
HttpResponse response = client.execute(request);
|
try(CloseableHttpResponse response = httpClient.execute(request))
|
||||||
|
{
|
||||||
int statusCode = response.getStatusLine().getStatusCode();
|
int statusCode = response.getStatusLine().getStatusCode();
|
||||||
if(statusCode == 429)
|
if(statusCode == HttpStatus.SC_TOO_MANY_REQUESTS)
|
||||||
{
|
{
|
||||||
throw (new RateLimitException(EntityUtils.toString(response.getEntity())));
|
throw (new RateLimitException(EntityUtils.toString(response.getEntity())));
|
||||||
}
|
}
|
||||||
@ -173,6 +162,7 @@ public class APIInsertAction extends AbstractAPIAction implements InsertInterfac
|
|||||||
QRecord outputRecord = apiActionUtil.processPostResponse(table, record, response);
|
QRecord outputRecord = apiActionUtil.processPostResponse(table, record, response);
|
||||||
insertOutput.addRecord(outputRecord);
|
insertOutput.addRecord(outputRecord);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
catch(RateLimitException rle)
|
catch(RateLimitException rle)
|
||||||
{
|
{
|
||||||
throw (rle);
|
throw (rle);
|
||||||
|
@ -28,9 +28,9 @@ import com.kingsrook.qqq.backend.core.model.actions.tables.query.QQueryFilter;
|
|||||||
import com.kingsrook.qqq.backend.core.model.actions.tables.query.QueryInput;
|
import com.kingsrook.qqq.backend.core.model.actions.tables.query.QueryInput;
|
||||||
import com.kingsrook.qqq.backend.core.model.actions.tables.query.QueryOutput;
|
import com.kingsrook.qqq.backend.core.model.actions.tables.query.QueryOutput;
|
||||||
import com.kingsrook.qqq.backend.core.model.metadata.tables.QTableMetaData;
|
import com.kingsrook.qqq.backend.core.model.metadata.tables.QTableMetaData;
|
||||||
import org.apache.http.HttpResponse;
|
import org.apache.http.client.methods.CloseableHttpResponse;
|
||||||
import org.apache.http.client.HttpClient;
|
|
||||||
import org.apache.http.client.methods.HttpGet;
|
import org.apache.http.client.methods.HttpGet;
|
||||||
|
import org.apache.http.impl.client.CloseableHttpClient;
|
||||||
import org.apache.http.impl.client.HttpClientBuilder;
|
import org.apache.http.impl.client.HttpClientBuilder;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
@ -66,14 +66,11 @@ public class APIQueryAction extends AbstractAPIAction implements QueryInterface
|
|||||||
int totalCount = 0;
|
int totalCount = 0;
|
||||||
while(true)
|
while(true)
|
||||||
{
|
{
|
||||||
try
|
try(CloseableHttpClient httpClient = HttpClientBuilder.create().build())
|
||||||
{
|
{
|
||||||
QQueryFilter filter = queryInput.getFilter();
|
QQueryFilter filter = queryInput.getFilter();
|
||||||
String paramString = apiActionUtil.buildQueryStringForGet(filter, limit, skip, table.getFields());
|
String paramString = apiActionUtil.buildQueryStringForGet(filter, limit, skip, table.getFields());
|
||||||
|
|
||||||
HttpClientBuilder httpClientBuilder = HttpClientBuilder.create();
|
|
||||||
HttpClient client = httpClientBuilder.build();
|
|
||||||
|
|
||||||
String url = apiActionUtil.buildTableUrl(table) + paramString;
|
String url = apiActionUtil.buildTableUrl(table) + paramString;
|
||||||
LOG.info("API URL: " + url);
|
LOG.info("API URL: " + url);
|
||||||
|
|
||||||
@ -86,8 +83,8 @@ public class APIQueryAction extends AbstractAPIAction implements QueryInterface
|
|||||||
apiActionUtil.setupContentTypeInRequest(request);
|
apiActionUtil.setupContentTypeInRequest(request);
|
||||||
apiActionUtil.setupAdditionalHeaders(request);
|
apiActionUtil.setupAdditionalHeaders(request);
|
||||||
|
|
||||||
HttpResponse response = client.execute(request);
|
try(CloseableHttpResponse response = httpClient.execute(request))
|
||||||
|
{
|
||||||
int count = apiActionUtil.processGetResponse(table, response, queryOutput);
|
int count = apiActionUtil.processGetResponse(table, response, queryOutput);
|
||||||
totalCount += count;
|
totalCount += count;
|
||||||
|
|
||||||
@ -125,6 +122,7 @@ public class APIQueryAction extends AbstractAPIAction implements QueryInterface
|
|||||||
}
|
}
|
||||||
skip += count;
|
skip += count;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
catch(Exception e)
|
catch(Exception e)
|
||||||
{
|
{
|
||||||
LOG.warn("Error in API Query", e);
|
LOG.warn("Error in API Query", e);
|
||||||
|
@ -34,13 +34,11 @@ import com.kingsrook.qqq.backend.core.model.metadata.tables.QTableMetaData;
|
|||||||
import com.kingsrook.qqq.backend.core.utils.CollectionUtils;
|
import com.kingsrook.qqq.backend.core.utils.CollectionUtils;
|
||||||
import com.kingsrook.qqq.backend.core.utils.SleepUtils;
|
import com.kingsrook.qqq.backend.core.utils.SleepUtils;
|
||||||
import com.kingsrook.qqq.backend.module.api.exceptions.RateLimitException;
|
import com.kingsrook.qqq.backend.module.api.exceptions.RateLimitException;
|
||||||
import org.apache.http.HttpResponse;
|
|
||||||
import org.apache.http.HttpStatus;
|
import org.apache.http.HttpStatus;
|
||||||
|
import org.apache.http.client.methods.CloseableHttpResponse;
|
||||||
import org.apache.http.client.methods.HttpPost;
|
import org.apache.http.client.methods.HttpPost;
|
||||||
import org.apache.http.conn.HttpClientConnectionManager;
|
|
||||||
import org.apache.http.impl.client.CloseableHttpClient;
|
import org.apache.http.impl.client.CloseableHttpClient;
|
||||||
import org.apache.http.impl.client.HttpClients;
|
import org.apache.http.impl.client.HttpClientBuilder;
|
||||||
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
|
|
||||||
import org.apache.http.util.EntityUtils;
|
import org.apache.http.util.EntityUtils;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
@ -74,17 +72,14 @@ public class APIUpdateAction extends AbstractAPIAction implements UpdateInterfac
|
|||||||
QTableMetaData table = updateInput.getTable();
|
QTableMetaData table = updateInput.getTable();
|
||||||
preAction(updateInput);
|
preAction(updateInput);
|
||||||
|
|
||||||
HttpClientConnectionManager connectionManager = null;
|
try(CloseableHttpClient httpClient = HttpClientBuilder.create().build())
|
||||||
try
|
|
||||||
{
|
{
|
||||||
connectionManager = new PoolingHttpClientConnectionManager();
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////
|
||||||
// make post requests for groups of orders that need updated //
|
// make post requests for groups of orders that need updated //
|
||||||
///////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////
|
||||||
for(List<QRecord> recordList : CollectionUtils.getPages(updateInput.getRecords(), 20))
|
for(List<QRecord> recordList : CollectionUtils.getPages(updateInput.getRecords(), 20))
|
||||||
{
|
{
|
||||||
processRecords(table, connectionManager, recordList);
|
processRecords(table, httpClient, recordList);
|
||||||
for(QRecord qRecord : recordList)
|
for(QRecord qRecord : recordList)
|
||||||
{
|
{
|
||||||
updateOutput.addRecord(qRecord);
|
updateOutput.addRecord(qRecord);
|
||||||
@ -102,14 +97,6 @@ public class APIUpdateAction extends AbstractAPIAction implements UpdateInterfac
|
|||||||
LOG.warn("Error in API Insert for [" + table.getName() + "]", e);
|
LOG.warn("Error in API Insert for [" + table.getName() + "]", e);
|
||||||
throw new QException("Error executing update: " + e.getMessage(), e);
|
throw new QException("Error executing update: " + e.getMessage(), e);
|
||||||
}
|
}
|
||||||
finally
|
|
||||||
{
|
|
||||||
if(connectionManager != null)
|
|
||||||
{
|
|
||||||
connectionManager.shutdown();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -117,7 +104,7 @@ public class APIUpdateAction extends AbstractAPIAction implements UpdateInterfac
|
|||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
private void processRecords(QTableMetaData table, HttpClientConnectionManager connectionManager, List<QRecord> recordList) throws QException
|
private void processRecords(QTableMetaData table, CloseableHttpClient httpClient, List<QRecord> recordList) throws QException
|
||||||
{
|
{
|
||||||
int sleepMillis = apiActionUtil.getInitialRateLimitBackoffMillis();
|
int sleepMillis = apiActionUtil.getInitialRateLimitBackoffMillis();
|
||||||
int rateLimitsCaught = 0;
|
int rateLimitsCaught = 0;
|
||||||
@ -125,7 +112,7 @@ public class APIUpdateAction extends AbstractAPIAction implements UpdateInterfac
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
doPost(table, connectionManager, recordList);
|
doPost(table, httpClient, recordList);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
catch(RateLimitException rle)
|
catch(RateLimitException rle)
|
||||||
@ -149,9 +136,9 @@ public class APIUpdateAction extends AbstractAPIAction implements UpdateInterfac
|
|||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
private void doPost(QTableMetaData table, HttpClientConnectionManager connectionManager, List<QRecord> recordList) throws RateLimitException, QException
|
private void doPost(QTableMetaData table, CloseableHttpClient httpClient, List<QRecord> recordList) throws RateLimitException, QException
|
||||||
{
|
{
|
||||||
try(CloseableHttpClient client = HttpClients.custom().setConnectionManager(connectionManager).build())
|
try
|
||||||
{
|
{
|
||||||
String url = apiActionUtil.buildTableUrl(table);
|
String url = apiActionUtil.buildTableUrl(table);
|
||||||
HttpPost request = new HttpPost(url);
|
HttpPost request = new HttpPost(url);
|
||||||
@ -161,7 +148,8 @@ public class APIUpdateAction extends AbstractAPIAction implements UpdateInterfac
|
|||||||
|
|
||||||
request.setEntity(apiActionUtil.recordsToEntity(table, recordList));
|
request.setEntity(apiActionUtil.recordsToEntity(table, recordList));
|
||||||
|
|
||||||
HttpResponse response = client.execute(request);
|
try(CloseableHttpResponse response = httpClient.execute(request))
|
||||||
|
{
|
||||||
int statusCode = response.getStatusLine().getStatusCode();
|
int statusCode = response.getStatusLine().getStatusCode();
|
||||||
String responseString = EntityUtils.toString(response.getEntity());
|
String responseString = EntityUtils.toString(response.getEntity());
|
||||||
if(statusCode == HttpStatus.SC_TOO_MANY_REQUESTS)
|
if(statusCode == HttpStatus.SC_TOO_MANY_REQUESTS)
|
||||||
@ -185,6 +173,7 @@ public class APIUpdateAction extends AbstractAPIAction implements UpdateInterfac
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
catch(RateLimitException | QException e)
|
catch(RateLimitException | QException e)
|
||||||
{
|
{
|
||||||
throw (e);
|
throw (e);
|
||||||
|
@ -64,7 +64,7 @@ public class EasyPostApiTest
|
|||||||
{
|
{
|
||||||
QRecord record = new QRecord()
|
QRecord record = new QRecord()
|
||||||
.withValue("__ignoreMe", "123")
|
.withValue("__ignoreMe", "123")
|
||||||
.withValue("carrierCode", "USPS")
|
.withValue("carrier", "USPS")
|
||||||
.withValue("trackingNo", "EZ4000000004");
|
.withValue("trackingNo", "EZ4000000004");
|
||||||
|
|
||||||
InsertInput insertInput = new InsertInput(TestUtils.defineInstance());
|
InsertInput insertInput = new InsertInput(TestUtils.defineInstance());
|
||||||
@ -79,6 +79,30 @@ public class EasyPostApiTest
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Test
|
||||||
|
void testPostMultiple() throws QException
|
||||||
|
{
|
||||||
|
QRecord record1 = new QRecord().withValue("carrier", "USPS").withValue("trackingNo", "EZ1000000001");
|
||||||
|
QRecord record2 = new QRecord().withValue("carrier", "USPS").withValue("trackingNo", "EZ2000000002");
|
||||||
|
|
||||||
|
InsertInput insertInput = new InsertInput(TestUtils.defineInstance());
|
||||||
|
insertInput.setSession(new QSession());
|
||||||
|
insertInput.setTableName("easypostTracker");
|
||||||
|
insertInput.setRecords(List.of(record1, record2));
|
||||||
|
InsertOutput insertOutput = new InsertAction().execute(insertInput);
|
||||||
|
|
||||||
|
QRecord outputRecord0 = insertOutput.getRecords().get(0);
|
||||||
|
assertNotNull(outputRecord0.getValue("id"), "Should get a tracker id");
|
||||||
|
|
||||||
|
QRecord outputRecord1 = insertOutput.getRecords().get(1);
|
||||||
|
assertNotNull(outputRecord1.getValue("id"), "Should get a tracker id");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
@ -109,7 +133,7 @@ public class EasyPostApiTest
|
|||||||
((APIBackendMetaData) backend).setApiKey("not-valid");
|
((APIBackendMetaData) backend).setApiKey("not-valid");
|
||||||
|
|
||||||
QRecord record = new QRecord()
|
QRecord record = new QRecord()
|
||||||
.withValue("carrierCode", "USPS")
|
.withValue("carrier", "USPS")
|
||||||
.withValue("trackingNo", "EZ1000000001");
|
.withValue("trackingNo", "EZ1000000001");
|
||||||
|
|
||||||
InsertInput insertInput = new InsertInput(instance);
|
InsertInput insertInput = new InsertInput(instance);
|
||||||
@ -132,7 +156,7 @@ public class EasyPostApiTest
|
|||||||
void testPostTrackerError() throws QException
|
void testPostTrackerError() throws QException
|
||||||
{
|
{
|
||||||
QRecord record = new QRecord()
|
QRecord record = new QRecord()
|
||||||
.withValue("carrierCode", "USPS")
|
.withValue("carrier", "USPS")
|
||||||
.withValue("trackingNo", "Not-Valid-Tracking-No");
|
.withValue("trackingNo", "Not-Valid-Tracking-No");
|
||||||
|
|
||||||
InsertInput insertInput = new InsertInput(TestUtils.defineInstance());
|
InsertInput insertInput = new InsertInput(TestUtils.defineInstance());
|
||||||
|
@ -102,7 +102,7 @@ public class TestUtils
|
|||||||
.withBackendName("easypost")
|
.withBackendName("easypost")
|
||||||
.withField(new QFieldMetaData("id", QFieldType.STRING))
|
.withField(new QFieldMetaData("id", QFieldType.STRING))
|
||||||
.withField(new QFieldMetaData("trackingNo", QFieldType.STRING).withBackendName("tracking_code"))
|
.withField(new QFieldMetaData("trackingNo", QFieldType.STRING).withBackendName("tracking_code"))
|
||||||
.withField(new QFieldMetaData("carrierCode", QFieldType.STRING).withBackendName("carrier"))
|
.withField(new QFieldMetaData("carrier", QFieldType.STRING).withBackendName("carrier"))
|
||||||
.withPrimaryKeyField("id")
|
.withPrimaryKeyField("id")
|
||||||
.withBackendDetails(new APITableBackendDetails()
|
.withBackendDetails(new APITableBackendDetails()
|
||||||
.withTablePath("trackers")
|
.withTablePath("trackers")
|
||||||
|
Reference in New Issue
Block a user