| | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | import com.se.system.domain.vo.LicenseExtraParamVo; |
| | | import com.se.system.domain.vo.NacosConfigVo; |
| | | import com.se.system.service.NacosService; |
| | | import org.omg.CORBA.ServerRequest; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.PutMapping; |
| | | import org.springframework.web.bind.annotation.DeleteMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import com.se.system.service.inte.IAServerInfoService; |
| | | import com.se.system.utils.CommonUtils; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import com.se.common.log.annotation.Log; |
| | | import com.se.common.log.enums.BusinessType; |
| | | import com.se.common.security.annotation.RequiresPermissions; |
| | | import com.se.system.domain.SysSoft; |
| | | import com.se.system.domain.*; |
| | | import com.se.system.service.inte.ISysSoftService; |
| | | import com.se.common.core.web.controller.BaseController; |
| | | import com.se.common.core.web.domain.AjaxResult; |
| | |
| | | return toAjax(sysSoftService.deleteSysSoftBySoftIds(softIds)); |
| | | } |
| | | |
| | | @Log(title = "软件-获取配置", businessType = BusinessType.OTHER) |
| | | @RequiresPermissions("system:soft:query") |
| | | @GetMapping(value = "getNacosConfig") |
| | | public void getNacosConfig(String dataId, HttpServletRequest req, HttpServletResponse res) { |
| | |
| | | } |
| | | } |
| | | } |
| | | |
| | | @Log(title = "软件-更新配置", businessType = BusinessType.UPDATE) |
| | | @RequiresPermissions("system:soft:edit") |
| | | @PostMapping(value = "updateNacosConfig") |
| | | public void updateNacosConfig(@RequestBody NacosConfigVo vo, HttpServletRequest req, HttpServletResponse res) { |
| | | try { |
| | | nacosService.updateNacosConfig(vo, req, res); |
| | | } catch (Exception e) { |
| | | try { |
| | | res.getWriter().print(e.getMessage()); |
| | | } catch (Exception ex) { |
| | | logger.error(ex.getMessage(), ex); |
| | | } |
| | | } |
| | | } |
| | | |
| | | @GetMapping(value = "/getServerInfo") |
| | | public AjaxResult getServerInfo() { |
| | | LicenseExtraParamVo serverInfos = IAServerInfoService.getServer("").getServerInfos(); |
| | | System.out.println("serverInfos = " + serverInfos); |
| | | |
| | | return success(serverInfos); |
| | | } |
| | | |
| | | @GetMapping(value = "/getLicenseKey") |
| | | public AjaxResult getLicenseKey() throws Exception { |
| | | LicenseExtraParamVo serverInfos = IAServerInfoService.getServer("").getServerInfos(); |
| | | String jsonString = serverInfos.toJsonString(); |
| | | |
| | | System.out.println("原始数据 = " + jsonString); |
| | | String encryptedJson = CommonUtils.encrypt(jsonString); |
| | | System.out.println("加密数据 = " + serverInfos); |
| | | |
| | | return success(encryptedJson); |
| | | } |
| | | } |