use of org.apache.http.entity.mime.MultipartEntityBuilder in project ef-app_android by eurofurence.
the class ArtShowApi method apiV2ArtShowItemActivitesNotificationBundlesSendPost.
/**
* * Requires authorization * Requires any of the following roles: **`Developer`**, **`System`**
*/
public void apiV2ArtShowItemActivitesNotificationBundlesSendPost(final Response.Listener<String> responseListener, final Response.ErrorListener errorListener) {
Object postBody = null;
// create path and map variables
String path = "/Api/v2/ArtShow/ItemActivites/NotificationBundles/Send".replaceAll("\\{format\\}", "json");
// query params
List<Pair> queryParams = new ArrayList<Pair>();
// header params
Map<String, String> headerParams = new HashMap<String, String>();
// form params
Map<String, String> formParams = new HashMap<String, String>();
String[] contentTypes = {};
String contentType = contentTypes.length > 0 ? contentTypes[0] : "application/json";
if (contentType.startsWith("multipart/form-data")) {
// file uploading
MultipartEntityBuilder localVarBuilder = MultipartEntityBuilder.create();
HttpEntity httpEntity = localVarBuilder.build();
postBody = httpEntity;
} else {
// normal form params
}
String[] authNames = new String[] { "Bearer" };
try {
apiInvoker.invokeAPI(basePath, path, "POST", queryParams, postBody, headerParams, formParams, contentType, authNames, new Response.Listener<String>() {
@Override
public void onResponse(String localVarResponse) {
responseListener.onResponse(localVarResponse);
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
errorListener.onErrorResponse(error);
}
});
} catch (ApiException ex) {
errorListener.onErrorResponse(new VolleyError(ex));
}
}
use of org.apache.http.entity.mime.MultipartEntityBuilder in project ef-app_android by eurofurence.
the class CommunicationApi method apiV2CommunicationPrivateMessagesGet.
/**
* Retrieves all private messages of an authenticated attendee.
* * Requires authorization * Requires any of the following roles: **`Attendee`** This will set the `ReceivedDateTimeUtc` to the current server time on all messages retrieved that have not been retrieved in a previous call.
* @return List<PrivateMessageRecord>
*/
public List<PrivateMessageRecord> apiV2CommunicationPrivateMessagesGet() throws TimeoutException, ExecutionException, InterruptedException, ApiException {
Object postBody = null;
// create path and map variables
String path = "/Api/v2/Communication/PrivateMessages".replaceAll("\\{format\\}", "json");
// query params
List<Pair> queryParams = new ArrayList<Pair>();
// header params
Map<String, String> headerParams = new HashMap<String, String>();
// form params
Map<String, String> formParams = new HashMap<String, String>();
String[] contentTypes = {};
String contentType = contentTypes.length > 0 ? contentTypes[0] : "application/json";
if (contentType.startsWith("multipart/form-data")) {
// file uploading
MultipartEntityBuilder localVarBuilder = MultipartEntityBuilder.create();
HttpEntity httpEntity = localVarBuilder.build();
postBody = httpEntity;
} else {
// normal form params
}
String[] authNames = new String[] { "Bearer" };
try {
String localVarResponse = apiInvoker.invokeAPI(basePath, path, "GET", queryParams, postBody, headerParams, formParams, contentType, authNames);
if (localVarResponse != null) {
return (List<PrivateMessageRecord>) ApiInvoker.deserialize(localVarResponse, "array", PrivateMessageRecord.class);
} else {
return null;
}
} catch (ApiException ex) {
throw ex;
} catch (InterruptedException ex) {
throw ex;
} catch (ExecutionException ex) {
if (ex.getCause() instanceof VolleyError) {
VolleyError volleyError = (VolleyError) ex.getCause();
if (volleyError.networkResponse != null) {
throw new ApiException(volleyError.networkResponse.statusCode, volleyError.getMessage());
}
}
throw ex;
} catch (TimeoutException ex) {
throw ex;
}
}
use of org.apache.http.entity.mime.MultipartEntityBuilder in project ef-app_android by eurofurence.
the class CommunicationApi method apiV2CommunicationPrivateMessagesPost.
/**
* Sends a private message to a specific recipient/attendee.
* * Requires authorization * Requires any of the following roles: **`Action-PrivateMessages-Send`**, **`Developer`**, **`System`** If the backend has a push-channel available to any given device(s) that are currently signed into the app with the same recipient uid, it will push a toast message to those devices. The toast message content is defined by the `ToastTitle` and `ToastMessage` properties.
* @param request
*/
public void apiV2CommunicationPrivateMessagesPost(SendPrivateMessageRequest request, final Response.Listener<UUID> responseListener, final Response.ErrorListener errorListener) {
Object postBody = request;
// create path and map variables
String path = "/Api/v2/Communication/PrivateMessages".replaceAll("\\{format\\}", "json");
// query params
List<Pair> queryParams = new ArrayList<Pair>();
// header params
Map<String, String> headerParams = new HashMap<String, String>();
// form params
Map<String, String> formParams = new HashMap<String, String>();
String[] contentTypes = { "application/json", "text/json", "application/json-patch+json" };
String contentType = contentTypes.length > 0 ? contentTypes[0] : "application/json";
if (contentType.startsWith("multipart/form-data")) {
// file uploading
MultipartEntityBuilder localVarBuilder = MultipartEntityBuilder.create();
HttpEntity httpEntity = localVarBuilder.build();
postBody = httpEntity;
} else {
// normal form params
}
String[] authNames = new String[] { "Bearer" };
try {
apiInvoker.invokeAPI(basePath, path, "POST", queryParams, postBody, headerParams, formParams, contentType, authNames, new Response.Listener<String>() {
@Override
public void onResponse(String localVarResponse) {
try {
responseListener.onResponse((UUID) ApiInvoker.deserialize(localVarResponse, "", UUID.class));
} catch (ApiException exception) {
errorListener.onErrorResponse(new VolleyError(exception));
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
errorListener.onErrorResponse(error);
}
});
} catch (ApiException ex) {
errorListener.onErrorResponse(new VolleyError(ex));
}
}
use of org.apache.http.entity.mime.MultipartEntityBuilder in project ef-app_android by eurofurence.
the class CommunicationApi method apiV2CommunicationPrivateMessagesPost.
/**
* Sends a private message to a specific recipient/attendee.
* * Requires authorization * Requires any of the following roles: **`Action-PrivateMessages-Send`**, **`Developer`**, **`System`** If the backend has a push-channel available to any given device(s) that are currently signed into the app with the same recipient uid, it will push a toast message to those devices. The toast message content is defined by the `ToastTitle` and `ToastMessage` properties.
* @param request
* @return UUID
*/
public UUID apiV2CommunicationPrivateMessagesPost(SendPrivateMessageRequest request) throws TimeoutException, ExecutionException, InterruptedException, ApiException {
Object postBody = request;
// create path and map variables
String path = "/Api/v2/Communication/PrivateMessages".replaceAll("\\{format\\}", "json");
// query params
List<Pair> queryParams = new ArrayList<Pair>();
// header params
Map<String, String> headerParams = new HashMap<String, String>();
// form params
Map<String, String> formParams = new HashMap<String, String>();
String[] contentTypes = { "application/json", "text/json", "application/json-patch+json" };
String contentType = contentTypes.length > 0 ? contentTypes[0] : "application/json";
if (contentType.startsWith("multipart/form-data")) {
// file uploading
MultipartEntityBuilder localVarBuilder = MultipartEntityBuilder.create();
HttpEntity httpEntity = localVarBuilder.build();
postBody = httpEntity;
} else {
// normal form params
}
String[] authNames = new String[] { "Bearer" };
try {
String localVarResponse = apiInvoker.invokeAPI(basePath, path, "POST", queryParams, postBody, headerParams, formParams, contentType, authNames);
if (localVarResponse != null) {
return (UUID) ApiInvoker.deserialize(localVarResponse, "", UUID.class);
} else {
return null;
}
} catch (ApiException ex) {
throw ex;
} catch (InterruptedException ex) {
throw ex;
} catch (ExecutionException ex) {
if (ex.getCause() instanceof VolleyError) {
VolleyError volleyError = (VolleyError) ex.getCause();
if (volleyError.networkResponse != null) {
throw new ApiException(volleyError.networkResponse.statusCode, volleyError.getMessage());
}
}
throw ex;
} catch (TimeoutException ex) {
throw ex;
}
}
use of org.apache.http.entity.mime.MultipartEntityBuilder in project ef-app_android by eurofurence.
the class DealersApi method apiV2DealersByIdGet.
/**
* Retrieve a single dealer.
*
* @param id id of the requested entity
*/
public void apiV2DealersByIdGet(UUID id, final Response.Listener<DealerRecord> responseListener, final Response.ErrorListener errorListener) {
Object postBody = null;
// verify the required parameter 'id' is set
if (id == null) {
VolleyError error = new VolleyError("Missing the required parameter 'id' when calling apiV2DealersByIdGet", new ApiException(400, "Missing the required parameter 'id' when calling apiV2DealersByIdGet"));
}
// create path and map variables
String path = "/Api/v2/Dealers/{Id}".replaceAll("\\{format\\}", "json").replaceAll("\\{" + "id" + "\\}", apiInvoker.escapeString(id.toString()));
// query params
List<Pair> queryParams = new ArrayList<Pair>();
// header params
Map<String, String> headerParams = new HashMap<String, String>();
// form params
Map<String, String> formParams = new HashMap<String, String>();
String[] contentTypes = {};
String contentType = contentTypes.length > 0 ? contentTypes[0] : "application/json";
if (contentType.startsWith("multipart/form-data")) {
// file uploading
MultipartEntityBuilder localVarBuilder = MultipartEntityBuilder.create();
HttpEntity httpEntity = localVarBuilder.build();
postBody = httpEntity;
} else {
// normal form params
}
String[] authNames = new String[] {};
try {
apiInvoker.invokeAPI(basePath, path, "GET", queryParams, postBody, headerParams, formParams, contentType, authNames, new Response.Listener<String>() {
@Override
public void onResponse(String localVarResponse) {
try {
responseListener.onResponse((DealerRecord) ApiInvoker.deserialize(localVarResponse, "", DealerRecord.class));
} catch (ApiException exception) {
errorListener.onErrorResponse(new VolleyError(exception));
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
errorListener.onErrorResponse(error);
}
});
} catch (ApiException ex) {
errorListener.onErrorResponse(new VolleyError(ex));
}
}
Aggregations