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

108 lines
2.5 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-08 22:43:59 +00:00
function BuildsCtrl($scope, $routeParams, builds, repos, users) {
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;
});
}
}
/**
* BuildCtrl responsible for rendering a build.
*/
function BuildCtrl($scope, $routeParams, logs, builds, repos, users) {
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;
// 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 ($scope.task.state === 'pending') {
// do nothing
} else if ($scope.task.state === 'running') {
// stream the build
} else {
// fetch the logs for the finished build.
logs.get(fullName, number, step).then(function(payload){
$scope.logs = payload.data;
}).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).catch(function(err){
$scope.error = err;
});
};
$scope.cancel = function() {
builds.cancel(fullName, number).catch(function(err) {
$scope.error = err;
});
};
2015-04-08 22:43:59 +00:00
}
angular
.module('drone')
.controller('BuildCtrl', BuildCtrl)
.controller('BuildsCtrl', BuildsCtrl);
})();