abtestTotal.jsp
23.7 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
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
<%@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/bootstrap-datetimepicker.css"/>
<link href="<%=basePath %>js/bootstrap-plugin/css/bootstrap.table.css" rel="stylesheet" media="screen"/>
<link rel="stylesheet" href="<%=basePath %>css/bootstrap-responsive.min.css"/>
<link rel="stylesheet" href="<%=basePath %>css/fullcalendar.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/uniform.css"/>
<link rel="stylesheet" href="<%=basePath %>css/select2.css"/>
<link rel="stylesheet" href="<%=basePath %>js/jstree/themes/proton/style.css"/>
<link rel="stylesheet" href="<%=basePath %>css/select2.css"/>
<link rel="stylesheet" href="<%=basePath %>css/yoho.css"/>
<script src="<%=basePath %>js/excanvas.min.js" charset="UTF-8" type="text/javascript"></script>
<script src="<%=basePath %>js/jquery-1.12.0.min.js" charset="UTF-8" type="text/javascript"></script>
<script src="<%=basePath %>js/jquery-ui.custom.js" charset="UTF-8" type="text/javascript"></script>
<script src="<%=basePath %>/js/bootstrap.min.js"></script>
<script src="<%=basePath %>/js/unicorn.js"></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/layer/layer.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/jstree/jstree.min.js"></script>
<script src="<%=basePath %>js/jquery.toaster.js"></script>
<script>
var contextPath = '<%=basePath %>';
</script>
<title>YOHO!运维</title>
</head>
<body>
<!-- 头部 -->
<div id="head">
</div>
<!-- 右侧具体内容 -->
<div id="content">
<div id="breadcrumb">
<a href="#" title="Go to Home" class="tip-bottom"><i
class="icon-home"></i> Home</a> <a href="#" class="current">ABTEST配置</a>
</div>
<div class="container-fluid">
<div class="widget-box">
<div class="widget-title">
<h5>操作</h5>
</div>
<div class="widget-content nopadding">
<div class="widget-title" style="height: 53px;">
<div>
<a href="#" id="addABConfig" class="btn btn-success" style="margin-top: 12px;margin-left: 0px;"
onclick="editConfig(0)">新增配置</a>
<a href="#" id="flushConfig" class="btn btn-success" style="margin-top: 12px;margin-left: 0px;"
onclick="flushConfig()">刷新配置到zookeeper</a>
<a href="#" id="testUdidButton" class="btn btn-success"
style="margin-top: 12px;margin-left: 0px;"
onclick="testUdidBefore()">查看udid所属版本</a>
<c:if test="${switchStatus == 'true'}">
<a href="#" class="btn btn-warning"
style="margin-top: 12px;margin-left: 0px;"
onclick="switchStatus('close')">关闭B版本</a>
</c:if>
<c:if test="${switchStatus == 'false'}">
<a href="#" class="btn btn-primary"
style="margin-top: 12px;margin-left: 0px;"
onclick="switchStatus('open')">开启B版本</a>
</c:if>
</div>
</div>
</div>
<div id="abtestTable">
</div>
</div>
</div>
</div>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel"></h4>
</div>
<div class="modal-body">
<form id="configForm" class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label"> <span style="color:red">*</span>类型:</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="type" name="type"
placeholder="A/B/C/D" maxlength="30" size="40"/>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"> <span style="color:red">*</span>取模开始值:</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="moduloNumStart" name="moduloNumStart"
placeholder="udid%100 的值范围" maxlength="30" size="40"/>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"> <span style="color:red">*</span>取模结束值:</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="moduloNumEnd" name="moduloNumEnd"
placeholder="udid%100 的值范围" maxlength="30" size="40"/>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"> <span style="color:red">*</span>是否使用:</label>
<div class="col-sm-8">
<input type="radio" name="inUse" value="1"/> 使用
<input type="radio" name="inUse" value="0"/> 禁止
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"> <span style="color:red">*</span>适用客户端:</label>
<div class="col-sm-8">
<input type="checkbox" name="appType" value="iphone"/> iphone
<input type="checkbox" name="appType" value="android"/> android
<input type="checkbox" name="appType" value="h5"/> H5
<input type="checkbox" name="appType" value="pc"/> PC
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"> <span style="color:red">*</span>最低APP版本:</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="appVersion" name="appVersion"
placeholder="5.2.0" maxlength="30" size="40"/>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"> </label>
<div class="col-sm-8" id="messageAlert"></div>
</div>
<input type="hidden" name="editId"/>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">关闭</button>
<button type="button" class="btn btn-success" value="Validate" onclick="saveConfig()">提交</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal -->
</div>
<div class="modal fade" id="testUdidmyModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
aria-hidden="true">×</button>
<h4 class="modal-title" id="testUdidmyModalLabel"></h4>
</div>
<div class="modal-body">
<form id="testUdidconfigForm" class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label"> <span style="color:red">*</span>UDID:</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="testudid" name="testudid" size="40"/>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"> </label>
<div class="col-sm-8" id="testUdidmessageAlert"></div>
</div>
<input type="hidden" name="editId"/>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">关闭</button>
<button type="button" class="btn btn-success" value="Validate" onclick="testUdid()">提交</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal -->
</div>
<script src="<%=basePath %>script/common/genarate_left_panel.js"></script>
<script type="text/javascript">
$("#li_appConfig").addClass("active open");
$("#li_ABTestTotal").addClass("active");
</script>
</body>
</html>
<script>
$(function () {
//加载表格
$("#abtestTable").table({
columnAutoWidth: false,
url: contextPath + "/abtestTotal/getAllTotal",
striped: true,
title: "配置表",
pagination: false,
loadFilter: function (data) {
return defaultLoadFilter(data);
},
columns: [{
title: "id",
field: "id",
width: "10%"
}, {
title: "类型",
field: "type",
width: "10%"
}, {
title: "最低APP版本",
field: "appVersion",
width: "10%"
}, {
title: "取模开始值",
field: "moduloNumStart",
width: "10%"
}, {
title: "取模结束值",
field: "moduloNumEnd",
width: "10%"
}, {
title: "是否使用",
field: "inUse",
formatter: function (value, rowData, rowIndex) {
if (value == 1) {
return '是';
} else {
return '否';
}
},
width: "10%"
}, {
title: "APP类型",
field: "appType",
width: "15%"
}, {
title: "操作",
formatter: function (value, rowData, rowIndex) {
var div = $("<div>");
if (rowData.type != 'A') {
$("<button onclick=\"editConfig(\'" + rowData.id + "\')\">").addClass("btn btn-xs btn-success").html("修改").appendTo(div);
div.append(" ");
$("<button onclick=\"deleteConfig(\'" + rowData.id + "\')\">").addClass("btn btn-xs btn-danger").html("删除").appendTo(div);
}
div.append(" ");
$("<button onclick=\"aHref(\'" + rowData.type + "\')\">").addClass("btn btn-xs btn-primary").html("查看zookeeper").appendTo(div);
return div;
}
}]
});
});
//打开新增或修改页面
function editConfig(id) {
$("#configForm #messageAlert").hide();
if (id == 0) {//新增页面
$("input[name='type']").attr("readonly", false);
$("input[name='editId']").val(0);
$("input[name='type']").val("");
$("input[name='moduloNumStart']").val("");
$("input[name='moduloNumEnd']").val("");
$("input[name='appType']").prop("checked", true);
$("input[name='inUse']:eq(0)").prop("checked", true);
$("input[name='appVersion']").val("");
$("#myModalLabel").text("新增");
} else {
$("input[name='type']").attr("readonly", true);
$("#myModalLabel").text("修改");
$.ajax({
type: 'post',
url: contextPath + "/abtestTotal/getTotal?id=" + id,
dataType: 'json',
success: function (data) {
if (!data || data.code != 200) {
localAlert('获取失败', data.message);
} else {
$("input[name='editId']").val(id);
$("input[name='type']").val(data.data.type);
$("input[name='moduloNumStart']").val(data.data.moduloNumStart);
$("input[name='moduloNumEnd']").val(data.data.moduloNumEnd);
$("input[name='inUse'][value='" + data.data.inUse + "']").prop("checked", true);
$("input[name='appType']").attr("checked", false);
var appTypes = data.data.appType.split(",");
for (i = 0; i < appTypes.length; i++) {
$("input[name='appType'][value='" + appTypes[i] + "']").prop("checked", true);
}
$("input[name='appVersion']").val(data.data.appVersion);
}
},
error: function (data) {
localAlert('系统异常', data.message);
}
});
}
$("#myModal").modal('show');
}
function saveConfig() {
var id = $("input[name='editId']").val();
var type = $("#type").val();
var moduloNumStart = $("#moduloNumStart").val();
var moduloNumEnd = $("#moduloNumEnd").val();
var inUse = $("input[name='inUse']:checked").val();
var appTypes = "";
$('input[name="appType"]:checked').each(function () {
appTypes = appTypes + $(this).val() + ",";
});
var appVersion = $("#appVersion").val();
if (type == null || type == "") {
$("#configForm #messageAlert").alerts({
content: "请填写AB类型!",
type: "danger"
});
return;
}
if (moduloNumStart == null || moduloNumStart == "") {
$("#configForm #messageAlert").alerts({
content: "请填写取模开始值!",
type: "danger"
});
return;
}
if (moduloNumEnd == null || moduloNumEnd == "") {
$("#configForm #messageAlert").alerts({
content: "请填写取模结束值!",
type: "danger"
});
return;
}
if (inUse == null || inUse == "") {
$("#configForm #messageAlert").alerts({
content: "请填写是否使用!",
type: "danger"
});
return;
}
if (appTypes == null || appTypes == "") {
$("#configForm #messageAlert").alerts({
content: "请填写适用客户端!",
type: "danger"
});
return;
}
if (appVersion == null || appVersion == "") {
$("#configForm #messageAlert").alerts({
content: "请填写适用APP最低版本!",
type: "danger"
});
return;
}
var param = {
id: id,
type: type,
inUse: inUse,
appType: appTypes.substr(0, appTypes.length - 1),
appVersion: appVersion,
moduloNumStart: moduloNumStart,
moduloNumEnd: moduloNumEnd
}
$.ajax({
type: 'post',
url: contextPath + "/abtestTotal/saveTotal",
data: param,
dataType: 'json',
success: function (data) {
if (!data || data.code != 200) {
localAlert('新增失败', data.message);
} else {
$("#myModal").modal('hide');
$("#abtestTable").table("load");
}
},
error: function (data) {
localAlert('系统异常', data.message);
}
});
}
//删除
function deleteConfig(id) {
var dialog = $("<div>").appendTo($("body"));
dialog.dialog({
title: "你确定删除吗",
backdrop: "static",
content: "你确定要删除该配置吗?详细配置表中的数据也将同步删除",
buttons: [{
text: "否",
className: "btn-danger",
onclick: function () {
$(dialog).dialog("hide");
}
}, {
text: "是",
className: "btn-success",
onclick: function () {
$(dialog).dialog("hide");
$.ajax({
url: contextPath + "/abtestTotal/deleteTotal?id=" + id,
type: 'post',
async: false,
dataType: "json",
success: function (data) {
if (!data || data.code != 200) {
localAlert('删除失败', data.message);
}
$("#abtestTable").table("load");
}
});
}
}]
});
}
//删除
function flushConfig(id) {
var dialog = $("<div>").appendTo($("body"));
dialog.dialog({
title: "confirm",
backdrop: "static",
content: "你确定要刷新zookeeper中的配置吗?",
buttons: [{
text: "否",
className: "btn-danger",
onclick: function () {
$(dialog).dialog("hide");
}
}, {
text: "是",
className: "btn-success",
onclick: function () {
$(dialog).dialog("hide");
$.ajax({
url: contextPath + "/abtestTotal/flush",
type: 'post',
async: false,
dataType: "json",
success: function (data) {
localAlert('刷新结果', '刷新成功');
}
});
}
}]
});
}
function aHref(abtype) {
var iWidth = 800; //弹出窗口的宽度;
var iHeight = 600; //弹出窗口的高度;
var iTop = (window.screen.availHeight - 30 - iHeight) / 2; //获得窗口的垂直位置;
var iLeft = (window.screen.availWidth - 10 - iWidth) / 2; //获得窗口的水平位置;
window.open(contextPath + "/abtestTotal/getZookeepConfig?type=" + abtype, "", "height=" + iHeight + ", width=" + iWidth + ", top=" + iTop + ", left=" + iLeft);
}
function testUdidBefore() {
$("#testudid").val("");
$("#testUdidmyModal").modal('show');
}
function testUdid() {
var udid = $("#testudid").val();
if (udid == null || udid == "") {
$("#testUdidconfigForm #testUdidmessageAlert").alerts({
content: "请填写UDID!",
type: "danger"
});
return;
}
$.ajax({
type: 'post',
url: contextPath + "/abtestTotal/testUdid?udid=" + udid,
dataType: 'json',
success: function (data) {
$("#testUdidmyModal").modal('hide');
localAlert('测试结果', data.data);
},
error: function (data) {
$("#testUdidmyModal").modal('hide');
localAlert('系统异常', data.message);
}
});
}
function switchStatus(operate) {
var dialog = $("<div>").appendTo($("body"));
dialog.dialog({
title: "confirm",
backdrop: "static",
content: "你确定要切换开关吗",
buttons: [{
text: "否",
className: "btn-danger",
onclick: function () {
$(dialog).dialog("hide");
}
}, {
text: "是",
className: "btn-success",
onclick: function () {
$(dialog).dialog("hide");
$.ajax({
url: contextPath + "/abtestTotal/switchStatus?operate=" + operate,
type: 'post',
async: false,
dataType: "json",
success: function (data) {
window.location.reload();
}
});
}
}]
});
}
</script>