blob: 7e5f640b34e2c069e087de91be8411f5296d964a [file] [log] [blame]
Joshua Hesketh4db99cb2014-05-23 11:28:08 +10001// jquery plugin for Zuul status page
Timo Tijhof51516cd2013-04-09 01:32:29 +02002//
3// Copyright 2012 OpenStack Foundation
4// Copyright 2013 Timo Tijhof
5// Copyright 2013 Wikimedia Foundation
Joshua Hesketh6b1a2182014-03-21 14:40:04 +11006// Copyright 2014 Rackspace Australia
Timo Tijhof51516cd2013-04-09 01:32:29 +02007//
8// Licensed under the Apache License, Version 2.0 (the "License"); you may
9// not use this file except in compliance with the License. You may obtain
10// a copy of the License at
11//
12// http://www.apache.org/licenses/LICENSE-2.0
13//
14// Unless required by applicable law or agreed to in writing, software
15// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17// License for the specific language governing permissions and limitations
18// under the License.
Monty Taylor860bb0a2014-03-22 09:41:25 -070019'use strict';
Timo Tijhof51516cd2013-04-09 01:32:29 +020020
21(function ($) {
Joshua Heskethace48892014-03-22 17:18:31 +110022 function set_cookie(name, value) {
Monty Taylor860bb0a2014-03-22 09:41:25 -070023 document.cookie = name + '=' + value + '; path=/';
Joshua Heskethace48892014-03-22 17:18:31 +110024 }
25
26 function read_cookie(name, default_value) {
Monty Taylor860bb0a2014-03-22 09:41:25 -070027 var nameEQ = name + '=';
Joshua Heskethace48892014-03-22 17:18:31 +110028 var ca = document.cookie.split(';');
29 for(var i=0;i < ca.length;i++) {
30 var c = ca[i];
Monty Taylor860bb0a2014-03-22 09:41:25 -070031 while (c.charAt(0) === ' ') {
32 c = c.substring(1, c.length);
33 }
34 if (c.indexOf(nameEQ) === 0) {
Joshua Heskethace48892014-03-22 17:18:31 +110035 return c.substring(nameEQ.length, c.length);
36 }
37 }
38 return default_value;
39 }
40
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +100041 $.zuul = function(options) {
42 var options = $.extend({
43 'enabled': true,
44 'graphite_url': '',
45 'source': 'status.json',
46 'msg_id': '#zuul_msg',
47 'pipelines_id': '#zuul_pipelines',
48 'queue_events_num': '#zuul_queue_events_num',
49 'queue_results_num': '#zuul_queue_results_num',
50 }, options);
Joshua Heskethace48892014-03-22 17:18:31 +110051
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +100052 var collapsed_exceptions = [];
Joshua Hesketh6f94dd12014-08-20 16:14:53 +100053 var current_filter = read_cookie('zuul_filter_string', '');
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +100054 var $jq;
Timo Tijhof51516cd2013-04-09 01:32:29 +020055
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +100056 var xhr,
57 zuul_graph_update_count = 0,
58 zuul_sparkline_urls = {};
Joshua Hesketh9d013542014-04-03 13:08:04 +110059
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +100060 function get_sparkline_url(pipeline_name) {
61 if (options.graphite_url !== '') {
62 if (!(pipeline_name in zuul_sparkline_urls)) {
63 zuul_sparkline_urls[pipeline_name] = $.fn.graphite
64 .geturl({
65 url: options.graphite_url,
66 from: "-8hours",
67 width: 100,
68 height: 26,
69 margin: 0,
70 hideLegend: true,
71 hideAxes: true,
72 hideGrid: true,
73 target: [
74 "color(stats.gauges.zuul.pipeline." + pipeline_name
75 + ".current_changes, '6b8182')"
76 ]
Joshua Hesketh298c4912014-03-20 16:06:25 +110077 });
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +100078 }
79 return zuul_sparkline_urls[pipeline_name];
80 }
81 return false;
82 }
Joshua Hesketh298c4912014-03-20 16:06:25 +110083
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +100084 var format = {
Joshua Hesketh6b1a2182014-03-21 14:40:04 +110085 job: function(job) {
Joshua Hesketh9e6ce532014-04-01 13:11:53 +110086 var $job_line = $('<span />');
87
Joshua Hesketh6b1a2182014-03-21 14:40:04 +110088 if (job.url !== null) {
Joshua Hesketh9e6ce532014-04-01 13:11:53 +110089 $job_line.append(
90 $('<a />')
91 .addClass('zuul-job-name')
92 .attr('href', job.url)
93 .text(job.name)
94 );
Joshua Hesketh6b1a2182014-03-21 14:40:04 +110095 }
Joshua Hesketh9e6ce532014-04-01 13:11:53 +110096 else {
97 $job_line.append(
98 $('<span />')
99 .addClass('zuul-job-name')
100 .text(job.name)
101 );
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100102 }
Joshua Hesketh9e6ce532014-04-01 13:11:53 +1100103
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000104 $job_line.append(this.job_status(job));
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100105
106 if (job.voting === false) {
107 $job_line.append(
Joshua Hesketh9e6ce532014-04-01 13:11:53 +1100108 $(' <small />')
109 .addClass('zuul-non-voting-desc')
110 .text(' (non-voting)')
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100111 );
112 }
Joshua Hesketh9e6ce532014-04-01 13:11:53 +1100113
Joshua Hesketha95fd552014-08-21 11:21:05 +1000114 $job_line.append($('<div style="clear: both"></div>'));
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100115 return $job_line;
116 },
117
118 job_status: function(job) {
119 var result = job.result ? job.result.toLowerCase() : null;
120 if (result === null) {
121 result = job.url ? 'in progress' : 'queued';
122 }
123
Monty Taylor860bb0a2014-03-22 09:41:25 -0700124 if (result === 'in progress') {
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000125 return this.job_progress_bar(job.elapsed_time,
Joshua Heskethf1b06ca2014-03-21 17:01:12 +1100126 job.remaining_time);
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100127 }
128 else {
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000129 return this.status_label(result);
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100130 }
131 },
132
133 status_label: function(result) {
Monty Taylor860bb0a2014-03-22 09:41:25 -0700134 var $status = $('<span />');
Joshua Heskethf1b06ca2014-03-21 17:01:12 +1100135 $status.addClass('zuul-job-result label');
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100136
137 switch (result) {
138 case 'success':
139 $status.addClass('label-success');
140 break;
141 case 'failure':
142 $status.addClass('label-danger');
143 break;
144 case 'unstable':
145 $status.addClass('label-warning');
146 break;
147 case 'in progress':
148 case 'queued':
149 case 'lost':
150 $status.addClass('label-default');
151 break;
152 }
153 $status.text(result);
154 return $status;
155 },
156
Joshua Heskethf1b06ca2014-03-21 17:01:12 +1100157 job_progress_bar: function(elapsed_time, remaining_time) {
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100158 var progress_percent = 100 * (elapsed_time / (elapsed_time +
159 remaining_time));
160 var $bar_inner = $('<div />')
161 .addClass('progress-bar')
162 .attr('role', 'progressbar')
163 .attr('aria-valuenow', 'progressbar')
164 .attr('aria-valuemin', progress_percent)
165 .attr('aria-valuemin', '0')
166 .attr('aria-valuemax', '100')
167 .css('width', progress_percent + '%');
168
169 var $bar_outter = $('<div />')
Joshua Heskethf1b06ca2014-03-21 17:01:12 +1100170 .addClass('progress zuul-job-result')
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100171 .append($bar_inner);
172
173 return $bar_outter;
174 },
175
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100176 enqueue_time: function(ms) {
177 // Special format case for enqueue time to add style
178 var hours = 60 * 60 * 1000;
179 var now = Date.now();
180 var delta = now - ms;
Monty Taylor860bb0a2014-03-22 09:41:25 -0700181 var status = 'text-success';
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000182 var text = this.time(delta, true);
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100183 if (delta > (4 * hours)) {
Monty Taylor860bb0a2014-03-22 09:41:25 -0700184 status = 'text-danger';
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100185 } else if (delta > (2 * hours)) {
Monty Taylor860bb0a2014-03-22 09:41:25 -0700186 status = 'text-warning';
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100187 }
188 return '<span class="' + status + '">' + text + '</span>';
189 },
190
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100191 time: function(ms, words) {
Monty Taylor860bb0a2014-03-22 09:41:25 -0700192 if (typeof(words) === 'undefined') {
193 words = false;
194 }
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100195 var seconds = (+ms)/1000;
196 var minutes = Math.floor(seconds/60);
197 var hours = Math.floor(minutes/60);
198 seconds = Math.floor(seconds % 60);
199 minutes = Math.floor(minutes % 60);
Monty Taylor860bb0a2014-03-22 09:41:25 -0700200 var r = '';
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100201 if (words) {
202 if (hours) {
203 r += hours;
204 r += ' hr ';
205 }
206 r += minutes + ' min';
207 } else {
Monty Taylor860bb0a2014-03-22 09:41:25 -0700208 if (hours < 10) {
209 r += '0';
210 }
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100211 r += hours + ':';
Monty Taylor860bb0a2014-03-22 09:41:25 -0700212 if (minutes < 10) {
213 r += '0';
214 }
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100215 r += minutes + ':';
Monty Taylor860bb0a2014-03-22 09:41:25 -0700216 if (seconds < 10) {
217 r += '0';
218 }
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100219 r += seconds;
220 }
221 return r;
222 },
223
Joshua Heskethf1b06ca2014-03-21 17:01:12 +1100224 change_total_progress_bar: function(change) {
Monty Taylor860bb0a2014-03-22 09:41:25 -0700225 var job_percent = Math.floor(100 / change.jobs.length);
Joshua Heskethf1b06ca2014-03-21 17:01:12 +1100226 var $bar_outter = $('<div />')
227 .addClass('progress zuul-change-total-result');
228
229 $.each(change.jobs, function (i, job) {
230 var result = job.result ? job.result.toLowerCase() : null;
231 if (result === null) {
232 result = job.url ? 'in progress' : 'queued';
233 }
234
Monty Taylor860bb0a2014-03-22 09:41:25 -0700235 if (result !== 'queued') {
Joshua Heskethf1b06ca2014-03-21 17:01:12 +1100236 var $bar_inner = $('<div />')
237 .addClass('progress-bar');
238
239 switch (result) {
240 case 'success':
241 $bar_inner.addClass('progress-bar-success');
242 break;
243 case 'lost':
244 case 'failure':
245 $bar_inner.addClass('progress-bar-danger');
246 break;
247 case 'unstable':
248 $bar_inner.addClass('progress-bar-warning');
249 break;
250 case 'in progress':
251 case 'queued':
252 break;
253 }
254 $bar_inner.attr('title', job.name)
255 .css('width', job_percent + '%');
256 $bar_outter.append($bar_inner);
257 }
258 });
259 return $bar_outter;
260 },
261
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100262 change_header: function(change) {
Monty Taylor860bb0a2014-03-22 09:41:25 -0700263 var change_id = change.id || 'NA';
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100264 if (change_id.length === 40) {
265 change_id = change_id.substr(0, 7);
Joshua Hesketh298c4912014-03-20 16:06:25 +1100266 }
Timo Tijhof51516cd2013-04-09 01:32:29 +0200267
Monty Taylor860bb0a2014-03-22 09:41:25 -0700268 var $change_link = $('<small />');
Joshua Hesketh298c4912014-03-20 16:06:25 +1100269 if (change.url !== null) {
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100270 $change_link.append(
Monty Taylor860bb0a2014-03-22 09:41:25 -0700271 $('<a />').attr('href', change.url).text(change.id)
Joshua Hesketh298c4912014-03-20 16:06:25 +1100272 );
Timo Tijhof51516cd2013-04-09 01:32:29 +0200273 }
Joshua Hesketh298c4912014-03-20 16:06:25 +1100274 else {
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100275 $change_link.text(change_id);
Timo Tijhof51516cd2013-04-09 01:32:29 +0200276 }
Timo Tijhof51516cd2013-04-09 01:32:29 +0200277
Monty Taylor860bb0a2014-03-22 09:41:25 -0700278 var $change_progress_row_left = $('<div />')
Joshua Heskethf1b06ca2014-03-21 17:01:12 +1100279 .addClass('col-xs-3')
280 .append($change_link);
Monty Taylor860bb0a2014-03-22 09:41:25 -0700281 var $change_progress_row_right = $('<div />')
Joshua Heskethf1b06ca2014-03-21 17:01:12 +1100282 .addClass('col-xs-9')
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000283 .append(this.change_total_progress_bar(change));
Joshua Heskethf1b06ca2014-03-21 17:01:12 +1100284
Monty Taylor860bb0a2014-03-22 09:41:25 -0700285 var $change_progress_row = $('<div />')
Joshua Heskethf1b06ca2014-03-21 17:01:12 +1100286 .addClass('row')
287 .append($change_progress_row_left)
Monty Taylor860bb0a2014-03-22 09:41:25 -0700288 .append($change_progress_row_right);
Joshua Heskethf1b06ca2014-03-21 17:01:12 +1100289
Monty Taylor860bb0a2014-03-22 09:41:25 -0700290 var $project_span = $('<span />')
Joshua Heskethace48892014-03-22 17:18:31 +1100291 .addClass('change_project')
292 .text(change.project);
293
Monty Taylor860bb0a2014-03-22 09:41:25 -0700294 var $left = $('<div />')
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100295 .addClass('col-xs-8')
Joshua Hesketh1751e4f2014-04-01 13:24:51 +1100296 .append($project_span, $change_progress_row);
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100297
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000298 var remaining_time = this.time(
Monty Taylor860bb0a2014-03-22 09:41:25 -0700299 change.remaining_time, true);
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000300 var enqueue_time = this.enqueue_time(
Monty Taylor860bb0a2014-03-22 09:41:25 -0700301 change.enqueue_time);
302 var $remaining_time = $('<small />').addClass('time')
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100303 .attr('title', 'Remaining Time').html(remaining_time);
Monty Taylor860bb0a2014-03-22 09:41:25 -0700304 var $enqueue_time = $('<small />').addClass('time')
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100305 .attr('title', 'Elapsed Time').html(enqueue_time);
306
Monty Taylor860bb0a2014-03-22 09:41:25 -0700307 var $right = $('<div />')
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100308 .addClass('col-xs-4 text-right')
309 .append($remaining_time, $('<br />'), $enqueue_time);
310
Monty Taylor860bb0a2014-03-22 09:41:25 -0700311 var $header = $('<div />')
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100312 .addClass('row')
313 .append($left, $right);
314 return $header;
315 },
316
317 change_list: function(jobs) {
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000318 var format = this;
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100319 var $list = $('<ul />')
Joshua Hesketh5caf4f62014-04-01 12:52:43 +1100320 .addClass('list-group zuul-patchset-body');
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100321
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100322 $.each(jobs, function (i, job) {
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100323 var $item = $('<li />')
324 .addClass('list-group-item')
325 .addClass('zuul-change-job')
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000326 .append(format.job(job));
Joshua Hesketh298c4912014-03-20 16:06:25 +1100327 $list.append($item);
Timo Tijhof51516cd2013-04-09 01:32:29 +0200328 });
329
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100330 return $list;
331 },
332
333 change_panel: function (change) {
334 var $header = $('<div />')
Joshua Hesketh5caf4f62014-04-01 12:52:43 +1100335 .addClass('panel-heading zuul-patchset-header')
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000336 .append(this.change_header(change));
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100337
Joshua Heskethdb8046e2014-03-21 18:42:25 +1100338 var panel_id = change.id ? change.id.replace(',', '_')
339 : change.project.replace('/', '_') +
Monty Taylor860bb0a2014-03-22 09:41:25 -0700340 '-' + change.enqueue_time;
Joshua Heskethdb8046e2014-03-21 18:42:25 +1100341 var $panel = $('<div />')
Monty Taylor860bb0a2014-03-22 09:41:25 -0700342 .attr('id', panel_id)
Joshua Hesketh0ca1e2e2014-03-21 16:49:05 +1100343 .addClass('panel panel-default zuul-change')
344 .append($header)
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000345 .append(this.change_list(change.jobs));
Joshua Heskethdb8046e2014-03-21 18:42:25 +1100346
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000347 $header.click(this.toggle_patchset);
Joshua Heskethdb8046e2014-03-21 18:42:25 +1100348 return $panel;
Timo Tijhof51516cd2013-04-09 01:32:29 +0200349 },
350
Joshua Hesketh5caf4f62014-04-01 12:52:43 +1100351 change_status_icon: function(change) {
352 var icon_name = 'green.png';
353 var icon_title = 'Succeeding';
354
355 if (change.active !== true) {
356 // Grey icon
357 icon_name = 'grey.png';
358 icon_title = 'Waiting until closer to head of queue to' +
359 ' start jobs';
360 }
361 else if (change.failing_reasons &&
362 change.failing_reasons.length > 0) {
363 var reason = change.failing_reasons.join(', ');
364 icon_title = 'Failing because ' + reason;
365 if (reason.match(/merge conflict/)) {
366 // Black icon
367 icon_name = 'black.png';
368 }
369 else {
370 // Red icon
371 icon_name = 'red.png';
372 }
373 }
374
375 var $icon = $('<img />')
376 .attr('src', 'images/' + icon_name)
377 .attr('title', icon_title)
378 .css('margin-top', '-6px');
379
380 return $icon;
381 },
382
383 change_with_status_tree: function(change, change_queue) {
384 var $change_row = $('<tr />');
385
386 for (var i = 0; i < change_queue._tree_columns; i++) {
387 var $tree_cell = $('<td />')
388 .css('height', '100%')
389 .css('padding', '0 0 10px 0')
390 .css('margin', '0')
391 .css('width', '16px')
392 .css('min-width', '16px')
393 .css('overflow', 'hidden')
394 .css('vertical-align', 'top');
395
396 if (i < change._tree.length && change._tree[i] !== null) {
397 $tree_cell.css('background-image',
398 'url(\'images/line.png\')')
399 .css('background-repeat', 'repeat-y');
400 }
401
402 if (i === change._tree_index) {
403 $tree_cell.append(
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000404 this.change_status_icon(change));
Joshua Hesketh5caf4f62014-04-01 12:52:43 +1100405 }
406 if (change._tree_branches.indexOf(i) !== -1) {
407 var $image = $('<img />')
408 .css('vertical-align', 'baseline');
409 if (change._tree_branches.indexOf(i) ===
410 change._tree_branches.length - 1) {
411 // Angle line
412 $image.attr('src', 'images/line-angle.png');
413 }
414 else {
415 // T line
416 $image.attr('src', 'images/line-t.png');
417 }
418 $tree_cell.append($image);
419 }
420 $change_row.append($tree_cell);
421 }
422
423 var change_width = 360 - 16*change_queue._tree_columns;
424 var $change_column = $('<td />')
425 .css('width', change_width + 'px')
426 .addClass('zuul-change-cell')
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000427 .append(this.change_panel(change));
Joshua Hesketh5caf4f62014-04-01 12:52:43 +1100428
429 $change_row.append($change_column);
430
431 var $change_table = $('<table />')
432 .addClass('zuul-change-box')
433 .css('-moz-box-sizing', 'content-box')
434 .css('box-sizing', 'content-box')
435 .append($change_row);
436
437 return $change_table;
438 },
439
Joshua Hesketh9d013542014-04-03 13:08:04 +1100440 pipeline_sparkline: function(pipeline_name) {
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000441 if (options.graphite_url !== '') {
Joshua Hesketh9d013542014-04-03 13:08:04 +1100442 var $sparkline = $('<img />')
443 .addClass('pull-right')
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000444 .attr('src', get_sparkline_url(pipeline_name));
Joshua Hesketh9d013542014-04-03 13:08:04 +1100445 return $sparkline;
446 }
447 return false;
448 },
449
450 pipeline_header: function(pipeline, count) {
451 // Format the pipeline name, sparkline and description
452 var $header_div = $('<div />')
453 .addClass('zuul-pipeline-header');
454
455 var $heading = $('<h3 />')
456 .css('vertical-align', 'middle')
457 .text(pipeline.name)
Joshua Hesketh5caf4f62014-04-01 12:52:43 +1100458 .append(
Joshua Hesketh9d013542014-04-03 13:08:04 +1100459 $('<span />')
460 .addClass('badge pull-right')
Joshua Hesketh5caf4f62014-04-01 12:52:43 +1100461 .css('vertical-align', 'middle')
Joshua Hesketh9d013542014-04-03 13:08:04 +1100462 .css('margin-top', '0.5em')
463 .text(count)
464 )
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000465 .append(this.pipeline_sparkline(pipeline.name));
Joshua Hesketh9d013542014-04-03 13:08:04 +1100466
467 $header_div.append($heading);
Joshua Hesketh298c4912014-03-20 16:06:25 +1100468
Timo Tijhof51516cd2013-04-09 01:32:29 +0200469 if (typeof pipeline.description === 'string') {
Joshua Hesketh9d013542014-04-03 13:08:04 +1100470 $header_div.append(
Joshua Hesketh298c4912014-03-20 16:06:25 +1100471 $('<p />').append(
472 $('<small />').text(pipeline.description)
473 )
474 );
Timo Tijhof51516cd2013-04-09 01:32:29 +0200475 }
Joshua Hesketh9d013542014-04-03 13:08:04 +1100476 return $header_div;
477 },
478
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000479 pipeline: function (pipeline, count) {
480 var format = this;
Joshua Hesketh9d013542014-04-03 13:08:04 +1100481 var $html = $('<div />')
482 .addClass('zuul-pipeline col-md-4')
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000483 .append(this.pipeline_header(pipeline, count));
Timo Tijhof51516cd2013-04-09 01:32:29 +0200484
Joshua Heskethcbdcca12014-03-20 16:06:25 +1100485 $.each(pipeline.change_queues,
Joshua Hesketh5caf4f62014-04-01 12:52:43 +1100486 function (queue_i, change_queue) {
487 $.each(change_queue.heads, function (head_i, changes) {
Joshua Heskethcbdcca12014-03-20 16:06:25 +1100488 if (pipeline.change_queues.length > 1 &&
Joshua Hesketh5caf4f62014-04-01 12:52:43 +1100489 head_i === 0) {
490 var name = change_queue.name;
Joshua Hesketh6b1a2182014-03-21 14:40:04 +1100491 var short_name = name;
492 if (short_name.length > 32) {
493 short_name = short_name.substr(0, 32) + '...';
Timo Tijhof51516cd2013-04-09 01:32:29 +0200494 }
Joshua Hesketh298c4912014-03-20 16:06:25 +1100495 $html.append(
496 $('<p />')
497 .text('Queue: ')
498 .append(
499 $('<abbr />')
500 .attr('title', name)
501 .text(short_name)
502 )
503 );
Timo Tijhof51516cd2013-04-09 01:32:29 +0200504 }
Joshua Hesketh5caf4f62014-04-01 12:52:43 +1100505
506 $.each(changes, function (change_i, change) {
507 var $change_box =
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000508 format.change_with_status_tree(
Joshua Hesketh5caf4f62014-04-01 12:52:43 +1100509 change, change_queue);
510 $html.append($change_box);
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000511 format.display_patchset($change_box);
Timo Tijhof51516cd2013-04-09 01:32:29 +0200512 });
513 });
514 });
Joshua Hesketh298c4912014-03-20 16:06:25 +1100515 return $html;
Joshua Heskethace48892014-03-22 17:18:31 +1100516 },
517
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000518 toggle_patchset: function(e) {
519 // Toggle showing/hiding the patchset when the header is
520 // clicked.
521
522 // Grab the patchset panel
523 var $panel = $(e.target).parents('.zuul-change');
524 var $body = $panel.children('.zuul-patchset-body');
525 $body.toggle(200);
526 var collapsed_index = collapsed_exceptions.indexOf(
527 $panel.attr('id'));
528 if (collapsed_index === -1 ) {
529 // Currently not an exception, add it to list
530 collapsed_exceptions.push($panel.attr('id'));
531 }
532 else {
533 // Currently an except, remove from exceptions
534 collapsed_exceptions.splice(collapsed_index, 1);
535 }
536 },
537
538 display_patchset: function($change_box, animate) {
539 // Determine if to show or hide the patchset and/or the results
540 // when loaded
541
542 // See if we should hide the body/results
543 var $panel = $change_box.find('.zuul-change');
544 var panel_change = $panel.attr('id');
545 var $body = $panel.children('.zuul-patchset-body');
546 var expand_by_default = $('#expand_by_default')
547 .prop('checked');
548
549 var collapsed_index = collapsed_exceptions
550 .indexOf(panel_change);
551
552 if (expand_by_default && collapsed_index === -1 ||
553 !expand_by_default && collapsed_index !== -1) {
554 // Expand by default, or is an exception
555 $body.show(animate);
556 }
557 else {
558 $body.hide(animate);
559 }
560
561 // Check if we should hide the whole panel
562 var panel_project = $panel.find('.change_project').text()
563 .toLowerCase();
564
565
566 var panel_pipeline = $change_box
567 .parents('.zuul-pipeline')
568 .find('.zuul-pipeline-header > h3')
569 .html()
570 .toLowerCase();
571
572 if (current_filter !== '') {
573 var show_panel = false;
574 var filter = current_filter.trim().split(/[\s,]+/);
575 $.each(filter, function(index, f_val) {
576 if (f_val !== '') {
577 f_val = f_val.toLowerCase();
578 if (panel_project.indexOf(f_val) !== -1 ||
579 panel_pipeline.indexOf(f_val) !== -1 ||
580 panel_change.indexOf(f_val) !== -1) {
581 show_panel = true;
582 }
583 }
584 });
585 if (show_panel === true) {
586 $change_box.show(animate);
587 }
588 else {
589 $change_box.hide(animate);
590 }
591 }
592 else {
593 $change_box.show(animate);
594 }
595 },
596 };
597
598 var app = {
599 schedule: function (app) {
600 var app = app || this;
601 if (!options.enabled) {
602 setTimeout(function() {app.schedule(app);}, 5000);
603 return;
604 }
605 app.update().complete(function () {
606 setTimeout(function() {app.schedule(app);}, 5000);
607 });
608
609 /* Only update graphs every minute */
610 if (zuul_graph_update_count > 11) {
611 zuul_graph_update_count = 0;
612 zuul.update_sparklines();
613 }
614 },
615
616 /** @return {jQuery.Promise} */
617 update: function () {
618 // Cancel the previous update if it hasn't completed yet.
619 if (xhr) {
620 xhr.abort();
621 }
622
623 this.emit('update-start');
624 var app = this;
625
626 var $msg = $(options.msg_id)
627 xhr = $.getJSON(options.source)
628 .done(function (data) {
629 if ('message' in data) {
630 $msg.removeClass('alert-danger')
631 .addClass('alert-info')
632 .text(data.message)
633 .show();
634 } else {
635 $msg.empty()
636 .hide();
637 }
638
639 if ('zuul_version' in data) {
640 $('#zuul-version-span').text(data.zuul_version);
641 }
642 if ('last_reconfigured' in data) {
643 var last_reconfigured =
644 new Date(data.last_reconfigured);
645 $('#last-reconfigured-span').text(
646 last_reconfigured.toString());
647 }
648
649 var $pipelines = $(options.pipelines_id);
650 $pipelines.html('');
651 $.each(data.pipelines, function (i, pipeline) {
652 var count = app.create_tree(pipeline);
653 $pipelines.append(
654 format.pipeline(pipeline, count));
655 });
656
657 $(options.queue_events_num).text(
658 data.trigger_event_queue ?
659 data.trigger_event_queue.length : '0'
660 );
661 $(options.queue_results_num).text(
662 data.result_event_queue ?
663 data.result_event_queue.length : '0'
664 );
665 })
666 .fail(function (err, jqXHR, errMsg) {
Joshua Heskethd50eb582014-04-30 19:51:22 +1000667 $msg.text(options.source + ': ' + errMsg)
668 .addClass('alert-danger')
669 .removeClass('zuul-msg-wrap-off')
670 .show();
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000671 })
672 .complete(function () {
673 xhr = undefined;
674 app.emit('update-end');
675 });
676
677 return xhr;
678 },
679
680 update_sparklines: function() {
681 $.each(zuul_sparkline_urls, function(name, url) {
682 var newimg = new Image();
683 var parts = url.split('#');
684 newimg.src = parts[0] + '#' + new Date().getTime();
685 $(newimg).load(function (x) {
686 zuul_sparkline_urls[name] = newimg.src;
687 });
688 });
689 },
690
691 emit: function () {
692 $jq.trigger.apply($jq, arguments);
693 return this;
694 },
695 on: function () {
696 $jq.on.apply($jq, arguments);
697 return this;
698 },
699 one: function () {
700 $jq.one.apply($jq, arguments);
701 return this;
702 },
703
704 control_form: function() {
705 // Build the filter form filling anything from cookies
706
707 var $control_form = $('<form />')
708 .attr('role', 'form')
709 .addClass('form-inline')
710 .submit(this.handle_filter_change);
711
712 $control_form
713 .append(this.filter_form_group())
714 .append(this.expand_form_group());
715
716 return $control_form;
717 },
718
Joshua Hesketh1ed6f9d2014-03-31 22:53:06 +1100719 filter_form_group: function() {
Joshua Heskethace48892014-03-22 17:18:31 +1100720 // Update the filter form with a clear button if required
721
722 var $label = $('<label />')
723 .addClass('control-label')
724 .attr('for', 'filter_string')
725 .text('Filters')
726 .css('padding-right', '0.5em');
727
728 var $input = $('<input />')
729 .attr('type', 'text')
730 .attr('id', 'filter_string')
731 .addClass('form-control')
732 .attr('title',
733 'project(s), pipeline(s) or review(s) comma ' +
734 'separated')
Joshua Hesketh1ed6f9d2014-03-31 22:53:06 +1100735 .attr('value', current_filter);
Joshua Heskethace48892014-03-22 17:18:31 +1100736
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000737 $input.change(this.handle_filter_change);
Joshua Heskethace48892014-03-22 17:18:31 +1100738
739 var $clear_icon = $('<span />')
740 .addClass('form-control-feedback')
741 .addClass('glyphicon glyphicon-remove-circle')
742 .attr('id', 'filter_form_clear_box')
743 .attr('title', 'clear filter')
744 .css('cursor', 'pointer');
745
746 $clear_icon.click(function() {
747 $('#filter_string').val('').change();
748 });
749
Joshua Hesketh1ed6f9d2014-03-31 22:53:06 +1100750 if (current_filter === '') {
Joshua Heskethace48892014-03-22 17:18:31 +1100751 $clear_icon.hide();
752 }
753
754 var $form_group = $('<div />')
755 .addClass('form-group has-feedback')
756 .append($label, $input, $clear_icon);
757 return $form_group;
758 },
759
Joshua Heskethae230f62014-03-22 22:14:44 +1100760 expand_form_group: function() {
Monty Taylor860bb0a2014-03-22 09:41:25 -0700761 var expand_by_default = (
Joshua Heskethae230f62014-03-22 22:14:44 +1100762 read_cookie('zuul_expand_by_default', false) === 'true');
763
Monty Taylor860bb0a2014-03-22 09:41:25 -0700764 var $checkbox = $('<input />')
Joshua Heskethae230f62014-03-22 22:14:44 +1100765 .attr('type', 'checkbox')
766 .attr('id', 'expand_by_default')
767 .prop('checked', expand_by_default)
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000768 .change(this.handle_expand_by_default);
Joshua Heskethae230f62014-03-22 22:14:44 +1100769
Monty Taylor860bb0a2014-03-22 09:41:25 -0700770 var $label = $('<label />')
Joshua Heskethae230f62014-03-22 22:14:44 +1100771 .css('padding-left', '1em')
772 .html('Expand by default: ')
773 .append($checkbox);
774
775 var $form_group = $('<div />')
776 .addClass('checkbox')
777 .append($label);
778 return $form_group;
779 },
780
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000781 handle_filter_change: function() {
782 // Update the filter and save it to a cookie
783 current_filter = $('#filter_string').val();
784 set_cookie('zuul_filter_string', current_filter);
785 if (current_filter === '') {
786 $('#filter_form_clear_box').hide();
Joshua Heskethace48892014-03-22 17:18:31 +1100787 }
788 else {
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000789 $('#filter_form_clear_box').show();
Joshua Heskethace48892014-03-22 17:18:31 +1100790 }
Joshua Heskethace48892014-03-22 17:18:31 +1100791
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000792 $('.zuul-change-box').each(function(index, obj) {
793 var $change_box = $(obj);
794 format.display_patchset($change_box, 200);
Joshua Hesketh5caf4f62014-04-01 12:52:43 +1100795 });
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000796 return false;
Timo Tijhof51516cd2013-04-09 01:32:29 +0200797 },
Joshua Hesketh0f5c66a2014-04-30 19:23:36 +1000798
799 handle_expand_by_default: function(e) {
800 // Handle toggling expand by default
801 set_cookie('zuul_expand_by_default', e.target.checked);
802 collapsed_exceptions = [];
803 $('.zuul-change-box').each(function(index, obj) {
804 var $change_box = $(obj);
805 format.display_patchset($change_box, 200);
806 });
807 },
808
809 create_tree: function(pipeline) {
810 var count = 0;
811 var pipeline_max_tree_columns = 1;
812 $.each(pipeline.change_queues, function(change_queue_i,
813 change_queue) {
814 var tree = [];
815 var max_tree_columns = 1;
816 var changes = [];
817 var last_tree_length = 0;
818 $.each(change_queue.heads, function(head_i, head) {
819 $.each(head, function(change_i, change) {
820 changes[change.id] = change;
821 change._tree_position = change_i;
822 });
823 });
824 $.each(change_queue.heads, function(head_i, head) {
825 $.each(head, function(change_i, change) {
826 count += 1;
827 var idx = tree.indexOf(change.id);
828 if (idx > -1) {
829 change._tree_index = idx;
830 // remove...
831 tree[idx] = null;
832 while (tree[tree.length - 1] === null) {
833 tree.pop();
834 }
835 } else {
836 change._tree_index = 0;
837 }
838 change._tree_branches = [];
839 change._tree = [];
840 if (typeof(change.items_behind) === 'undefined') {
841 change.items_behind = [];
842 }
843 change.items_behind.sort(function(a, b) {
844 return (changes[b]._tree_position -
845 changes[a]._tree_position);
846 });
847 $.each(change.items_behind, function(i, id) {
848 tree.push(id);
849 if (tree.length>last_tree_length &&
850 last_tree_length > 0) {
851 change._tree_branches.push(
852 tree.length - 1);
853 }
854 });
855 if (tree.length > max_tree_columns) {
856 max_tree_columns = tree.length;
857 }
858 if (tree.length > pipeline_max_tree_columns) {
859 pipeline_max_tree_columns = tree.length;
860 }
861 change._tree = tree.slice(0); // make a copy
862 last_tree_length = tree.length;
863 });
864 });
865 change_queue._tree_columns = max_tree_columns;
866 });
867 pipeline._tree_columns = pipeline_max_tree_columns;
868 return count;
869 },
870 };
871
872 $jq = $(app);
873 return {
874 options: options,
875 format: format,
876 app: app,
877 jq: $jq
878 };
879 }
Timo Tijhof51516cd2013-04-09 01:32:29 +0200880}(jQuery));