com.eduworks.cruncher.net.CruncherHttpDelete Maven / Gradle / Ivy
package com.eduworks.cruncher.net;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.net.SocketException;
import java.util.Map;
import org.apache.http.HttpEntity;
import org.apache.http.ParseException;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpDelete;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.FileEntity;
import org.apache.http.entity.InputStreamEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
import org.json.JSONException;
import org.json.JSONObject;
import com.eduworks.lang.threading.EwThreading;
import com.eduworks.lang.util.EwJson;
import com.eduworks.resolver.Context;
import com.eduworks.resolver.Cruncher;
import com.eduworks.resolver.exception.SoftException;
import com.eduworks.util.io.InMemoryFile;
public class CruncherHttpDelete extends Cruncher
{
@Override
public Object resolve(Context c, Map parameters, Map dataStreams) throws JSONException
{
String url = getAsString("url", c, parameters, dataStreams);
if (url == null)
url = getObjAsString(c, parameters, dataStreams);
boolean reliable = optAsBoolean("reliable", false, c, parameters, dataStreams);
String authToken = getAsString("authToken", c, parameters, dataStreams);
HttpDelete delete = new HttpDelete(url);
if (authToken != null && !authToken.trim().isEmpty())
{
delete.setHeader("Authorization", "Basic " + authToken);
}
for (String key : keySet())
{
if (key.equals("url"))
continue;
if (key.equals("obj"))
continue;
if (key.equals("authToken"))
continue;
if (key.equals("multipart"))
continue;
if (key.equals("name"))
continue;
if (key.equals("contentType"))
continue;
delete.setHeader(key, getAsString(key, c, parameters, dataStreams));
}
CloseableHttpClient hc = HttpClients.createDefault();
CloseableHttpResponse execute = null;
try
{
do
try
{
execute = hc.execute(delete);
}
catch (ClientProtocolException e)
{
if (reliable)
EwThreading.sleep(500);
else
e.printStackTrace();
}
catch (SocketException e)
{
if (reliable)
EwThreading.sleep(500);
else
throw new SoftException(e.getMessage());
}
catch (IOException e)
{
if (reliable)
EwThreading.sleep(500);
else
e.printStackTrace();
}
while (execute == null && reliable);
if (execute == null)
return null;
String string = null;
try
{
string = EntityUtils.toString(execute.getEntity());
}
catch (ParseException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
if (string == null)
return null;
if (EwJson.isJson(string))
return EwJson.tryParseJson(string, false);
return string;
}
finally
{
try
{
if (execute != null)
execute.close();
if (hc != null)
hc.close();
}
catch (IOException e)
{
}
}
}
@Override
public String getDescription()
{
return "Performs an HTTP Delete."
+ "\n"
+ "Results will come back as JSON or a string.";
}
@Override
public String getReturn()
{
return "JSONObject|JSONArray|String";
}
@Override
public String getAttribution()
{
return ATTRIB_NONE;
}
@Override
public JSONObject getParameters() throws JSONException
{
return jo("obj", "String", "contentType", "String", "?name", "String", "?authToken", "String");
}
}