You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.8 KiB
Java
76 lines
2.8 KiB
Java
package com.glxp.api.controller.sync;
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
import com.github.pagehelper.PageInfo;
|
|
import com.glxp.api.annotation.Log;
|
|
import com.glxp.api.annotation.RepeatSubmit;
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
import com.glxp.api.constant.BusinessType;
|
|
import com.glxp.api.constant.SocketMsgType;
|
|
import com.glxp.api.entity.sync.SocketMsgEntity;
|
|
import com.glxp.api.idc.utils.IDCUtils;
|
|
import com.glxp.api.res.inout.IoCodeResponse;
|
|
import com.glxp.api.util.Sm2Util;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
import javax.annotation.Resource;
|
|
import java.io.File;
|
|
import java.util.List;
|
|
|
|
@Slf4j
|
|
@RestController
|
|
public class TestController {
|
|
|
|
@Value("${WEBSOCKET_TOKEN}")
|
|
private String socketToken;
|
|
@Resource
|
|
SpsSyncWebSocket spsSyncWebSocket;
|
|
|
|
@PostMapping("/test/file/uplaod")
|
|
@Log(title = "测试上传数据", businessType = BusinessType.INSERT)
|
|
public BaseResponse uploadProducts(@RequestParam("file") List<MultipartFile> files, @RequestParam("key") String key) {
|
|
if (StrUtil.isEmpty(key) || !key.equals("glxp6666")) {
|
|
return ResultVOUtils.error(500, "key不能为空");
|
|
}
|
|
String filePath = "D:\\udiwms\\testFile\\";
|
|
File createFile = new File(filePath);
|
|
if (!createFile.exists()) {
|
|
createFile.mkdirs();
|
|
}
|
|
for (int i = 0; i < files.size(); i++) {
|
|
MultipartFile file = files.get(i);
|
|
if (file.isEmpty()) {
|
|
return ResultVOUtils.error(500, "上传第" + (i++) + "个文件失败");
|
|
}
|
|
String fileName = file.getOriginalFilename();
|
|
try {
|
|
IDCUtils.writeFile(file.getBytes(), filePath + file.getName(), file.getOriginalFilename());
|
|
} catch (Exception e) {
|
|
log.error("产品信息导入失败", e);
|
|
}
|
|
}
|
|
return ResultVOUtils.success("上传成功");
|
|
}
|
|
|
|
|
|
@GetMapping("/testWebSocket")
|
|
public BaseResponse testWebSocket(String message) {
|
|
SocketMsgEntity socketMsgEntity = SocketMsgEntity.builder().type(SocketMsgType.DL_ALL_DATA).content(message).remark("下载基础信息").build();
|
|
spsSyncWebSocket.sendMessage(socketMsgEntity, "1:" + socketToken);
|
|
// spsSyncWebSocket.sendMessage(message, "1:07rKFDFkQvBkbxgc7aUBlONo4gWNdx8b");
|
|
return ResultVOUtils.success(socketMsgEntity);
|
|
}
|
|
|
|
|
|
@PostMapping("/sm2")
|
|
public BaseResponse sm2(@RequestParam String data) {
|
|
|
|
return ResultVOUtils.success(Sm2Util.decrypt("00e36cfc8d61175584333e6160c645700f2a4659f5908c1bed5824423eab1a1626", data));
|
|
}
|
|
|
|
}
|