LuaSwitchCtrl.java 1.94 KB
package com.ui.ctrl;

import com.ui.contants.HttpUriContants;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

import java.util.HashMap;
import java.util.Map;

/**
 * 中心入口切换
 *
 * @author bblu 2016-10-27
 */
@Controller
@RequestMapping("luaswitch")
public class LuaSwitchCtrl {

    private Logger logger = LoggerFactory.getLogger(getClass());

    @Autowired
    HttpRestClient httpRestClient;

    /**
     * 展示当前配置
     *
     * @return ModelAndView
     */
    @RequestMapping(value = "toLuaSwitch")
    public ModelAndView viewNginxConf() {
        String response = httpRestClient.defaultGet(HttpUriContants.VIEW_LUA_CONF, String.class, null);
        ModelAndView mdv = new ModelAndView("switch/luaSwitch");
        mdv.addObject("conf", response);
        return mdv;
    }

    /**
     * 展示修改后配置文件内容
     *
     * @param cloudName 目标中心名称
     * @return BaseResponse
     */
    @RequestMapping(value = "viewToChangeLuaConf")
    @ResponseBody
    public BaseResponse viewToChangeLuaConf(String cloudName) {
        Map<String, Object> map = new HashMap<>();
        map.put("cloudName", cloudName);
        return httpRestClient.defaultGet(HttpUriContants.VIEW_TOCHANGE_LUA_CONF, BaseResponse.class, map);
    }

    /**
     * 切换配置,并重启nginx
     *
     * @return BaseResponse
     */
    @RequestMapping(value = "switchConf")
    @ResponseBody
    public BaseResponse switchConf() {
        Map<String, Object> map = new HashMap<>();
        return httpRestClient.defaultGet(HttpUriContants.SWITCH_LUA, BaseResponse.class, map);
    }

}