TaskConfigCtrl.java 3.21 KB
package com.ui.ctrl;


import com.alibaba.fastjson.JSON;
import com.ui.contants.HttpUriContants;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import com.ui.model.domain.TaskModel;
import com.ui.model.req.GateWayTaskReq;
import com.ui.model.req.PageRequest;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * Created by yoho on 2016/6/14.
 * task 配置
 */
@Controller
@RequestMapping("taskConfigure")
public class TaskConfigCtrl {

    Logger log = LoggerFactory.getLogger(TaskConfigCtrl.class);

    @Autowired
    HttpRestClient httpRestClient;

    @RequestMapping("/toTaskConfigure")
    public ModelAndView getHostGroups() {
        return new ModelAndView("manager/taskConfigure");
    }

    @RequestMapping("/toYohoEventTaskConfigure")
    public ModelAndView getYohoEventGroups( Model model) {
        BaseResponse jsonEventsResp=httpRestClient.defaultPost(HttpUriContants.TASK__GATEWAY_ACCESS_EVENTS, null, BaseResponse.class);
        List<Map<String,String>> jsonEventsObj=(List<Map<String,String>>)jsonEventsResp.getData();
        if(jsonEventsObj==null){
            jsonEventsObj = new ArrayList<Map<String,String>>();
        }
        model.addAttribute("jsonEvents", JSON.toJSON(jsonEventsObj));
        return new ModelAndView("manager/yohoEventTaskConfigure");
    }


    @RequestMapping("/getTaskConfigure")
    @ResponseBody
    public BaseResponse getTaskConfigure(GateWayTaskReq req) {
        BaseResponse response=httpRestClient.defaultPost(HttpUriContants.TASK__GETALL, req, BaseResponse.class);
        return response;
    }



    @RequestMapping("/saveTaskModel")
    @ResponseBody
    public BaseResponse saveTaskModel(@RequestBody TaskModel taskModel) {
        BaseResponse response=httpRestClient.defaultPost(HttpUriContants.TASK__SAVE, taskModel, BaseResponse.class);
        return response;
    }

    @RequestMapping("/delTaskModel")
    @ResponseBody
    public BaseResponse delTaskModel(int id) {
        Map map = new HashMap<>();
        map.put("id",id);
        BaseResponse response = httpRestClient.defaultGet(HttpUriContants.TASK__DELETE, BaseResponse.class, map);
        return response;
    }

    @RequestMapping("/getTaskModelById")
    @ResponseBody
    public BaseResponse getTaskModelById(int id) {
            Map map = new HashMap<>();
            map.put("id",id);
            BaseResponse response = httpRestClient.defaultGet(HttpUriContants.TASK__GET_ID, BaseResponse.class, map);
            return response;

    }


    @RequestMapping("/getGatewayConfigure")
    @ResponseBody
    public BaseResponse getGateWayTaskConfigure(GateWayTaskReq req) {
        BaseResponse response=httpRestClient.defaultPost(HttpUriContants.TASK__GATEWAYALL, req, BaseResponse.class);
        return response;
    }

}