com.akaxin.proto.site.ApiFileUploadProto Java Examples

The following examples show how to use com.akaxin.proto.site.ApiFileUploadProto. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ApiFileService.java    From wind-im with Apache License 2.0 6 votes vote down vote up
public CommandResponse upload(Command command) {
	CommandResponse commandResponse = new CommandResponse();
	ErrorCode2 errCode = ErrorCode2.ERROR;
	try {
		ApiFileUploadProto.ApiFileUploadRequest request = ApiFileUploadProto.ApiFileUploadRequest
				.parseFrom(command.getParams());
		FileProto.File file = request.getFile();
		FileProto.FileDesc fileDesc = request.getFileDesc();
		FileProto.FileType fileType = file.getFileType();
		byte[] content = file.getFileContent().toByteArray();
		LogUtils.requestDebugLog(logger, command, request.toString());

		String fileId = FileServerUtils.saveFile(content, FilePathUtils.getPicPath(), fileType, fileDesc);
		ApiFileUploadProto.ApiFileUploadResponse response = ApiFileUploadProto.ApiFileUploadResponse.newBuilder()
				.setFileId(fileId).build();
		commandResponse.setParams(response.toByteArray());
		errCode = ErrorCode2.SUCCESS;
	} catch (Exception e) {
		errCode = ErrorCode2.ERROR_SYSTEMERROR;
		LogUtils.requestErrorLog(logger, command, e);
	}
	return commandResponse.setErrCode2(errCode);
}
 
Example #2
Source File: ApiFileService.java    From openzaly with Apache License 2.0 6 votes vote down vote up
public CommandResponse upload(Command command) {
	CommandResponse commandResponse = new CommandResponse();
	ErrorCode2 errCode = ErrorCode2.ERROR;
	try {
		ApiFileUploadProto.ApiFileUploadRequest request = ApiFileUploadProto.ApiFileUploadRequest
				.parseFrom(command.getParams());
		FileProto.File file = request.getFile();
		FileProto.FileDesc fileDesc = request.getFileDesc();
		FileProto.FileType fileType = file.getFileType();
		byte[] content = file.getFileContent().toByteArray();
		LogUtils.requestDebugLog(logger, command, request.toString());

		String fileId = FileServerUtils.saveFile(content, FilePathUtils.getPicPath(), fileType, fileDesc);
		ApiFileUploadProto.ApiFileUploadResponse response = ApiFileUploadProto.ApiFileUploadResponse.newBuilder()
				.setFileId(fileId).build();
		commandResponse.setParams(response.toByteArray());
		errCode = ErrorCode2.SUCCESS;
	} catch (Exception e) {
		errCode = ErrorCode2.ERROR_SYSTEMERROR;
		LogUtils.requestErrorLog(logger, command, e);
	}
	return commandResponse.setErrCode2(errCode);
}
 
Example #3
Source File: ApiFileService.java    From openzaly with Apache License 2.0 6 votes vote down vote up
public CommandResponse upload(Command command) {
	CommandResponse commandResponse = new CommandResponse();
	ErrorCode2 errCode = ErrorCode2.ERROR;
	try {
		ApiFileUploadProto.ApiFileUploadRequest request = ApiFileUploadProto.ApiFileUploadRequest
				.parseFrom(command.getParams());
		FileProto.File file = request.getFile();
		FileProto.FileDesc fileDesc = request.getFileDesc();
		FileProto.FileType fileType = file.getFileType();
		byte[] content = file.getFileContent().toByteArray();
		LogUtils.requestDebugLog(logger, command, request.toString());

		String fileId = FileServerUtils.saveFile(content, FilePathUtils.getPicPath(), fileType, fileDesc);
		ApiFileUploadProto.ApiFileUploadResponse response = ApiFileUploadProto.ApiFileUploadResponse.newBuilder()
				.setFileId(fileId).build();
		commandResponse.setParams(response.toByteArray());
		errCode = ErrorCode2.SUCCESS;
	} catch (Exception e) {
		errCode = ErrorCode2.ERROR_SYSTEMERROR;
		LogUtils.requestErrorLog(logger, command, e);
	}
	return commandResponse.setErrCode2(errCode);
}