woodpecker/server/static/scripts/controllers/builds.js

201 lines
5.1 KiB
JavaScript
Raw Normal View History

2015-04-08 22:43:59 +00:00
(function () {
/**
* BuildsCtrl responsible for rendering the repo's
* recent build history.
*/
2015-04-30 02:57:43 +00:00
function BuildsCtrl($scope, $routeParams, builds, repos, users, feed, logs) {
2015-04-08 22:43:59 +00:00
var owner = $routeParams.owner;
var name = $routeParams.name;
var fullName = owner+'/'+name;
// Gets the currently authenticated user
2015-04-08 22:43:59 +00:00
users.getCached().then(function(payload){
$scope.user = payload.data;
});
2015-04-08 22:43:59 +00:00
// Gets a repository
repos.get(fullName).then(function(payload){
$scope.repo = payload.data;
}).catch(function(err){
$scope.error = err;
});
// Gets a list of builds
builds.list(fullName).then(function(payload){
$scope.builds = angular.isArray(payload.data) ? payload.data : [];
}).catch(function(err){
$scope.error = err;
});
$scope.watch = function(repo) {
repos.watch(repo.full_name).then(function(payload) {
$scope.repo.subscription = payload.data;
});
}
$scope.unwatch = function(repo) {
repos.unwatch(repo.full_name).then(function() {
delete $scope.repo.subscription;
});
}
2015-04-25 00:06:46 +00:00
feed.subscribe(function(event) {
if (event.repo.full_name !== fullName) {
return; // ignore
}
// update repository
$scope.repo = event.repo;
$scope.$apply();
var added = false;
for (var i=0;i<$scope.builds.length;i++) {
var build = $scope.builds[i];
if (event.build.number !== build.number) {
continue; // ignore
}
// update the build status
build.state = event.build.state;
build.started_at = event.build.started_at;
build.finished_at = event.build.finished_at;
build.duration = event.build.duration;
$scope.builds[i] = build;
$scope.$apply();
added = true;
}
if (!added) {
$scope.builds.push(event.build);
$scope.$apply();
2015-04-25 00:06:46 +00:00
}
});
2015-04-08 22:43:59 +00:00
}
/**
* BuildCtrl responsible for rendering a build.
*/
2015-04-30 07:20:48 +00:00
function BuildCtrl($scope, $routeParams, $window, logs, builds, repos, users, feed) {
2015-04-08 22:43:59 +00:00
var step = parseInt($routeParams.step) || 1;
var number = $routeParams.number;
var owner = $routeParams.owner;
var name = $routeParams.name;
var fullName = owner+'/'+name;
2015-04-30 07:20:48 +00:00
var tail = false;
2015-04-08 22:43:59 +00:00
2015-04-30 02:57:43 +00:00
// Initiates streaming a build.
var stream = function() {
var convert = new Filter({stream:true,newline:false});
var term = document.getElementById("term");
term.innerHTML = "";
2015-04-30 07:20:48 +00:00
// subscribes to the build otuput.
2015-04-30 02:57:43 +00:00
logs.subscribe(fullName, number, step, function(data){
term.innerHTML += convert.toHtml(data)+"\n";
2015-04-30 07:20:48 +00:00
if (tail) {
// scrolls to the bottom of the page if enabled
$window.scrollTo(0, $window.document.body.scrollHeight);
}
2015-04-30 02:57:43 +00:00
});
}
// Gets the currently authenticated user
2015-04-08 22:43:59 +00:00
users.getCached().then(function(payload){
$scope.user = payload.data;
});
2015-04-08 22:43:59 +00:00
// Gets a repository
repos.get(fullName).then(function(payload){
$scope.repo = payload.data;
}).catch(function(err){
$scope.error = err;
});
// Gets the build
builds.get(fullName, number).then(function(payload){
$scope.build = payload.data;
2015-04-16 22:05:00 +00:00
$scope.task = payload.data.tasks[step-1];
if (['pending', 'killed'].indexOf($scope.task.state) !== -1) {
2015-04-16 22:05:00 +00:00
// do nothing
} else if ($scope.task.state === 'running') {
// stream the build
2015-04-30 02:57:43 +00:00
stream();
2015-04-16 22:05:00 +00:00
} else {
// fetch the logs for the finished build.
logs.get(fullName, number, step).then(function(payload){
var convert = new Filter({stream:false,newline:false});
var term = document.getElementById("term")
term.innerHTML = convert.toHtml(payload.data);
2015-04-16 22:05:00 +00:00
}).catch(function(err){
$scope.error = err;
});
}
2015-04-08 22:43:59 +00:00
}).catch(function(err){
$scope.error = err;
});
2015-04-17 05:07:13 +00:00
$scope.restart = function() {
builds.restart(fullName, number).then(function(payload){
$scope.build = payload.data;
$scope.task = payload.data.tasks[step-1];
}).catch(function(err){
2015-04-17 05:07:13 +00:00
$scope.error = err;
});
};
$scope.cancel = function() {
builds.cancel(fullName, number).then(function(payload){
$scope.build = payload.data;
$scope.task = payload.data.tasks[step-1];
}).catch(function(err) {
2015-04-17 05:07:13 +00:00
$scope.error = err;
});
};
2015-04-30 07:20:48 +00:00
$scope.tail = function() {
tail = !tail;
};
2015-04-25 00:06:46 +00:00
feed.subscribe(function(event) {
if (event.repo.full_name !== fullName) {
return; // ignore
}
if (event.build.number !== parseInt(number)) {
return; // ignore
}
// update the build status
$scope.build.state = event.build.state;
$scope.build.started_at = event.build.started_at;
$scope.build.finished_at = event.build.finished_at;
2015-04-25 00:06:46 +00:00
$scope.build.duration = event.build.duration;
$scope.$apply();
if (!event.task || event.task.number !== step) {
return; // ignore
}
2015-04-30 02:57:43 +00:00
if (event.task.state === 'running' && $scope.task.state !== 'running') {
stream();
}
2015-04-25 00:06:46 +00:00
// update the task status
$scope.task.state = event.task.state;
$scope.task.started_at = event.task.started_at;
$scope.task.finished_at = event.task.finished_at;
2015-04-25 00:06:46 +00:00
$scope.task.duration = event.task.duration;
$scope.task.exit_code = event.task.exit_code;
$scope.$apply();
});
2015-04-30 02:57:43 +00:00
2015-04-08 22:43:59 +00:00
}
angular
.module('drone')
.controller('BuildCtrl', BuildCtrl)
.controller('BuildsCtrl', BuildsCtrl);
})();