woodpecker/server/app/scripts/app.js

249 lines
6.1 KiB
JavaScript
Raw Normal View History

'use strict';
var app = angular.module('app', [
'ngRoute',
'ui.filters',
'angularMoment'
]);
angular.module('app').constant('angularMomentConfig', {
preprocess: 'unix'
});
2014-09-30 08:05:01 +00:00
// First, parse the query string
var params = {}, queryString = location.hash.substring(1),
regex = /([^&=]+)=([^&]*)/g, m;
while (m = regex.exec(queryString)) {
params[decodeURIComponent(m[1])] = decodeURIComponent(m[2]);
}
// if the user is authenticated we should add Basic
// auth token to each request.
if (params.access_token) {
localStorage.setItem("access_token", params.access_token);
history.replaceState({}, document.title, location.pathname);
}
2014-09-30 07:43:50 +00:00
app.config(['$routeProvider', '$locationProvider', '$httpProvider', function($routeProvider, $locationProvider, $httpProvider) {
$routeProvider.when('/', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/home.html',
controller: 'HomeController',
title: 'Dashboard',
resolve: {
user: function(authService) {
return authService.getUser();
}
}
})
2014-07-10 05:24:06 +00:00
.when('/sync', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/sync.html',
2014-07-10 05:24:06 +00:00
controller: 'SyncController',
title: 'Sync'
})
.when('/login', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/login.html',
2014-07-13 02:01:58 +00:00
controller: 'LoginController',
2014-10-14 04:10:55 +00:00
title: 'Login'
})
.when('/logout', {
templateUrl: '/static/views/logout.html',
controller: 'LogoutController',
title: 'Logout'
})
2014-09-03 07:43:36 +00:00
.when('/gitlab', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/login_gitlab.html',
2014-09-03 07:43:36 +00:00
title: 'GitLab Login',
})
2014-09-28 03:36:11 +00:00
.when('/gogs', {
templateUrl: '/static/views/login_gogs.html',
title: 'Gogs Setup',
})
.when('/setup', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/setup.html',
controller: 'SetupController',
title: 'Setup'
})
.when('/setup/:remote', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/setup.html',
controller: 'SetupController',
title: 'Setup'
})
.when('/account/profile', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/account.html',
controller: 'UserController',
title: 'Profile',
resolve: {
user: function(authService) {
return authService.getUser();
}
}
})
.when('/account/repos', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/repo_list.html',
controller: 'AccountReposController',
title: 'Repositories',
resolve: {
user: function(authService) {
return authService.getUser();
}
}
})
.when('/admin/users/add', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/users_add.html',
controller: 'UserAddController',
title: 'Add User',
resolve: {
user: function(authService) {
return authService.getUser();
}
}
})
.when('/admin/users/:host/:login', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/users_edit.html',
controller: 'UserEditController',
title: 'Edit User',
resolve: {
user: function(authService) {
return authService.getUser();
}
}
})
.when('/admin/users', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/users.html',
controller: 'UsersController',
title: 'System Users',
resolve: {
user: function(authService) {
return authService.getUser();
}
}
})
.when('/admin/settings', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/config.html',
controller: 'ConfigController',
title: 'System Settings',
resolve: {
user: function(authService) {
return authService.getUser();
}
}
})
.when('/:remote/:owner/:name/settings', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/repo_edit.html',
controller: 'RepoConfigController',
title: 'Repository Settings',
resolve: {
user: function(authService) {
return authService.getUser();
}
}
})
2014-10-20 19:26:43 +00:00
.when('/:remote/:owner/:name/:branch*\/:commit', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/commit.html',
controller: 'CommitController',
title: 'Recent Commits',
resolve: {
user: function(authService) {
return authService.getUser();
}
}
})
.when('/:remote/:owner/:name', {
2014-09-30 07:43:50 +00:00
templateUrl: '/static/views/repo.html',
controller: 'RepoController',
title: 'Recent Commits',
resolve: {
user: function(authService) {
return authService.getUser();
},
repo: function($route, repos) {
var remote = $route.current.params.remote;
var owner = $route.current.params.owner;
var name = $route.current.params.name;
return repos.getRepo(remote, owner, name);
}
}
});
// use the HTML5 History API
$locationProvider.html5Mode(true);
2014-09-30 08:05:01 +00:00
$httpProvider.defaults.headers.common.Authorization = 'Bearer '+localStorage.getItem('access_token');
2014-09-30 07:43:50 +00:00
$httpProvider.interceptors.push(function($q, $location) {
return {
'responseError': function(rejection) {
2014-09-30 07:43:50 +00:00
if (rejection.status == 401 && rejection.config.url != "/api/user") {
$location.path('/login');
}
return $q.reject(rejection);
}
};
});
}]);
/* also see https://coderwall.com/p/vcfo4q */
2014-07-11 22:29:31 +00:00
app.run(['$location', '$rootScope', '$routeParams', 'feed', 'stdout', function($location, $rootScope, $routeParams, feed, stdout) {
$rootScope.$on('$routeChangeStart', function (event, next) {
feed.unsubscribe();
stdout.unsubscribe();
});
$rootScope.$on('$routeChangeSuccess', function (event, current, previous) {
document.title = current.$$route.title + ' · drone.io';
});
}]);
/* Controllers */
app.controller("AccountReposController", function($scope, $http, $location, user) {
$scope.user = user;
$scope.syncUser = function() {
$http({method: 'POST', url: '/api/user/sync' }).success(function(data){
$location.search('return_to', $location.$$path).path('/sync')
}).error(function(data, status){
if (status == 409) {
$scope.msg = 'already'
} else {
$scope.msg = 'bad'
}
$scope.$apply();
});
}
// get the user details
2014-09-30 07:43:50 +00:00
$http({method: 'GET', url: '/api/user/repos'}).
success(function(data, status, headers, config) {
$scope.repos = (typeof data==='string')?[]:data;
}).
error(function(data, status, headers, config) {
console.log(data);
});
$scope.active="";
$scope.remote="";
$scope.byActive = function(entry){
switch (true) {
case $scope.active == "true" && !entry.active: return false;
case $scope.active == "false" && entry.active: return false;
}
return true;
};
$scope.byRemote = function(entry){
2014-09-28 03:36:11 +00:00
return $scope.remote == "" || $scope.remote == entry.remote;
};
});