switch.js 16.8 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
$(document).ready(function () {
    sendAjax("post", "getNgixnStatus", null, "json", drawData, errorFunc);
});

/**
 * 展示画布 和 数据
 * @param resp
 */
function drawData(resp) {
    var data = resp.data;

    var canvas = document.getElementById('canvas');
    var stage = new JTopo.Stage(canvas);
    //显示工具栏
    //showJTopoToobar(stage);
    var scene = new JTopo.Scene();
    stage.add(scene);
    scene.background = contextPath + "img/bg.jpg";

    var appNodeX = 100;
    var appNodeY = 50;
    var appNodeW = 30;
    var appNodeH = 26;
    var appNode =  newNode(scene,appNodeX,appNodeY,appNodeW,appNodeH,'APP');

    var askServer = newNode(scene,appNodeX+600,appNodeY+100,appNodeW,appNodeH,'问询服务器');
    var link = newFoldLink(scene,appNode, askServer, '问询');
    link.arrowsRadius = 10;

    var awsElb = newNode(scene,appNodeX+200,appNodeY+200,appNodeW,appNodeH,'awsElb');

    var awsNginx = newNode(scene,appNodeX+200,appNodeY+300,appNodeW,appNodeH,'awsNginx');
    var link = newLink(scene,awsElb, awsNginx);
    link.arrowsRadius = 10;

    var awsGateway1 = newNode(scene,appNodeX+150,appNodeY+400,appNodeW,appNodeH,'awsGateway');
    var awsGateway2 = newNode(scene,appNodeX+250,appNodeY+400,appNodeW,appNodeH,'awsGateway');

    var qqElb = newNode(scene,appNodeX+400,appNodeY+200,appNodeW,appNodeH,'qqElb');
    //var link = newFoldLink(scene,appNode, qqElb, '域名');
    //link.arrowsRadius = 10;

    var qqNginx = newNode(scene,appNodeX+400,appNodeY+300,appNodeW,appNodeH,'qqNginx');
    var link = newLink(scene,qqElb, qqNginx);
    link.arrowsRadius = 10;

    var qqGateway1 = newNode(scene,appNodeX+350,appNodeY+400,appNodeW,appNodeH,'qqGateway');
    var qqGateway2 = newNode(scene,appNodeX+450,appNodeY+400,appNodeW,appNodeH,'qqGateway');

    var appServerSe1 = newNode(scene,appNodeX+100,appNodeY-100,1,1);
    var appServerSe2 = newNode(scene,appNodeX+100,appNodeY+500,1,1);
    newLink(scene,appServerSe1, appServerSe2,"",10);

    var awsQqSe1 = newNode(scene,appNodeX+300,appNodeY-100,1,1);
    var awsQqSe2 = newNode(scene,appNodeX+300,appNodeY+500,1,1);
    newLink(scene,awsQqSe1, awsQqSe2,"",10);

    var app = newNode(scene,appNodeX,appNodeY-50,1,1,'app');
    var aws = newNode(scene,appNodeX+200,appNodeY-50,1,1,'aws');
    var qq = newNode(scene,appNodeX+400,appNodeY-50,1,1,'qq');


    if('aws' == data.luaType){//app全部直连到aws
        var link = newLink(scene,appNode, awsElb, '直连');
        link.arrowsRadius = 10;
    }else if('qq' == data.luaType){//app全部直连到qq
        var link = newLink(scene,appNode, qqElb, '直连');
        link.arrowsRadius = 10;
    }else if('aws+qq' == data.luaType){//app分散直连
        var link = newLink(scene,appNode, awsElb, '直连');
        link.arrowsRadius = 10;
        var link = newLink(scene,appNode, qqElb, '直连');
        link.arrowsRadius = 10;
    }

    if('aws' == data.awsApiNginx){//aws nginx 指向aws gateway
        var link = newLink(scene,awsNginx, awsGateway1,"online");
        link.arrowsRadius = 10;
    }else{//aws nginx 指向qq gateway
        var link = newLink(scene,awsNginx, qqGateway1,"online");
        link.arrowsRadius = 10;
    }

    if('aws' == data.awsGrayNginx){//aws nginx gray 指向aws gateway
        var link = newLink(scene,awsNginx, awsGateway2,"gray");
        link.arrowsRadius = 10;
    }else{//aws nginx 指向qq gateway
        var link = newLink(scene,awsNginx, qqGateway2,"gray");
        link.arrowsRadius = 10;
    }

    if('aws' == data.qqApiNginx){//qq nginx 指向aws gateway
        var link = newLink(scene,qqNginx, awsGateway1,"online");
        link.arrowsRadius = 10;
    }else{//qq nginx 指向qq gateway
        var link = newLink(scene,qqNginx, qqGateway1,"online");
        link.arrowsRadius = 10;
    }

    if('aws' == data.qqGrayNginx){//qq nginx gray 指向aws gateway
        var link = newLink(scene,qqNginx, awsGateway2,"gray");
        link.arrowsRadius = 10;
    }else{//aws nginx 指向qq gateway
        var link = newLink(scene,qqNginx, qqGateway2,"gray");
        link.arrowsRadius = 10;
    }

    if('aws' == data.defaultDns){
        var link = newFoldLink(scene,appNode, awsElb, 'dns','',5);
        link.arrowsRadius = 10;
    }else if('qq' == data.defaultDns){
        var link = newFoldLink(scene,appNode, qqElb, 'dns','',5);
        link.arrowsRadius = 10;
    }

    //创建lua切换按钮
    createLuaSwitchButton(data.luaType);

    //创建入口切换按钮
    createDnsSwitchButton(data.luaType);
}

