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

com.fhs.fileService.ueditor.upload.Base64Uploader Maven / Gradle / Ivy

The newest version!
package com.fhs.fileService.ueditor.upload;

import com.fhs.fileService.ueditor.PathFormat;
import com.fhs.fileService.ueditor.define.AppInfo;
import com.fhs.fileService.ueditor.define.BaseState;
import com.fhs.fileService.ueditor.define.FileType;
import com.fhs.fileService.ueditor.define.State;
import org.apache.tomcat.util.codec.binary.Base64;

import java.util.Map;

public final class Base64Uploader {

	public static State save(String content, Map conf) {

		byte[] data = decode(content);

		long maxSize = ((Long) conf.get("maxSize")).longValue();

		if (!validSize(data, maxSize)) {
			return new BaseState (false, AppInfo.MAX_SIZE);
		}

		String suffix = FileType.getSuffix("JPG");

		String savePath = PathFormat.parse((String) conf.get("savePath"),
				(String) conf.get("filename"));

		savePath = savePath + suffix;
		String physicalPath = (String) conf.get("rootPath") + savePath;

		State storageState = StorageManager.saveBinaryFile(data, physicalPath);

		if (storageState.isSuccess()) {
			storageState.putInfo("url", PathFormat.format(savePath));
			storageState.putInfo("type", suffix);
			storageState.putInfo("original", "");
		}

		return storageState;
	}

	private static byte[] decode(String content) {
		return Base64.decodeBase64(content);
	}

	private static boolean validSize(byte[] data, long length) {
		return data.length <= length;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy