package com.iailab.module.data.channel.http.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.http.collector.ihdb.HttpCollectorForIhd; import com.iailab.module.data.channel.http.entity.HttpTagEntity; import com.iailab.module.data.channel.http.service.HttpTagService; import com.iailab.module.data.channel.http.vo.HttpTagPageReqVO; import com.iailab.module.data.channel.http.vo.HttpTagRespVO; import com.iailab.module.data.channel.tag.vo.TagExportExcelVO; import com.iailab.module.data.channel.tag.vo.TagImportExcelVO; 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.*; import java.util.stream.Collectors; import static com.iailab.framework.apilog.core.enums.OperateTypeEnum.EXPORT; import static com.iailab.framework.common.pojo.CommonResult.success; /** * @author lirm * @Description * @createTime 2024年08月27日 */ @RestController @RequestMapping("/data/channel/http/tag") public class HttpTagController { @Resource private HttpTagService tagService; @Resource private HttpCollectorForIhd httpCollectorForIhd; @PreAuthorize("@ss.hasPermission('data:channel-http:query')") @GetMapping("page") public CommonResult> page(@Valid HttpTagPageReqVO reqVO) { PageResult page = tagService.queryPage(reqVO); PageResult pageResultVO = new PageResult<>(); List tagNames = page.getList().stream() .map(HttpTagEntity::getTagName) .collect(Collectors.toList()); Map dataMap = httpCollectorForIhd.getLastValues(tagNames); List vos = page.getList().stream().map(entity -> { HttpTagRespVO vo = BeanUtils.toBean(entity,HttpTagRespVO.class); vo.setDataValue(Double.parseDouble(dataMap.get(entity.getTagName()).toString())); return vo; }).collect(Collectors.toList()); pageResultVO.setList(vos); return success(pageResultVO); } @PreAuthorize("@ss.hasPermission('data:channel-http:query')") @GetMapping("list") public CommonResult> list(){ List list = tagService.list(); return new CommonResult>().setData(list); } @PreAuthorize("@ss.hasPermission('data:channel-http:query')") @GetMapping("/info/{id}") public CommonResult info(@PathVariable("id") String id){ HttpTagEntity info= tagService.info(id); return success(info); } @PreAuthorize("@ss.hasPermission('data:channel-http:create')") @PostMapping("/create") public CommonResult create(@RequestBody HttpTagEntity httpTagEntity){ httpTagEntity.setId(UUID.randomUUID().toString()); httpTagEntity.setCreateTime(new Date()); tagService.add(httpTagEntity); return success(true); } @PreAuthorize("@ss.hasPermission('data:channel-http:update')") @PutMapping("/update") public CommonResult update(@RequestBody HttpTagEntity httpTagEntity) { httpTagEntity.setUpdateTime(new Date()); tagService.update(httpTagEntity); return success(true); } @PreAuthorize("@ss.hasPermission('data:channel-http:delete')") @DeleteMapping("/delete") public CommonResult delete(@RequestParam("id") String id) { tagService.delete(id); return success(true); } @GetMapping("/export") @Operation(summary = "导出modbus tag列表") @PreAuthorize("@ss.hasPermission('data:channel-http-tag:export')") @ApiAccessLog(operateType = EXPORT) public void exportPointList(@Validated HttpTagPageReqVO reqVO, HttpServletResponse response) throws IOException { reqVO.setPageSize(PageParam.PAGE_SIZE_NONE); PageResult page = tagService.queryPage(reqVO); List list = ConvertUtils.sourceToTarget(page.getList(), TagExportExcelVO.class); ExcelUtils.write(response, "tag列表.xls", "数据", TagExportExcelVO.class, list, true); } @GetMapping("/get-import-template") @Operation(summary = "获得tag导入模板") public void importTemplate(HttpServletResponse response) throws IOException { // 手动创建导出 demo List list = Collections.singletonList( TagImportExcelVO.builder().tagName("Tag名称").tagDesc("Tag描述").dataType("String").enabled(1) .build() ); // 输出 ExcelUtils.write(response, "tag导入模板.xls", "tag列表", TagImportExcelVO.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-http-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, TagImportExcelVO.class); return success(tagService.importHttpTagList(list, updateSupport, device)); } }