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 com.iailab.module.data.common.enums.IsEnableEnum;
|
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<PageResult<HttpTagRespVO>> page(@Valid HttpTagPageReqVO reqVO) {
|
|
PageResult<HttpTagEntity> page = tagService.queryPage(reqVO);
|
PageResult<HttpTagRespVO> pageResultVO = new PageResult<>();
|
List<String> tagNames = page.getList().stream()
|
.map(HttpTagEntity::getTagName)
|
.collect(Collectors.toList());
|
Map<String, Object> dataMap = httpCollectorForIhd.getLastValues(tagNames);
|
|
List<HttpTagRespVO> 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<HttpTagEntity>> list(){
|
List<HttpTagEntity> list = tagService.list();
|
return new CommonResult<List<HttpTagEntity>>().setData(list);
|
}
|
|
@PreAuthorize("@ss.hasPermission('data:channel-http:query')")
|
@GetMapping("/info/{id}")
|
public CommonResult<HttpTagEntity> info(@PathVariable("id") String id){
|
HttpTagEntity info= tagService.info(id);
|
return success(info);
|
}
|
|
@PreAuthorize("@ss.hasPermission('data:channel-http:create')")
|
@PostMapping("/create")
|
public CommonResult<Boolean> 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<Boolean> 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<Boolean> 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<HttpTagEntity> page = tagService.queryPage(reqVO);
|
List<TagExportExcelVO> 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<TagImportExcelVO> list = Collections.singletonList(
|
TagImportExcelVO.builder().tagName("Tag名称").tagDesc("Tag描述").dataType("String").enabled(IsEnableEnum.ENABLE.getCode())
|
.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<TagImportRespVO> importExcel(@RequestParam("file") MultipartFile file,
|
@RequestParam(value = "updateSupport", required = false, defaultValue = "false") Boolean updateSupport,
|
@RequestParam("device") String device) throws Exception {
|
List<TagImportExcelVO> list = ExcelUtils.read(file, TagImportExcelVO.class);
|
return success(tagService.importHttpTagList(list, updateSupport, device));
|
}
|
}
|