/**
 * 创建lua切换按钮
 * @param luaType
 */
function createLuaSwitchButton(luaType){
    if(luaType == ""){
        return;
    }
    var awsButton = "<button class=\"btn btn-sm btn-success\" onclick=\"luaInitSwitch(\'aws\')\"> <em class=\"icon-cogs bigger-110\"></em>切向aws</button>";
    var qqButton = "<button class=\"btn btn-sm btn-success\" onclick=\"luaInitSwitch(\'qcloud\')\"> <em class=\"icon-cogs bigger-110\"></em>切向qcloud</button>";
    var mixButton = "<button class=\"btn btn-sm btn-success\" onclick=\"luaInitSwitch(\'mix\')\"> <em class=\"icon-cogs bigger-110\"></em>切向双云</button>";

    if(luaType == 'aws'){
        $("#lua-div").html(qqButton + mixButton);
    }else if (luaType == 'qq'){
        $("#lua-div").html(awsButton + mixButton);
    }else{
        $("#lua-div").html(awsButton + qqButton);
    }
}


/**
 * "*切换"按钮点击事件,打开确认操作对话框
 * @param cloudName 目标中心名称
 */
function luaInitSwitch(cloudName) {
    var dialog = $("<div>").appendTo($("body"));
    dialog.dialog({
        title: "你确定切换吗",
        backdrop: "static",
        content: "你确定要将Lua脚本切换至" + cloudName + "吗?",
        buttons: [{
            text: "否",
            className: "btn-danger",
            onclick: function () {
                dialog.dialog("hide");
            }
        }, {
            text: "是",
            className: "btn-success",
            onclick: function () {
                var param = {
                    cloudName: cloudName
                };
                sendAjax("post", getUrlBasePath() + "/luaswitch/viewToChangeLuaConf", param, "text", luaViewToChangeSuccess, errorFunc);
                dialog.dialog("hide");
                toWait();
            }
        }]
    });
}


/**
 * 打开对话框,展示切换后的配置
 * @param resp 切换后的响应数据
 */
