project_index.hbs
12.3 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
<div class="pageheader">
<div class="media">
<div class="pageicon pull-left">
<i class="fa fa-th-list"></i>
</div>
<div class="media-body">
<ul class="breadcrumb">
<li><a href="/"><i class="glyphicon glyphicon-home"></i></a></li>
<li><a href="/servers">Projects</a></li>
<li>{{project.name}}</li>
</ul>
<h4>{{project.name}} ({{project.subname}})</h4>
<input id="info" type="hidden" data-id='{{project._id}}' data-env='{{deploy.env}}'>
</div>
</div>
<!-- media -->
</div>
<div class="contentpanel project-index-page">
<div class="panel panel-default" data-env='{{deploy.env}}'>
<div class="panel-heading">
<div class="pull-right">
{{#if is_master}}
<a class="btn btn-info btn-rounded mr5 log-btn"><i class="fa fa-eye"></i> 查看构建日志</a>
<a class="btn btn-success btn-rounded mr20 build-btn"><i class="glyphicon glyphicon-plus"></i> 新增构建</a>
{{/if}}
<a href="" class="tooltips panel-minimize"><i class="fa fa-minus"></i></a>
</div>
<h4 class="panel-title">{{deploy.name}}</h4>
<p>分支:<code>{{deploy.branchName}}</code></p>
</div>
<div class="panel-body">
<table id="table-building-{{project._id}}" class="table table-striped table-bordered building-table">
<thead>
<tr>
<th>构建版本</th>
<th>分支名称</th>
<th>状态</th>
<th>构建时间</th>
<th>操作</th>
</tr>
</thead>
</table>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4>服务器信息</h4>
<p>点击状态Label,可以查看实时日志</p>
<button class="btn btn-info btn-xs restart-btn" data-host='all'>全部重启</button>
</div>
<div class="panel-body">
<div class="row">
{{#each targets}}
<div class="col-md-4" id="d-{{hostFm}}">
<div class="panel panel-info noborder">
<div class="panel-heading noborder">
<div class="panel-btns">
</div><!-- panel-btns -->
<div class="panel-icon"><i class="fa fa-cloud" style="padding-left:12px;"></i></div>
<div class="media-body">
<h2 class="nomargin">{{host}}</h2>
<h5 class="md-title mt5 version">当前运行版本: <code>{{#if info}}{{info.building}}{{^}}
未知部署{{/if}}</code></h5>
</div><!-- media-body -->
<hr class="mt10 mb10">
<div class="clearfix mt5">
<button class="btn btn-info btn-xs restart-btn" data-host='{{host}}'>重启</button>
</div>
<div class="clearfix mt5">
<div class="col-xs-5 project-env" data-env="test">
<h5 class="md-title mt10">当前状态</h5>
<span class="label label-success deploy-log-btn" data-host="{{host}}"><i
class="fa fa-spinner fa-spin fa-fw margin-bottom"></i> <b>{{#if info}}{{info.state}}{{^}}
未知部署{{/if}}</b></span>
</div>
<div class="col-xs-7">
<h5 class="md-title mt10">进程状态</h5>
<span class="label label-status"></span>
</div>
</div>
</div><!-- panel-body -->
</div><!-- panel -->
</div>
{{/each}}
</div>
</div>
</div>
</div>
<div id="log-area" class="panel panel-default panel-alt" style="display:none;height: 100%;">
<div class="panel-body nopadding" style="height: 100%;">
<textarea name="code" id="code" style="height: 100%;"></textarea>
</div>
</div>
<script>
$(document).on('ready pjax:success', function() {
var tables = {};
$('#table-building-{{project._id}}').each(function() {
var env = $(this).parents('.panel').data('env');
tables[env] = $(this).DataTable({
retrieve: true,
responsive: true,
searching: false,
ajax: '/projects/{{project._id}}/buildings?env=' + env,
columns: [
{data: "buildTime"},
{data: "branch"},
{data: "state"},
{data: "updatedAt"},
{data: "_id"}
],
order: [[0, 'desc']],
columnDefs: [{
render: function(data, type, row) {
var color = 'warning';
if (data == 'success') {
color = 'success';
} else if (data == 'fail') {
color = 'danger';
}
var html = '<span id="b-' + row._id + '" class="label label-' + color + '">';
if (data != 'success' && data != 'fail') {
html += '<i class="fa fa-spinner fa-spin fa-fw margin-bottom"></i>';
}
html += data + '</span>';
return html;
},
targets: 2
}, {
render: function(data, type, row) {
var disabled = row.state !== 'success';
{{#if is_master}}
return '<button ' + (disabled ? 'disabled' : '') + ' class="btn btn-success btn-xs deploy-btn" data-id="' + data + '" data-build=' + row.buildTime + '>分发</button>';
{{^}}
return '';
{{/if}}
},
targets: 4
}]
});
$(this).on('draw.dt', function() {
$('.deploy-btn').click(function() {
var id = $(this).data('id');
var build = $(this).data('build');
layer.confirm('确定发布版本<code>' + build + '</code>吗?', {
btn: ['确定', '取消']
}, function() {
doDeploy(id);
});
});
});
});
function doDeploy(build) {
$.post('/projects/deploy/' + build, function(ret) {
if (ret.code == 200) {
layer.msg('正在分发中');
} else {
layer.msg(ret.msg, {icon: 5});
}
});
}
$('.build-btn').click(function() {
var env = $(this).parents('.panel').data('env');
var i = layer.prompt({
title: '请输入需要构建的分支,默认为 {{deploy.branchName}}',
value: 'master'
}, function(branch) {
branch = branch || '{{deploy.branchName}}';
$.post('/projects/build/{{project._id}}', {env: env, branch: branch}, function(ret) {
if (ret.code == 200) {
tables[env].ajax.reload();
layer.close(i);
}
});
});
});
$('.restart-btn').click(function(){
var id = $('#info').data('id');
var env = $('#info').data('env');
var host = $(this).data('host');
layer.confirm('确定重启吗?', {
btn: ['确定', '取消']
}, function() {
$.post('/projects/restart', {
id: id,
host: host,
env: env
},function(ret) {
if (ret.code == 200) {
layer.msg('正在重起中');
} else {
layer.msg(ret.msg, {icon: 5});
}
});
});
})
$('.rollback-btn').click(function() {
layer.prompt({
title: '请输入回滚到哪个版本'
}, function(build) {
doDeploy(build);
});
});
$('.log-btn').click(function() {
viewLog('');
});
$('.deploy-log-btn').click(function() {
var host = $(this).data('host');
viewLog(host);
});
function viewLog(tag) {
}
});
$(function() {
var ws = io();
ws.on('connect', function() {
ws.on('/building/{{project._id}}', function(data) {
console.log(data);
$('#b-' + data.bid).text(data.state);
if (data.state == 'success') {
$('#b-' + data.bid).removeClass('label-warning').addClass('label-success')
$('#b-' + data.bid).parent().parent().find('.deploy-btn').removeAttr('disabled');
$('#b-' + data.bid).find('i').remove();
} else if (data.state == 'fail') {
$('#b-' + data.bid).removeClass('label-warning').addClass('label-danger');
$('#b-' + data.bid).find('i').remove();
}
});
// ws.on('/building/{{project._id}}/log', function(data){
// if(tag == '') {
// cm.replaceRange("> " + data + "\n", {line: Infinity});
// }
// });
ws.on('/deploy/{{project._id}}', function(data) {
console.log(data);
$('#d-' + data.host.replace(/\./g, '-')).find('b').text(data.state);
});
ws.on('/restart/{{project._id}}', function(data) {
console.log(data);
$('#d-' + data.host.replace(/\./g, '-')).find('b').text(data.state);
});
ws.on('/monit/{{project._id}}', function(data) {
console.log(data);
var label = $('#d-' + data.host.replace(/\./g, '-')).find('.label-status');
data = data.monitdata;
if (data.errmsg) {
label.text(data.errmsg).addClass('label-danger');
} else {
var msg = "线程数:" + data.total
for(var s in data.status) {
msg += '; [' + s + ']状态数:' + data.status[s];
}
label.text(msg);
if (data.total != data.status.online) {
label.addClass('label-danger');
} else {
label.addClass('label-success');
}
}
});
// ws.on('/deploy/{{project._id}}/log', function(data){
// if(tag == data.host){
// cm.replaceRange("> " +data.msg+ "\n", {line: Infinity});
// }
// });
});
ws.on('error', function() {
console.log('connect fail');
});
var projectid = $('#info').data('id');
var env = $('#info').data('env');
var monit = function() {
$.post('/projects/monit', {
id: projectid,
env: env
},function(ret) {
if (ret.code != 200) {
layer.msg(ret.msg, {icon: 5});
}
});
}
setInterval(function(){
// 监控服务状态(轮训)
monit();
}, 5000);
monit();
});
</script>