|
|
@@ -0,0 +1,85 @@
|
|
|
+package com.java110.api.listener.file;
|
|
|
+
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.java110.api.listener.AbstractServiceApiListener;
|
|
|
+import com.java110.core.annotation.Java110Listener;
|
|
|
+import com.java110.core.context.DataFlowContext;
|
|
|
+import com.java110.core.factory.GenerateCodeFactory;
|
|
|
+import com.java110.core.smo.file.IFileInnerServiceSMO;
|
|
|
+import com.java110.core.smo.service.IServiceInnerServiceSMO;
|
|
|
+import com.java110.dto.file.FileDto;
|
|
|
+import com.java110.dto.service.ServiceDto;
|
|
|
+import com.java110.event.service.api.ServiceDataFlowEvent;
|
|
|
+import com.java110.utils.constant.ResponseConstant;
|
|
|
+import com.java110.utils.constant.ServiceCodeServiceConstant;
|
|
|
+import com.java110.utils.exception.ListenerExecuteException;
|
|
|
+import com.java110.utils.util.Assert;
|
|
|
+import com.java110.utils.util.BeanConvertUtil;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.http.HttpMethod;
|
|
|
+import org.springframework.http.HttpStatus;
|
|
|
+import org.springframework.http.ResponseEntity;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 保存小区侦听
|
|
|
+ * add by wuxw 2019-06-30
|
|
|
+ */
|
|
|
+@Java110Listener("saveFileListener")
|
|
|
+public class SaveFileListener extends AbstractServiceApiListener {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IFileInnerServiceSMO fileInnerServiceSMOImpl;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void validate(ServiceDataFlowEvent event, JSONObject reqJson) {
|
|
|
+ //Assert.hasKeyAndValue(reqJson, "xxx", "xxx");
|
|
|
+
|
|
|
+ Assert.hasKeyAndValue(reqJson, "fileName", "必填,请填写文件名称");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "communityId", "必填,请填写小区ID");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "context", "必填,请填写文件内容");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "suffix", "必填,请填写文件扩展");
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected void doSoService(ServiceDataFlowEvent event, DataFlowContext context, JSONObject reqJson) {
|
|
|
+
|
|
|
+ FileDto fileDto = BeanConvertUtil.covertBean(reqJson, FileDto.class);
|
|
|
+
|
|
|
+ fileDto.setFileId(GenerateCodeFactory.getGeneratorId(GenerateCodeFactory.CODE_PREFIX_file_id));
|
|
|
+
|
|
|
+ int count = fileInnerServiceSMOImpl.saveFile(fileDto);
|
|
|
+
|
|
|
+
|
|
|
+ if (count < 1) {
|
|
|
+ throw new ListenerExecuteException(ResponseConstant.RESULT_CODE_ERROR, "保存数据失败");
|
|
|
+ }
|
|
|
+
|
|
|
+ ResponseEntity<String> responseEntity = new ResponseEntity<String>("", HttpStatus.OK);
|
|
|
+
|
|
|
+ context.setResponseEntity(responseEntity);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String getServiceCode() {
|
|
|
+ return ServiceCodeServiceConstant.SAVE_FILE;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public HttpMethod getHttpMethod() {
|
|
|
+ return HttpMethod.POST;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public int getOrder() {
|
|
|
+ return DEFAULT_ORDER;
|
|
|
+ }
|
|
|
+
|
|
|
+ public IFileInnerServiceSMO getFileInnerServiceSMOImpl() {
|
|
|
+ return fileInnerServiceSMOImpl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFileInnerServiceSMOImpl(IFileInnerServiceSMO fileInnerServiceSMOImpl) {
|
|
|
+ this.fileInnerServiceSMOImpl = fileInnerServiceSMOImpl;
|
|
|
+ }
|
|
|
+}
|