function luaViewToChangeSuccess(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",  getUrlBasePath() + "/luaswitch/switchConf", {}, "text", switchSuccess, errorFunc);

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

/**
 * 创建Dns切换按钮
 * @param luaType
 */
function createDnsSwitchButton(luaType){
    if(luaType == ""){
        return;
    }
    var awsButton = "<button class=\"btn btn-sm btn-success\" onclick=\"dnsSwitch(\'toAws\')\"> <em class=\"icon-cogs bigger-110\"></em>切向aws</button>";
    var qqButton = "<button class=\"btn btn-sm btn-success\" onclick=\"dnsSwitch(\'toQcloud\')\"> <em class=\"icon-cogs bigger-110\"></em>切向qcloud</button>";
    var mixButton = "<button class=\"btn btn-sm btn-success\" onclick=\"dnsSwitch(\'mix\')\"> <em class=\"icon-cogs bigger-110\"></em>切向双云</button>";

    if(luaType == 'aws'){
        $("#dns-div").html(qqButton + mixButton);
    }else if (luaType == 'qq'){
        $("#dns-div").html(awsButton + mixButton);
    }else{
        $("#dns-div").html(awsButton + qqButton);
    }
}

/**
 * 直接切换,由于调用的是api
 * @param cloud
 */
function dnsSwitch(cloud){
    var dialog = $("<div>").appendTo($("body"));
    dialog.dialog({
        title: "你确定切换吗",
        backdrop: "static",
        content: "由于切换dns是调用的dnspod提供的api,因此当点击确定就直接切换!!!!!!",
        buttons: [{
            text: "否",
            className: "btn-danger",
            onclick: function () {
                dialog.dialog("hide");
            }
        }, {
            text: "是",
            className: "btn-success",
            onclick: function () {
                sendAjax("post",  getUrlBasePath() + "/luaswitch/dnsSwitchConf?cloudName="+cloud, {}, "text", switchSuccess, errorFunc);
                dialog.dialog("hide");
                toWait();
            }
        }]
    });
}

/**
 * 查看当前入口配置
 */
function dnsViewConf(){
    sendAjax("post",  getUrlBasePath() + "/luaswitch/dnsViewCurrentConf", {}, "text", dnsViewCurrentConf, errorFunc);
}

/**
 * 打开对话框,查看当前dns配置
 * @param resp 当前响应数据
 */
function dnsViewCurrentConf(resp) {
    var data = JSON.parse(resp);
    var dialog = $("<div>").appendTo($("body"));
    dialog.dialog({
        title: "当前配置",
        backdrop: "static",
        content: "<pre style='width:568px'>" + data.data + "</pre>",
        buttons: [{
            text: "确定",
            className: "btn-danger",
            onclick: function () {
                dialog.dialog("hide");
            }
        }]
    }).find(".modal-body").css({
        height: "280px",
        width: "600px"
    });
}

/**
 * 查看当前lua配置
 */
function luaViewConf(){
    sendAjax("post",  getUrlBasePath() + "/luaswitch/viewCurrentConf", {}, "text", viewCurrentConf, errorFunc);
}

/**
 * 查看当前nginx配置
 */
function nginxViewConf(cloud){
    sendAjax("post",  getUrlBasePath() + "/nginxswitch/viewCurrentConf", {cloudName:cloud}, "text", viewCurrentConf, errorFunc);
}

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

/**
 * "切向*"按钮点击事件,打开确认操作对话框
 * @param cloudName 源中心名称
 * @param target 目标中心名称
 * @param onlineOrGray 切换:线上/灰度
 */
function nginxInitSwitch(cloudName, target, onlineOrGray) {
    //var arr = getNoChangeIpArr(cloudName, onlineOrGray);
    //if (undefined === arr || null === arr || 0 === arr.length) {
    //    prompt("提示", "无可切换的gateway!");
    //    return;
    //}

    var dialog = $("<div>").appendTo($("body"));
    dialog.dialog({
        title: "你确定切换吗",
        backdrop: "static",
        content: "你确定要将" + cloudName + "上的" + onlineOrGray + "流量切向" + target + "吗?",
        buttons: [{
            text: "否",
            className: "btn-danger",
            onclick: function () {
                dialog.dialog("hide");
            }
        }, {
            text: "是",
            className: "btn-success",
            onclick: function () {
                var param = {
                    cloudName: cloudName,
                    target: target,
                    onlineOrGray: onlineOrGray
                    //noChangeIps: JSON.stringify(arr)
                };
                sendAjax("post", getUrlBasePath() + "/nginxswitch/viewToChangeNginxConf", param, "text", nginxViewToChangeSuccess, errorFunc);
                dialog.dialog("hide");
            }
        }]
    });
}

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

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


/**
 * 打开对话框,查看当前配置
 * @param resp 切换后的响应数据
 */
function viewCurrentConf(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");
            }
        }]
    }).find(".modal-body").css({
        height: "650px"
    });
}

