All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dromara.jpom.controller.outgiving.LogReadController Maven / Gradle / Ivy

There is a newer version: 2.11.9
Show newest version
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2019 Code Technology Studio
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
package org.dromara.jpom.controller.outgiving;

import cn.hutool.core.util.StrUtil;
import cn.keepbx.jpom.IJsonMessage;
import cn.keepbx.jpom.model.JsonMessage;
import com.alibaba.fastjson2.JSONArray;
import com.alibaba.fastjson2.JSONObject;
import org.dromara.jpom.common.BaseServerController;
import org.dromara.jpom.model.PageResultDto;
import org.dromara.jpom.model.outgiving.LogReadModel;
import org.dromara.jpom.permission.ClassFeature;
import org.dromara.jpom.permission.Feature;
import org.dromara.jpom.permission.MethodFeature;
import org.dromara.jpom.service.outgiving.LogReadServer;
import org.springframework.http.MediaType;
import org.springframework.util.Assert;
import org.springframework.web.bind.annotation.*;

import javax.servlet.http.HttpServletRequest;
import java.util.List;
import java.util.stream.Collectors;

/**
 * 日志阅读
 *
 * @author bwcx_jzy
 * @since 2022/5/15
 */
@RestController
@RequestMapping(value = "/log-read")
@Feature(cls = ClassFeature.LOG_READ)
public class LogReadController extends BaseServerController {

    private final LogReadServer logReadServer;

    public LogReadController(LogReadServer logReadServer) {
        this.logReadServer = logReadServer;
    }

    /**
     * 日志阅读列表
     *
     * @return json
     */
    @PostMapping(value = "list", produces = MediaType.APPLICATION_JSON_VALUE)
    @Feature(method = MethodFeature.LIST)
    public IJsonMessage> list() {
        PageResultDto pageResultDto = logReadServer.listPage(getRequest());
        return JsonMessage.success("success", pageResultDto);
    }

    /**
     * 删除日志阅读信息
     *
     * @param id 分发id
     * @return json
     */
    @RequestMapping(value = "del.json", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE)
    @Feature(method = MethodFeature.DEL)
    public IJsonMessage del(String id) {
        HttpServletRequest request = getRequest();
        int byKey = logReadServer.delByKey(id, request);
        return JsonMessage.success("操作成功");
    }

    /**
     * 编辑日志阅读信息
     * 

* {"projectList":[{"nodeId":"localhost","projectId":"test-jar"}],"name":"11"} * * @param jsonObject 参数 * @return msg */ @RequestMapping(value = "save.json", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) @Feature(method = MethodFeature.EDIT) public IJsonMessage save(@RequestBody JSONObject jsonObject) { Assert.notNull(jsonObject, "请传入参数"); String id = jsonObject.getString("id"); String name = jsonObject.getString("name"); Assert.hasText(name, "请填写名称"); JSONArray projectListArray = jsonObject.getJSONArray("projectList"); Assert.notEmpty(projectListArray, "请选择节点和项目"); List projectList = projectListArray.toJavaList(LogReadModel.Item.class); projectList = projectList.stream() .filter(item -> StrUtil.isAllNotEmpty(item.getNodeId(), item.getProjectId())) .collect(Collectors.toList()); Assert.notEmpty(projectList, "请选择节点和项目"); LogReadModel logReadModel = new LogReadModel(); logReadModel.setId(id); logReadModel.setName(name); logReadModel.setNodeProject(JSONArray.toJSONString(projectList)); // if (StrUtil.isEmpty(id)) { logReadServer.insert(logReadModel); } else { HttpServletRequest request = getRequest(); logReadServer.updateById(logReadModel, request); } return JsonMessage.success("修改成功"); } /** * 更新缓存 *

* {"op":"showlog","projectId":"python", * "search":true,"useProjectId":"python", * "useNodeId":"localhost", * "beforeCount":0,"afterCount":10, * "head":0,"tail":100,"first":"false", * "logFile":"/run.log"} * * @param jsonObject 参数 * @return msg */ @RequestMapping(value = "update-cache.json", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) @Feature(method = MethodFeature.EDIT) public IJsonMessage updateCache(@RequestBody JSONObject jsonObject) { Assert.notNull(jsonObject, "请传入参数"); String id = jsonObject.getString("id"); Assert.hasText(id, "请传入参数"); LogReadModel.CacheDta cacheDta = jsonObject.toJavaObject(LogReadModel.CacheDta.class); HttpServletRequest request = getRequest(); LogReadModel logReadModel = new LogReadModel(); logReadModel.setId(id); logReadModel.setCacheData(JSONArray.toJSONString(cacheDta)); logReadServer.updateById(logReadModel, request); return JsonMessage.success("修改成功"); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy