lbSwitch.jsp 9.38 KB
<%@page language="java" contentType="text/html;charset=utf-8" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://"
            + request.getServerName() + ":" + request.getServerPort()
            + path + "/";
%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <link rel="stylesheet" href="<%=basePath %>css/bootstrap.min.css"/>
    <link rel="stylesheet" href="<%=basePath %>css/unicorn.main.css"/>
    <link rel="stylesheet" href="<%=basePath %>css/unicorn.grey.css"/>
    <link rel="stylesheet" href="<%=basePath %>css/jquery-ui.css"/>
    <link rel="stylesheet" href="<%=basePath %>css/bootstrap-responsive.min.css"/>
    <link rel="stylesheet" href="<%=basePath %>css/uniform.css"/>
    <link rel="stylesheet" href="<%=basePath %>css/select2.css"/>
    <link rel="stylesheet" href="<%=basePath %>css/font-awesome.min.css"/>
    <link rel="stylesheet" href="<%=basePath %>css/dnspod_switch.css"/>
    <link rel="stylesheet" href="<%=basePath %>css/ace.min.css"/>
    <link rel="stylesheet" href="<%=basePath %>css/ace-rtl.min.css"/>
    <link rel="stylesheet" href="<%=basePath %>css/ace-skins.min.css"/>
    <script src="<%=basePath %>js/jquery-2.1.4.min.js" type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap.min.js" type="text/javascript"></script>
    <script src="<%=basePath %>js/typeahead-bs2.min.js" type="text/javascript"></script>
    <script src="<%=basePath %>js/ace-elements.min.js" type="text/javascript"></script>
    <script src="<%=basePath %>js/ace.min.js" type="text/javascript"></script>
    <script src="<%=basePath %>js/layer/layer.js" type="text/javascript"></script>
    <script src="<%=basePath %>/js/unicorn.js" type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/datetimepicker/moment-with-locales.js" charset="UTF-8"
            type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/datetimepicker/bootstrap-datetimepicker.js" charset="UTF-8"
            type="text/javascript"></script>
    <script src="<%=basePath %>js/global.js" charset="UTF-8" type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/bootstrap.pagination.js" charset="UTF-8"
            type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/bootstrap.table.js" charset="UTF-8" type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/bootstrap.dialog.js" charset="UTF-8" type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/bootstrap.form.js" charset="UTF-8" type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/bootstrap.panel.js" charset="UTF-8" type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/bootstrap.alerts.js" charset="UTF-8" type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/bootstrap.accordion.js" charset="UTF-8"
            type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/bootstrap.breadcrumb.js" charset="UTF-8"
            type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/bootstrap.validate.js" charset="UTF-8"
            type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/bootstrap.form.js" charset="UTF-8" type="text/javascript"></script>
    <script src="<%=basePath %>js/bootstrap-plugin/bootstrap.select.js" charset="UTF-8" type="text/javascript"></script>
    <script src="<%=basePath %>js/jquery.toaster.js" type="text/javascript"></script>
    <script type="text/javascript">
        var contextPath = '<%=basePath %>';
    </script>
    <title>YOHO!运维</title>
</head>
<body style="background-color: #444444;font-size: 14px">