/**
 * 获取不切换的服务器ip(由于线上和灰度同在nginx.conf配置中,模板须设计两个占位符,所以切换某一处时,须将不切换的ip提交到后台)
 * @param cloudName 切换的中心aws/qcloud
 * @param onlineOrGray  切换线上/灰度
 * @returns {Array} 不切换服务器的ip列表
 */
function getNoChangeIpArr(cloudName, onlineOrGray) {
    var list = $("." + cloudName + ("online" === onlineOrGray ? "grayapigateway" : "apigateway") + "Ips");
    if (undefined === list || null === list || 0 === list.length) {
        return [];
    }
    var result = [];
    list.each(function () {
        result.push($(this).text().split(":")[0]);
    });
    return result;
}

/**
 * 提示函数
 * @param title 标题
 * @param content 内容
 */
function prompt(title, content) {
    var dialog = $("<div>").appendTo($("body"));
    dialog.dialog({
        title: title,
        backdrop: "static",
        content: content,
        buttons: [{
            text: "确定",
            className: "btn-success",
            onclick: function () {
                dialog.dialog("hide");
            }
        }]
    });
}

/**
 * 发送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: "正在切换,请稍后..."
    });
}

// 节点
function newNode(scene,x, y, w, h, text) {
    var node = new JTopo.Node(text);
    node.setLocation(x, y);
    node.setSize(w, h);
    scene.add(node);
    return node;
}

// 简单连线
function newLink(scene,nodeA, nodeZ, text, dashedPattern) {
    var link = new JTopo.Link(nodeA, nodeZ, text);
    link.lineWidth = 3; // 线宽
    link.dashedPattern = dashedPattern; // 虚线
    link.bundleOffset = 60; // 折线拐角处的长度
    link.bundleGap = 20; // 线条之间的间隔
    link.textOffsetY = 3; // 文本偏移量(向下3个像素)
    link.strokeColor = '0,200,255';
    scene.add(link);
    return link;
}

// 折线
function newFoldLink(scene,nodeA, nodeZ, text, direction, dashedPattern) {
    var link = new JTopo.FoldLink(nodeA, nodeZ, text);
    link.direction = direction || 'horizontal';
    link.arrowsRadius = 15; //箭头大小
    link.lineWidth = 3; // 线宽
    link.bundleOffset = 60; // 折线拐角处的长度
    link.bundleGap = 20; // 线条之间的间隔
    link.textOffsetY = 3; // 文本偏移量(向下3个像素)
    link.strokeColor = JTopo.util.randomColor(); // 线条颜色随机
    link.dashedPattern = dashedPattern;
    scene.add(link);
    return link;
}

// 二次折线
function newFlexionalLink(scene,nodeA, nodeZ, text, direction, dashedPattern) {
    var link = new JTopo.FlexionalLink(nodeA, nodeZ, text);
    link.direction = direction || 'horizontal';
    link.arrowsRadius = 10;
    link.lineWidth = 3; // 线宽
    link.offsetGap = 35;
    link.bundleGap = 15; // 线条之间的间隔
    link.textOffsetY = 10; // 文本偏移量(向下15个像素)
    link.strokeColor = '0,250,0';
    link.dashedPattern = dashedPattern;
    scene.add(link);
    return link;
}

// 曲线
function newCurveLink(scene,nodeA, nodeZ, text) {
    var link = new JTopo.CurveLink(nodeA, nodeZ, text);
    link.lineWidth = 3; // 线宽
    scene.add(link);
    return link;
}