All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.citytechinc.cq.component.dialog.html5smartfile.Html5SmartFileWidgetMaker Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package com.citytechinc.cq.component.dialog.html5smartfile;

import org.codehaus.plexus.util.StringUtils;

import com.citytechinc.cq.component.annotations.widgets.Html5SmartFile;
import com.citytechinc.cq.component.dialog.DialogElement;
import com.citytechinc.cq.component.dialog.maker.AbstractWidgetMaker;
import com.citytechinc.cq.component.dialog.maker.WidgetMakerParameters;

public class Html5SmartFileWidgetMaker extends AbstractWidgetMaker {

	public Html5SmartFileWidgetMaker(WidgetMakerParameters parameters) {
		super(parameters);
	}

	@Override
	public DialogElement make(Html5SmartFileWidgetParameters parameters) throws ClassNotFoundException {

		Html5SmartFile smartFileAnnotation = getAnnotation(Html5SmartFile.class);

		parameters.setName(getNameForField(smartFileAnnotation));

		parameters.setAllowFileNameEditing(getAllowFileNameEditingForField(smartFileAnnotation));
		parameters.setAllowFileReference(getAllowFileReferenceForField(smartFileAnnotation));
		parameters.setAllowUpload(getAllowUploadForField(smartFileAnnotation));
		parameters.setDdAccept(getDdAcceptForField(smartFileAnnotation));
		parameters.setDdGroups(getDdGroupsForField(smartFileAnnotation));
		parameters.setFileNameParameter(getFileNameParameterForField(smartFileAnnotation));
		parameters.setFileReferenceParameter(getFileReferenceParameterForField(smartFileAnnotation));
		parameters.setMimeTypes(getMimeTypesForField(smartFileAnnotation));
		parameters.setMimeTypesDescription(getMimeTypesDescriptionForField(smartFileAnnotation));
		parameters.setSizeLimit(getSizeLimitForField(smartFileAnnotation));

		return new Html5SmartFileWidget(parameters);

	}

	private int getSizeLimitForField(Html5SmartFile smartFileAnnotation) {
		return smartFileAnnotation.sizeLimit();
	}

	private String getMimeTypesDescriptionForField(Html5SmartFile smartFileAnnotation) {
		if (StringUtils.isNotEmpty(smartFileAnnotation.mimeTypesDescription())) {
			return smartFileAnnotation.mimeTypesDescription();
		}
		return null;
	}

	private String getMimeTypesForField(Html5SmartFile smartFileAnnotation) {
		if (StringUtils.isNotEmpty(smartFileAnnotation.mimeTypes())) {
			return smartFileAnnotation.mimeTypes();
		}
		return null;
	}

	private String getFileReferenceParameterForField(Html5SmartFile smartFileAnnotation) {
		return smartFileAnnotation.fileReferenceParameter();
	}

	private String getFileNameParameterForField(Html5SmartFile smartFileAnnotation) {
		return smartFileAnnotation.fileNameParameter();
	}

	private String getDdGroupsForField(Html5SmartFile smartFileAnnotation) {
		if (smartFileAnnotation.ddGroups().length != 0) {
			return "[" + StringUtils.join(smartFileAnnotation.ddGroups(), ",") + "]";
		}
		return null;
	}

	private String getDdAcceptForField(Html5SmartFile smartFileAnnotation) {
		if (StringUtils.isNotEmpty(smartFileAnnotation.ddAccept())) {
			return smartFileAnnotation.ddAccept();
		}
		return null;
	}

	private boolean getAllowFileReferenceForField(Html5SmartFile smartFileAnnotation) {
		return smartFileAnnotation.allowFileReference();
	}

	private boolean getAllowUploadForField(Html5SmartFile smartFileAnnotation) {
		return smartFileAnnotation.allowUpload();
	}

	private boolean getAllowFileNameEditingForField(Html5SmartFile smartFileAnnotation) {
		return smartFileAnnotation.allowFileNameEditing();
	}

	private String getNameForField(Html5SmartFile smartFileAnnotation) {
		if (StringUtils.isNotEmpty(smartFileAnnotation.name())) {
			return smartFileAnnotation.name();
		}
		return getNameForField();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy