org.gs4tr.gcc.restclient.request.UploadFileRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcc-restclient Show documentation
Show all versions of gcc-restclient Show documentation
GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.
package org.gs4tr.gcc.restclient.request;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.HashMap;
import java.util.Map;
import org.gs4tr.gcc.restclient.util.StringUtils;
import com.fasterxml.jackson.databind.ObjectMapper;
public class UploadFileRequest extends GCRequest {
private byte[] contents;
private String fileName;
private String fileType;
private String uniqueIdentifier;
private String contextUrl;
private String submitter;
private String path;
private String customAttributes;
private String publicPreviewUrl;
private Long sequenceNumber;
public UploadFileRequest(String filePath, String name, String fileType) throws IOException {
File file = new File(filePath);
if (!file.exists()) {
throw new IllegalArgumentException("File does not exist - " + filePath);
}
if (StringUtils.isNullOrEmpty(fileType)) {
throw new IllegalArgumentException("File type is required");
}
this.contents = Files.readAllBytes(Paths.get(filePath));
this.fileType = fileType;
this.fileName = name;
if (StringUtils.isNullOrEmpty(name)) {
this.fileName = file.getName();
}
}
public UploadFileRequest(byte[] contents, String name, String fileType) {
this.contents = contents;
if (contents == null || contents.length <= 0) {
throw new IllegalArgumentException("Byte array with contents is empty");
}
if (StringUtils.isNullOrEmpty(fileType)) {
throw new IllegalArgumentException("File type is required");
}
if (StringUtils.isNullOrEmpty(name)) {
throw new IllegalArgumentException("File name is required");
}
this.fileType = fileType;
this.fileName = name;
}
public UploadFileRequest(String filePath, String name, String fileType, String uniqueIdentifier, String contextUrl,
String submitter, String path, Map customAttributes, Long sequenceNumber)
throws IOException {
this(filePath, name, fileType);
this.uniqueIdentifier = uniqueIdentifier;
this.contextUrl = contextUrl;
this.submitter = submitter;
this.path = path;
if (customAttributes != null) {
ObjectMapper objectMapper = new ObjectMapper();
this.customAttributes = objectMapper.writeValueAsString(customAttributes);
}
this.sequenceNumber = sequenceNumber;
}
public UploadFileRequest(byte[] contents, String name, String fileType, String uniqueIdentifier, String contextUrl,
String submitter, String path, Map customAttributes, Long sequenceNumber)
throws IOException {
this(contents, name, fileType);
this.uniqueIdentifier = uniqueIdentifier;
this.contextUrl = contextUrl;
this.submitter = submitter;
this.path = path;
if (customAttributes != null) {
ObjectMapper objectMapper = new ObjectMapper();
this.customAttributes = objectMapper.writeValueAsString(customAttributes);
}
this.sequenceNumber = sequenceNumber;
}
public void setCustomAttributesAsJson(String attributesJson) {
this.customAttributes = attributesJson;
}
public Map getParameters() {
Map parameters = new HashMap();
parameters.putAll(super.getParameters());
parameters.put("name", this.fileName);
parameters.put("file_type", this.fileType);
if (!StringUtils.isNullOrEmpty(this.uniqueIdentifier)) {
parameters.put("unique_identifier", this.uniqueIdentifier);
}
if (!StringUtils.isNullOrEmpty(this.contextUrl)) {
parameters.put("context_url", this.contextUrl);
}
if (!StringUtils.isNullOrEmpty(this.submitter)) {
parameters.put("submitter", this.submitter);
}
if (!StringUtils.isNullOrEmpty(this.path)) {
parameters.put("path", this.path);
}
if (!StringUtils.isNullOrEmpty(this.customAttributes)) {
parameters.put("custom_attributes", this.customAttributes);
}
if (this.sequenceNumber != null && this.sequenceNumber > 0) {
parameters.put("sequence_number", this.sequenceNumber);
}
if (!StringUtils.isNullOrEmpty(this.getPublicPreviewUrl())) {
parameters.put("public_preview_url", this.getPublicPreviewUrl());
}
parameters.put("file", this.contents);
return parameters;
}
public byte[] getContents() {
return contents;
}
public void setContents(byte[] contents) {
this.contents = contents;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getFileType() {
return fileType;
}
public void setFileType(String fileType) {
this.fileType = fileType;
}
public String getUniqueIdentifier() {
return uniqueIdentifier;
}
public void setUniqueIdentifier(String uniqueIdentifier) {
this.uniqueIdentifier = uniqueIdentifier;
}
public String getContextUrl() {
return contextUrl;
}
public void setContextUrl(String contextUrl) {
this.contextUrl = contextUrl;
}
public String getSubmitter() {
return submitter;
}
public void setSubmitter(String submitter) {
this.submitter = submitter;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getCustomAttributes() {
return customAttributes;
}
public void setCustomAttributes(String customAttributes) {
this.customAttributes = customAttributes;
}
public Long getSequenceNumber() {
return sequenceNumber;
}
public void setSequenceNumber(Long sequenceNumber) {
this.sequenceNumber = sequenceNumber;
}
public String getPublicPreviewUrl() {
return publicPreviewUrl;
}
public void setPublicPreviewUrl(String publicPreviewUrl) {
this.publicPreviewUrl = publicPreviewUrl;
}
}