package com.iailab.module.data.channel.opcua.controller.admin; import com.iailab.framework.apilog.core.annotation.ApiAccessLog; import com.iailab.framework.common.pojo.CommonResult; import com.iailab.framework.common.pojo.PageParam; import com.iailab.framework.common.pojo.PageResult; import com.iailab.framework.common.util.object.BeanUtils; import com.iailab.framework.common.util.object.ConvertUtils; import com.iailab.framework.excel.core.util.ExcelUtils; import com.iailab.module.data.channel.opcua.collector.OpcUaCollector; import com.iailab.framework.common.util.object.ConvertUtils; import com.iailab.framework.excel.core.util.ExcelUtils; import com.iailab.module.data.channel.opcua.entity.ChannelOPCUATagEntity; import com.iailab.module.data.channel.opcua.service.ChannelOPCUATagService; import com.iailab.module.data.channel.opcua.vo.OpcUaTagExportExcelVO; import com.iailab.module.data.channel.opcua.vo.OpcUaTagImportExcelVO; import com.iailab.module.data.channel.opcua.vo.OpcUaTagPageReqVO; import com.iailab.module.data.channel.opcua.vo.OpcUaTagRespVO; import com.iailab.module.data.channel.tag.vo.TagImportRespVO; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Parameter; import io.swagger.v3.oas.annotations.Parameters; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; import org.springframework.web.multipart.MultipartFile; import javax.annotation.Resource; import javax.servlet.http.HttpServletResponse; import javax.validation.Valid; import java.io.IOException; import java.util.Collections; import java.util.Date; import java.util.List; import java.util.UUID; import java.util.stream.Collectors; import static com.iailab.framework.apilog.core.enums.OperateTypeEnum.EXPORT; import static com.iailab.framework.common.pojo.CommonResult.success; /** * 操作opcua tag配置 * @author lirm * @Description * @createTime 2024年08月26日 */ @RestController @RequestMapping("/data/channel/opcua/tag") public class ChannelOPCUATagController { @Resource private ChannelOPCUATagService channelOpcuaTagService; @Resource private OpcUaCollector opcUaCollector; @PreAuthorize("@ss.hasPermission('data:channel-opcua:query')") @GetMapping("page") public CommonResult> list(@Valid OpcUaTagPageReqVO reqVO) { PageResult page = channelOpcuaTagService.queryPage(reqVO); PageResult pageResultVO = new PageResult<>(); pageResultVO.setTotal(page.getTotal()); List vos = page.getList().stream().map(entity -> { OpcUaTagRespVO vo = BeanUtils.toBean(entity,OpcUaTagRespVO.class); try{ vo.setDataValue( Double.parseDouble(opcUaCollector.getTagValue(reqVO.getDeviceId(),entity.getTagName()))); }catch (Exception e){ e.printStackTrace(); } return vo; }).collect(Collectors.toList()); pageResultVO.setList(vos); return success(pageResultVO); } @PreAuthorize("@ss.hasPermission('data:channel-opcua:query')") @GetMapping("/info/{id}") public CommonResult info(@PathVariable("id") String id) { ChannelOPCUATagEntity info = channelOpcuaTagService.info(id); return success(info); } @PreAuthorize("@ss.hasPermission('data:channel-opcua:create')") @PostMapping("/create") public CommonResult create(@RequestBody ChannelOPCUATagEntity channelOPCUATagEntity) { String id = UUID.randomUUID().toString(); channelOPCUATagEntity.setId(id); channelOPCUATagEntity.setCreateTime(new Date()); channelOpcuaTagService.add(channelOPCUATagEntity); return success(true); } @PreAuthorize("@ss.hasPermission('data:channel-opcua:update')") @PutMapping("/update") public CommonResult update(@RequestBody ChannelOPCUATagEntity channelOPCUATagEntity) { channelOPCUATagEntity.setUpdateTime(new Date()); channelOpcuaTagService.update(channelOPCUATagEntity); return success(true); } @PreAuthorize("@ss.hasPermission('data:channel-opcua:delete')") @DeleteMapping("/delete") public CommonResult delete(@RequestParam("id") String id) { channelOpcuaTagService.delete(id); return success(true); } @GetMapping("/export") @Operation(summary = "导出modbus tag列表") @PreAuthorize("@ss.hasPermission('data:channel-opcua-tag:export')") @ApiAccessLog(operateType = EXPORT) public void exportPointList(@Validated OpcUaTagPageReqVO reqVO, HttpServletResponse response) throws IOException { reqVO.setPageSize(PageParam.PAGE_SIZE_NONE); PageResult page = channelOpcuaTagService.queryPage(reqVO); List list = ConvertUtils.sourceToTarget(page.getList(), OpcUaTagExportExcelVO.class); ExcelUtils.write(response, "tag列表.xls", "数据", OpcUaTagExportExcelVO.class, list, true); } @GetMapping("/get-import-template") @Operation(summary = "获得tag导入模板") public void importTemplate(HttpServletResponse response) throws IOException { // 手动创建导出 demo List list = Collections.singletonList( OpcUaTagImportExcelVO.builder().tagName("Tag名称").dataType("String").address("123").samplingRate(1000).enabled(1) .build() ); // 输出 ExcelUtils.write(response, "tag导入模板.xls", "tag列表", OpcUaTagImportExcelVO.class, list,true); } @PostMapping("/import") @Operation(summary = "导入tag") @Parameters({ @Parameter(name = "file", description = "Excel 文件", required = true), @Parameter(name = "updateSupport", description = "是否支持更新,默认为 false", example = "true") }) @PreAuthorize("@ss.hasPermission('data:channel-opcua-tag:import')") public CommonResult importExcel(@RequestParam("file") MultipartFile file, @RequestParam(value = "updateSupport", required = false, defaultValue = "false") Boolean updateSupport, @RequestParam("device") String device) throws Exception { List list = ExcelUtils.read(file, OpcUaTagImportExcelVO.class); return success(channelOpcuaTagService.importOpcUaTagList(list, updateSupport,device)); } }