<!-- 头部 -->
<div id="head">
</div>
<!-- 右侧具体内容 -->
<div id="content">
    <div id="breadcrumb">
        <a href="#" title="Go to Home" class="tip-bottom"><em
                class="icon-home"></em> Home</a> <a href="#" class="current">直连开关</a>
    </div>

    <div class="row">
        <div class="col-xs-12">
            <!-- PAGE CONTENT BEGINS -->

            <div class="row">
                <div class="col-xs-12 col-sm-12 widget-container-span">
                    <div class="tabbable">

                        <div class="tab-content">
                            <div id="home">
                                <div style="padding:50px 200px">${conf}</div>

                                <h3 class="header smaller red"></h3>
                                <div class="btn-group" style="padding:5px 20px">
                                    <c:choose>
                                        <c:when test="${status == 0}">
                                            <button class="btn btn-sm btn-success" onclick="initSwitch(1)">
                                                <em class="icon-cogs bigger-110"></em>开启
                                            </button>
                                        </c:when>
                                        <c:when test="${status == 1}">
                                            <button class="btn btn-sm btn-success" onclick="initSwitch(0)">
                                                <em class="icon-cogs bigger-110"></em>关闭
                                            </button>
                                        </c:when>
                                    </c:choose>
                                </div>
                            </div>


                        </div>
                    </div>
                </div>
            </div><!-- /span -->

            <div class="vspace-xs-6"></div>
        </div><!-- /row -->

        <script type="text/javascript">
            var $path_assets = "assets";//this will be used in gritter alerts containing images
        </script>

        <!-- PAGE CONTENT ENDS -->
    </div><!-- /.col -->
</div><!-- /.row -->

<script src="<%=basePath %>script/common/genarate_left_panel.js" type="text/javascript"></script>

<script type="text/javascript">
    $("#li_switch").addClass("active open");
    $("#li_lbswitch").addClass("active");
</script>

<script type="text/javascript">

    /**
     * "开启/关闭"按钮点击事件,打开确认操作对话框
     * @param status
     */
    function initSwitch(status) {
        var dialog = $("<div>").appendTo($("body"));
        dialog.dialog({
            title: "你确定切换吗",
            backdrop: "static",
            content: "你确定要" + (0 === status ? "关闭" : (1 === status ? "开启" : "")) + "直连吗?",
            buttons: [{
                text: "否",
                className: "btn-danger",
                onclick: function () {
                    dialog.dialog("hide");
                }
            }, {
                text: "是",
                className: "btn-success",
                onclick: function () {
                    var param = {
                        status: status
                    };
                    sendAjax("post", "viewToChangeLbConf", param, "text", viewToChangeSuccess, errorFunc);
                    dialog.dialog("hide");
                }
            }]
        });
    }

    /**
     * 打开对话框,展示切换后的配置
     * @param resp 切换后的响应数据
     */
    function viewToChangeSuccess(resp) {
        var data = JSON.parse(resp);
        var dialog = $("<div>").appendTo($("body"));
        dialog.dialog({
            title: "切换结果",
            backdrop: "static",
            content: "<pre>" + data.data + "</pre>",
            buttons: [{
                text: "否",
                className: "btn-danger",
                onclick: function () {
                    dialog.dialog("hide");
                }
            }, {
                text: "确定",
                className: "btn-success",
                onclick: function () {
                    sendAjax("post", "switchConf", {}, "text", switchSuccess, errorFunc);

                    dialog.dialog("hide");
                    toWait();
                }
            }]
        }).find(".modal-body").css({
            height: "650px"
        });
    }

    /**
     * 切换配置成功,跳转回首页
     */
    function switchSuccess() {
        window.location.href = contextPath + "/lbSwitch/toLbSwitch";
    }

    /**
     * 发送ajax请求
     * @param type 请求方法post/get
     * @param url 请求url
     * @param data 请求参数数据
     * @param dataType 请求参数类型
     * @param success 请求成功回调函数
     * @param error 请求异常回调函数
     */
    function sendAjax(type, url, data, dataType, success, error) {
        $.ajax({
            type: type,
            url: url,
            data: data,
            dataType: dataType,
            success: success,
            error: error
        });
    }

    /**
     * ajax请求异常回调函数
     */
    function errorFunc() {
        layer.msg("Token异常", {icon: 2});
    }

    /**
     * 打开等待对话框
     */
    function toWait() {
        $("<div>").appendTo($("body")).dialog({
            title: "提示",
            backdrop: "static",
            content: "正在切换,请稍后..."
        });
    }
</script>
</body>
</html>