2013-10-17 18:46:23 +00:00
|
|
|
$.fn.clipboardCopy = function() {
|
2013-11-19 00:03:35 +00:00
|
|
|
var clip = new ZeroClipboard($(this), { 'moviePath': 'static/lib/ZeroClipboard.swf' });
|
|
|
|
|
2013-10-17 18:46:23 +00:00
|
|
|
clip.on('complete', function() {
|
|
|
|
// Resets the animation.
|
|
|
|
var elem = $('#clipboardCopied')[0];
|
|
|
|
elem.style.display = 'none';
|
2013-10-22 04:40:33 +00:00
|
|
|
elem.classList.remove('animated');
|
|
|
|
|
2013-10-17 18:46:23 +00:00
|
|
|
// Show the notification.
|
|
|
|
setTimeout(function() {
|
|
|
|
elem.style.display = 'inline-block';
|
2013-10-22 04:40:33 +00:00
|
|
|
elem.classList.add('animated');
|
|
|
|
}, 10);
|
2013-10-17 18:46:23 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-10-14 21:50:07 +00:00
|
|
|
function SigninCtrl($scope, $location, $timeout, Restangular, KeyService, UserService) {
|
|
|
|
$scope.sendRecovery = function() {
|
|
|
|
var signinPost = Restangular.one('recovery');
|
|
|
|
signinPost.customPOST($scope.recovery).then(function() {
|
|
|
|
$scope.invalidEmail = false;
|
|
|
|
$scope.sent = true;
|
|
|
|
}, function(result) {
|
|
|
|
$scope.invalidEmail = true;
|
|
|
|
$scope.sent = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2013-11-07 20:33:56 +00:00
|
|
|
function PlansCtrl($scope, $location, UserService, PlanService) {
|
2013-11-01 23:13:58 +00:00
|
|
|
// Load the list of plans.
|
2013-11-05 19:40:45 +00:00
|
|
|
PlanService.getPlans(function(plans) {
|
2013-11-01 23:13:58 +00:00
|
|
|
$scope.plans = plans;
|
|
|
|
});
|
2013-10-04 18:35:51 +00:00
|
|
|
|
2013-10-02 22:14:51 +00:00
|
|
|
$scope.$watch( function () { return UserService.currentUser(); }, function (currentUser) {
|
|
|
|
$scope.user = currentUser;
|
|
|
|
}, true);
|
|
|
|
|
|
|
|
$scope.buyNow = function(plan) {
|
|
|
|
if ($scope.user && !$scope.user.anonymous) {
|
2013-10-12 17:24:55 +00:00
|
|
|
document.location = '/user?plan=' + plan;
|
2013-10-02 22:14:51 +00:00
|
|
|
} else {
|
|
|
|
$('#signinModal').modal({});
|
|
|
|
}
|
|
|
|
};
|
2013-11-07 20:33:56 +00:00
|
|
|
|
|
|
|
$scope.createOrg = function(plan) {
|
|
|
|
if ($scope.user && !$scope.user.anonymous) {
|
|
|
|
document.location = '/organizations/new/?plan=' + plan;
|
|
|
|
} else {
|
|
|
|
$('#signinModal').modal({});
|
|
|
|
}
|
|
|
|
};
|
2013-10-02 22:14:51 +00:00
|
|
|
}
|
|
|
|
|
2013-10-11 00:53:14 +00:00
|
|
|
function GuideCtrl($scope) {
|
2013-10-02 04:28:24 +00:00
|
|
|
}
|
|
|
|
|
2013-11-22 20:54:23 +00:00
|
|
|
function SecurityCtrl($scope) {
|
2013-10-02 04:28:24 +00:00
|
|
|
}
|
|
|
|
|
2013-10-02 17:29:18 +00:00
|
|
|
function RepoListCtrl($scope, Restangular, UserService) {
|
2013-11-07 02:52:31 +00:00
|
|
|
$scope.namespace = null;
|
|
|
|
|
2013-10-02 17:29:18 +00:00
|
|
|
$scope.$watch( function () { return UserService.currentUser(); }, function (currentUser) {
|
|
|
|
$scope.user = currentUser;
|
|
|
|
}, true);
|
|
|
|
|
2013-11-07 02:52:31 +00:00
|
|
|
$scope.$watch('namespace', function(namespace) {
|
|
|
|
loadMyRepos(namespace);
|
|
|
|
});
|
|
|
|
|
2013-10-01 20:42:20 +00:00
|
|
|
$scope.loading = true;
|
2013-10-02 04:28:24 +00:00
|
|
|
$scope.public_repositories = null;
|
2013-11-07 06:48:58 +00:00
|
|
|
$scope.user_repositories = [];
|
2013-10-02 04:28:24 +00:00
|
|
|
|
2013-11-07 06:48:58 +00:00
|
|
|
var loadMyRepos = function(namespace) {
|
2013-11-07 02:52:31 +00:00
|
|
|
if (!$scope.user || $scope.user.anonymous || !namespace) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.loadingmyrepos = true;
|
|
|
|
|
|
|
|
// Load the list of repositories.
|
|
|
|
var params = {
|
2013-11-08 03:44:18 +00:00
|
|
|
'public': false,
|
2013-11-07 02:52:31 +00:00
|
|
|
'sort': true,
|
|
|
|
'namespace': namespace
|
|
|
|
};
|
|
|
|
|
|
|
|
var repositoryFetch = Restangular.all('repository/');
|
|
|
|
repositoryFetch.getList(params).then(function(resp) {
|
|
|
|
$scope.user_repositories = resp.repositories;
|
|
|
|
$scope.loading = !($scope.public_repositories && $scope.user_repositories);
|
|
|
|
});
|
|
|
|
};
|
2013-10-01 20:42:20 +00:00
|
|
|
|
2013-10-02 04:28:24 +00:00
|
|
|
// Load the list of public repositories.
|
|
|
|
var options = {'public': true, 'private': false, 'sort': true, 'limit': 10};
|
|
|
|
var repositoryPublicFetch = Restangular.all('repository/');
|
|
|
|
repositoryPublicFetch.getList(options).then(function(resp) {
|
|
|
|
$scope.public_repositories = resp.repositories;
|
2013-11-07 02:52:31 +00:00
|
|
|
$scope.loading = !($scope.public_repositories && $scope.user_repositories);
|
2013-10-01 20:42:20 +00:00
|
|
|
});
|
2013-09-24 22:21:14 +00:00
|
|
|
}
|
|
|
|
|
2013-10-28 17:22:18 +00:00
|
|
|
function LandingCtrl($scope, $timeout, $location, Restangular, UserService, KeyService) {
|
2013-10-01 23:37:33 +00:00
|
|
|
$('.form-signup').popover();
|
2013-09-24 22:21:14 +00:00
|
|
|
|
2013-11-07 02:52:31 +00:00
|
|
|
$scope.namespace = null;
|
|
|
|
|
|
|
|
$scope.$watch('namespace', function(namespace) {
|
|
|
|
loadMyRepos(namespace);
|
|
|
|
});
|
2013-10-02 04:28:24 +00:00
|
|
|
|
2013-11-07 02:52:31 +00:00
|
|
|
$scope.$watch( function () { return UserService.currentUser(); }, function (currentUser) {
|
2013-10-01 23:37:33 +00:00
|
|
|
$scope.user = currentUser;
|
|
|
|
}, true);
|
|
|
|
|
2013-10-10 21:32:32 +00:00
|
|
|
angulartics.waitForVendorApi(mixpanel, 500, function(loadedMixpanel) {
|
|
|
|
var mixpanelId = loadedMixpanel.get_distinct_id();
|
|
|
|
$scope.github_state_clause = '&state=' + mixpanelId;
|
|
|
|
});
|
|
|
|
|
2013-10-10 18:42:14 +00:00
|
|
|
$scope.githubClientId = KeyService.githubClientId;
|
|
|
|
|
2013-10-01 23:37:33 +00:00
|
|
|
$scope.awaitingConfirmation = false;
|
2013-10-02 02:13:43 +00:00
|
|
|
$scope.registering = false;
|
|
|
|
|
2013-10-01 23:37:33 +00:00
|
|
|
$scope.register = function() {
|
2013-10-02 02:13:43 +00:00
|
|
|
$('.form-signup').popover('hide');
|
|
|
|
$scope.registering = true;
|
|
|
|
|
2013-10-01 23:37:33 +00:00
|
|
|
var newUserPost = Restangular.one('user/');
|
|
|
|
newUserPost.customPOST($scope.newUser).then(function() {
|
|
|
|
$scope.awaitingConfirmation = true;
|
2013-10-02 02:13:43 +00:00
|
|
|
$scope.registering = false;
|
2013-10-08 15:50:34 +00:00
|
|
|
|
|
|
|
mixpanel.alias($scope.newUser.username);
|
2013-10-01 23:37:33 +00:00
|
|
|
}, function(result) {
|
2013-10-02 02:13:43 +00:00
|
|
|
$scope.registering = false;
|
2013-10-01 23:37:33 +00:00
|
|
|
$scope.registerError = result.data.message;
|
|
|
|
$timeout(function() {
|
|
|
|
$('.form-signup').popover('show');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
2013-10-02 04:28:24 +00:00
|
|
|
|
2013-11-07 05:49:13 +00:00
|
|
|
$scope.canCreateRepo = function(namespace) {
|
|
|
|
if (!$scope.user) { return false; }
|
|
|
|
|
|
|
|
if (namespace == $scope.user.username) {
|
|
|
|
return true;
|
|
|
|
}
|
2013-11-08 03:44:34 +00:00
|
|
|
|
|
|
|
if ($scope.user.organizations) {
|
|
|
|
for (var i = 0; i < $scope.user.organizations.length; ++i) {
|
|
|
|
var org = $scope.user.organizations[i];
|
|
|
|
if (org.name == namespace) {
|
|
|
|
return org.can_create_repo;
|
|
|
|
}
|
2013-11-07 05:49:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2013-11-07 02:52:31 +00:00
|
|
|
var loadMyRepos = function(namespace) {
|
|
|
|
if (!$scope.user || $scope.user.anonymous || !namespace) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.loadingmyrepos = true;
|
2013-10-02 04:28:24 +00:00
|
|
|
|
2013-11-07 02:52:31 +00:00
|
|
|
// Load the list of repositories.
|
|
|
|
var params = {
|
|
|
|
'limit': 4,
|
2013-11-08 03:44:18 +00:00
|
|
|
'public': false,
|
2013-11-07 02:52:31 +00:00
|
|
|
'sort': true,
|
|
|
|
'namespace': namespace
|
|
|
|
};
|
2013-10-02 04:28:24 +00:00
|
|
|
|
2013-11-07 02:52:31 +00:00
|
|
|
var repositoryFetch = Restangular.all('repository/');
|
|
|
|
repositoryFetch.getList(params).then(function(resp) {
|
2013-10-02 04:28:24 +00:00
|
|
|
$scope.myrepos = resp.repositories;
|
|
|
|
$scope.loadingmyrepos = false;
|
|
|
|
});
|
|
|
|
};
|
2013-10-11 00:53:14 +00:00
|
|
|
|
2013-10-12 01:28:02 +00:00
|
|
|
browserchrome.update();
|
2013-09-24 22:21:14 +00:00
|
|
|
}
|
2013-09-26 21:59:20 +00:00
|
|
|
|
2013-10-17 21:59:34 +00:00
|
|
|
function RepoCtrl($scope, Restangular, $routeParams, $rootScope, $location, $timeout) {
|
2013-09-26 21:59:20 +00:00
|
|
|
$rootScope.title = 'Loading...';
|
2013-09-27 21:01:45 +00:00
|
|
|
|
2013-11-20 21:17:47 +00:00
|
|
|
$scope.$on('$destroy', function() {
|
|
|
|
if ($scope.tree) {
|
|
|
|
$scope.tree.dispose();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-10-17 03:09:43 +00:00
|
|
|
// Watch for changes to the tag parameter.
|
|
|
|
$scope.$on('$routeUpdate', function(){
|
|
|
|
$scope.setTag($location.search().tag, false);
|
|
|
|
});
|
|
|
|
|
2013-11-05 00:59:28 +00:00
|
|
|
$scope.updateForDescription = function(content) {
|
|
|
|
$scope.repo.description = content;
|
2013-09-26 23:07:25 +00:00
|
|
|
$scope.repo.put();
|
2013-09-27 19:26:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.parseDate = function(dateString) {
|
|
|
|
return Date.parse(dateString);
|
|
|
|
};
|
2013-09-30 23:08:24 +00:00
|
|
|
|
2013-10-11 00:43:37 +00:00
|
|
|
$scope.getTimeSince = function(createdTime) {
|
2013-10-10 04:40:18 +00:00
|
|
|
return moment($scope.parseDate(createdTime)).fromNow();
|
|
|
|
};
|
|
|
|
|
2013-10-17 02:37:29 +00:00
|
|
|
var getDefaultTag = function() {
|
|
|
|
if ($scope.repo === undefined) {
|
|
|
|
return undefined;
|
|
|
|
} else if ($scope.repo.tags.hasOwnProperty('latest')) {
|
|
|
|
return $scope.repo.tags['latest'];
|
|
|
|
} else {
|
|
|
|
for (key in $scope.repo.tags) {
|
|
|
|
return $scope.repo.tags[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-10-17 18:29:47 +00:00
|
|
|
$scope.$watch('repo', function() {
|
|
|
|
if ($scope.tree) {
|
2013-10-17 21:59:34 +00:00
|
|
|
$timeout(function() {
|
|
|
|
$scope.tree.notifyResized();
|
|
|
|
});
|
2013-10-17 18:29:47 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-10-30 00:54:36 +00:00
|
|
|
var fetchRepository = function() {
|
|
|
|
var repositoryFetch = Restangular.one('repository/' + namespace + '/' + name);
|
|
|
|
repositoryFetch.get().then(function(repo) {
|
|
|
|
$rootScope.title = namespace + '/' + name;
|
2013-11-19 00:03:35 +00:00
|
|
|
|
|
|
|
var kind = repo.is_public ? 'public' : 'private';
|
|
|
|
$rootScope.description = jQuery(getFirstTextLine(repo.description)).text() ||
|
|
|
|
'View of a ' + kind + ' docker repository on Quay';
|
|
|
|
|
2013-10-30 00:54:36 +00:00
|
|
|
$scope.repo = repo;
|
|
|
|
|
|
|
|
$scope.setTag($routeParams.tag);
|
|
|
|
|
|
|
|
$('#copyClipboard').clipboardCopy();
|
|
|
|
$scope.loading = false;
|
|
|
|
|
|
|
|
if (repo.is_building) {
|
|
|
|
startBuildInfoTimer(repo);
|
|
|
|
}
|
|
|
|
}, function() {
|
|
|
|
$scope.repo = null;
|
|
|
|
$scope.loading = false;
|
|
|
|
$rootScope.title = 'Unknown Repository';
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-10-26 20:03:11 +00:00
|
|
|
var startBuildInfoTimer = function(repo) {
|
2013-10-29 22:56:56 +00:00
|
|
|
if ($scope.interval) { return; }
|
|
|
|
|
2013-10-28 17:09:22 +00:00
|
|
|
getBuildInfo(repo);
|
2013-10-29 22:56:56 +00:00
|
|
|
$scope.interval = setInterval(function() {
|
2013-10-30 00:54:36 +00:00
|
|
|
$scope.$apply(function() { getBuildInfo(repo); });
|
|
|
|
}, 5000);
|
2013-10-29 22:56:56 +00:00
|
|
|
|
|
|
|
$scope.$on("$destroy", function() {
|
2013-10-30 00:54:36 +00:00
|
|
|
cancelBuildInfoTimer();
|
2013-10-29 22:56:56 +00:00
|
|
|
});
|
2013-10-26 20:03:11 +00:00
|
|
|
};
|
|
|
|
|
2013-10-30 00:54:36 +00:00
|
|
|
var cancelBuildInfoTimer = function() {
|
|
|
|
if ($scope.interval) {
|
|
|
|
clearInterval($scope.interval);
|
|
|
|
}
|
|
|
|
};
|
2013-09-27 21:01:45 +00:00
|
|
|
|
2013-10-26 20:03:11 +00:00
|
|
|
var getBuildInfo = function(repo) {
|
|
|
|
var buildInfo = Restangular.one('repository/' + repo.namespace + '/' + repo.name + '/build/');
|
|
|
|
buildInfo.get().then(function(resp) {
|
2013-10-30 00:54:36 +00:00
|
|
|
var runningBuilds = [];
|
|
|
|
for (var i = 0; i < resp.builds.length; ++i) {
|
|
|
|
var build = resp.builds[i];
|
|
|
|
if (build.status != 'complete') {
|
|
|
|
runningBuilds.push(build);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.buildsInfo = runningBuilds;
|
|
|
|
if (!runningBuilds.length) {
|
|
|
|
// Cancel the build timer.
|
|
|
|
cancelBuildInfoTimer();
|
|
|
|
|
|
|
|
// Mark the repo as no longer building.
|
|
|
|
$scope.repo.is_building = false;
|
|
|
|
|
|
|
|
// Reload the repo information.
|
|
|
|
fetchRepository();
|
|
|
|
listImages();
|
|
|
|
}
|
2013-10-26 20:03:11 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-10-17 02:37:29 +00:00
|
|
|
var listImages = function() {
|
|
|
|
var imageFetch = Restangular.one('repository/' + namespace + '/' + name + '/image/');
|
2013-10-01 23:37:33 +00:00
|
|
|
imageFetch.get().then(function(resp) {
|
|
|
|
$scope.imageHistory = resp.images;
|
2013-10-30 17:55:44 +00:00
|
|
|
|
|
|
|
// Dispose of any existing tree.
|
|
|
|
if ($scope.tree) {
|
2013-11-20 21:17:47 +00:00
|
|
|
$scope.tree.dispose();
|
2013-10-30 17:55:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create the new tree.
|
2013-10-17 02:33:35 +00:00
|
|
|
$scope.tree = new ImageHistoryTree(namespace, name, resp.images,
|
2013-11-05 20:31:49 +00:00
|
|
|
getFirstTextLine, $scope.getTimeSince);
|
2013-10-11 00:43:37 +00:00
|
|
|
|
|
|
|
$scope.tree.draw('image-history-container');
|
2013-10-17 02:49:37 +00:00
|
|
|
|
2013-10-17 02:44:44 +00:00
|
|
|
// If we already have a tag, use it
|
|
|
|
if ($scope.currentTag) {
|
|
|
|
$scope.tree.setTag($scope.currentTag.name);
|
|
|
|
}
|
|
|
|
|
2013-10-11 00:43:37 +00:00
|
|
|
$($scope.tree).bind('tagChanged', function(e) {
|
2013-10-30 17:55:44 +00:00
|
|
|
$scope.$apply(function() { $scope.setTag(e.tag, true); });
|
2013-10-11 00:43:37 +00:00
|
|
|
});
|
|
|
|
$($scope.tree).bind('imageChanged', function(e) {
|
|
|
|
$scope.$apply(function() { $scope.setImage(e.image); });
|
|
|
|
});
|
2013-10-01 23:37:33 +00:00
|
|
|
});
|
2013-09-27 21:01:45 +00:00
|
|
|
};
|
2013-09-26 21:59:20 +00:00
|
|
|
|
2013-10-18 21:59:26 +00:00
|
|
|
$scope.loadImageChanges = function(image) {
|
|
|
|
$scope.currentImageChanges = null;
|
|
|
|
|
|
|
|
var changesFetch = Restangular.one('repository/' + namespace + '/' + name + '/image/' + image.id + '/changes');
|
|
|
|
changesFetch.get().then(function(changeInfo) {
|
|
|
|
$scope.currentImageChanges = changeInfo;
|
|
|
|
}, function() {
|
2013-10-30 17:03:44 +00:00
|
|
|
$scope.currentImageChanges = {'added': [], 'removed': [], 'changed': []};
|
2013-10-18 21:59:26 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.getMoreCount = function(changes) {
|
|
|
|
if (!changes) { return 0; }
|
2013-10-19 00:23:41 +00:00
|
|
|
var addedDisplayed = Math.min(5, changes.added.length);
|
|
|
|
var removedDisplayed = Math.min(5, changes.removed.length);
|
|
|
|
var changedDisplayed = Math.min(5, changes.changed.length);
|
2013-10-18 21:59:26 +00:00
|
|
|
|
|
|
|
return (changes.added.length + changes.removed.length + changes.changed.length) -
|
|
|
|
addedDisplayed - removedDisplayed - changedDisplayed;
|
|
|
|
};
|
|
|
|
|
2013-10-11 00:43:37 +00:00
|
|
|
$scope.setImage = function(image) {
|
|
|
|
$scope.currentImage = image;
|
2013-10-18 21:59:26 +00:00
|
|
|
$scope.loadImageChanges(image);
|
2013-10-11 00:43:37 +00:00
|
|
|
if ($scope.tree) {
|
|
|
|
$scope.tree.setImage($scope.currentImage.id);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-10-17 03:09:43 +00:00
|
|
|
$scope.setTag = function(tagName, opt_updateURL) {
|
2013-10-11 00:43:37 +00:00
|
|
|
var repo = $scope.repo;
|
2013-10-17 02:37:29 +00:00
|
|
|
var proposedTag = repo.tags[tagName];
|
|
|
|
if (!proposedTag) {
|
|
|
|
// We must find a good default
|
|
|
|
for (tagName in repo.tags) {
|
|
|
|
if (!proposedTag || tagName == 'latest') {
|
|
|
|
proposedTag = repo.tags[tagName];
|
|
|
|
}
|
|
|
|
}
|
2013-10-17 03:09:43 +00:00
|
|
|
}
|
|
|
|
|
2013-10-17 02:37:29 +00:00
|
|
|
if (proposedTag) {
|
2013-10-17 02:44:44 +00:00
|
|
|
$scope.currentTag = proposedTag;
|
2013-10-17 02:37:29 +00:00
|
|
|
$scope.currentImage = $scope.currentTag.image;
|
2013-10-18 21:59:26 +00:00
|
|
|
$scope.loadImageChanges($scope.currentImage);
|
2013-10-17 02:37:29 +00:00
|
|
|
if ($scope.tree) {
|
|
|
|
$scope.tree.setTag($scope.currentTag.name);
|
2013-10-17 03:12:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (opt_updateURL) {
|
|
|
|
$location.search('tag', $scope.currentTag.name);
|
|
|
|
}
|
2013-10-11 00:43:37 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-10-02 05:05:36 +00:00
|
|
|
$scope.getTagCount = function(repo) {
|
|
|
|
if (!repo) { return 0; }
|
|
|
|
var count = 0;
|
|
|
|
for (var tag in repo.tags) {
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
};
|
|
|
|
|
2013-09-26 21:59:20 +00:00
|
|
|
var namespace = $routeParams.namespace;
|
|
|
|
var name = $routeParams.name;
|
|
|
|
|
2013-10-01 20:42:20 +00:00
|
|
|
$scope.loading = true;
|
|
|
|
|
2013-10-11 00:43:37 +00:00
|
|
|
// Fetch the repo.
|
2013-10-30 00:54:36 +00:00
|
|
|
fetchRepository();
|
2013-10-11 00:43:37 +00:00
|
|
|
|
|
|
|
// Fetch the image history.
|
2013-10-17 02:37:29 +00:00
|
|
|
listImages();
|
2013-09-26 23:59:58 +00:00
|
|
|
}
|
2013-09-27 00:34:58 +00:00
|
|
|
|
2013-09-27 19:26:16 +00:00
|
|
|
function RepoAdminCtrl($scope, Restangular, $routeParams, $rootScope) {
|
2013-10-17 18:46:23 +00:00
|
|
|
$('.info-icon').popover({
|
|
|
|
'trigger': 'hover',
|
|
|
|
'html': true
|
|
|
|
});
|
|
|
|
|
2013-09-27 19:26:16 +00:00
|
|
|
var namespace = $routeParams.namespace;
|
|
|
|
var name = $routeParams.name;
|
|
|
|
|
2013-11-02 01:48:10 +00:00
|
|
|
$scope.permissions = {'team': [], 'user': []};
|
2013-12-02 19:55:04 +00:00
|
|
|
$scope.logsShown = 0;
|
|
|
|
|
|
|
|
$scope.loadLogs = function() {
|
|
|
|
$scope.logsShown++;
|
|
|
|
};
|
2013-09-28 05:23:00 +00:00
|
|
|
|
2013-11-02 01:48:10 +00:00
|
|
|
$scope.grantRole = function() {
|
|
|
|
$('#confirmaddoutsideModal').modal('hide');
|
|
|
|
var entity = $scope.currentAddEntity;
|
2013-11-04 23:52:38 +00:00
|
|
|
$scope.addRole(entity.name, 'read', entity.kind, entity.is_org_member)
|
2013-11-02 01:48:10 +00:00
|
|
|
$scope.currentAddEntity = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.addNewPermission = function(entity) {
|
2013-09-28 05:23:00 +00:00
|
|
|
// Don't allow duplicates.
|
2013-11-02 01:48:10 +00:00
|
|
|
if ($scope.permissions[entity.kind][entity.name]) { return; }
|
|
|
|
|
2013-11-08 04:35:27 +00:00
|
|
|
if (entity.is_org_member === false) {
|
2013-11-02 01:48:10 +00:00
|
|
|
$scope.currentAddEntity = entity;
|
|
|
|
$('#confirmaddoutsideModal').modal('show');
|
|
|
|
return;
|
|
|
|
}
|
2013-09-28 05:23:00 +00:00
|
|
|
|
|
|
|
// Need the $scope.apply for both the permission stuff to change and for
|
|
|
|
// the XHR call to be made.
|
|
|
|
$scope.$apply(function() {
|
2013-11-21 00:43:19 +00:00
|
|
|
$scope.addRole(entity.name, 'read', entity.kind);
|
2013-09-28 05:23:00 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-11-02 01:48:10 +00:00
|
|
|
$scope.deleteRole = function(entityName, kind) {
|
2013-11-04 20:31:38 +00:00
|
|
|
var permissionDelete = Restangular.one(getRestUrl('repository', namespace, name, 'permissions', kind, entityName));
|
2013-09-28 05:23:00 +00:00
|
|
|
permissionDelete.customDELETE().then(function() {
|
2013-11-02 01:48:10 +00:00
|
|
|
delete $scope.permissions[kind][entityName];
|
2013-11-08 04:35:27 +00:00
|
|
|
}, function(resp) {
|
|
|
|
if (resp.status == 409) {
|
|
|
|
$scope.changePermError = resp.data || '';
|
|
|
|
$('#channgechangepermModal').modal({});
|
2013-10-01 23:37:33 +00:00
|
|
|
} else {
|
|
|
|
$('#cannotchangeModal').modal({});
|
|
|
|
}
|
2013-09-28 05:23:00 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-11-21 00:43:19 +00:00
|
|
|
$scope.addRole = function(entityName, role, kind) {
|
2013-09-28 05:23:00 +00:00
|
|
|
var permission = {
|
2013-11-02 01:48:10 +00:00
|
|
|
'role': role,
|
2013-09-28 05:23:00 +00:00
|
|
|
};
|
|
|
|
|
2013-11-04 20:31:38 +00:00
|
|
|
var permissionPost = Restangular.one(getRestUrl('repository', namespace, name, 'permissions', kind, entityName));
|
2013-11-21 00:43:19 +00:00
|
|
|
permissionPost.customPOST(permission).then(function(result) {
|
|
|
|
$scope.permissions[kind][entityName] = result;
|
2013-09-28 05:23:00 +00:00
|
|
|
}, function(result) {
|
2013-10-01 23:37:33 +00:00
|
|
|
$('#cannotchangeModal').modal({});
|
2013-09-28 05:23:00 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-11-15 22:45:37 +00:00
|
|
|
$scope.roles = [
|
2013-11-05 19:47:46 +00:00
|
|
|
{ 'id': 'read', 'title': 'Read', 'kind': 'success' },
|
|
|
|
{ 'id': 'write', 'title': 'Write', 'kind': 'success' },
|
|
|
|
{ 'id': 'admin', 'title': 'Admin', 'kind': 'primary' }
|
|
|
|
];
|
|
|
|
|
|
|
|
$scope.setRole = function(role, entityName, kind) {
|
2013-11-02 01:48:10 +00:00
|
|
|
var permission = $scope.permissions[kind][entityName];
|
2013-09-28 05:23:00 +00:00
|
|
|
var currentRole = permission.role;
|
2013-09-27 19:26:16 +00:00
|
|
|
permission.role = role;
|
2013-09-28 05:23:00 +00:00
|
|
|
|
2013-11-04 20:31:38 +00:00
|
|
|
var permissionPut = Restangular.one(getRestUrl('repository', namespace, name, 'permissions', kind, entityName));
|
2013-11-08 04:35:27 +00:00
|
|
|
permissionPut.customPUT(permission).then(function() {}, function(resp) {
|
|
|
|
$scope.permissions[kind][entityName] = {'role': currentRole};
|
|
|
|
$scope.changePermError = null;
|
|
|
|
if (resp.status == 409 || resp.data) {
|
|
|
|
$scope.changePermError = resp.data || '';
|
|
|
|
$('#channgechangepermModal').modal({});
|
2013-10-01 23:37:33 +00:00
|
|
|
} else {
|
|
|
|
$('#cannotchangeModal').modal({});
|
|
|
|
}
|
2013-09-27 19:48:54 +00:00
|
|
|
});
|
2013-09-27 19:26:16 +00:00
|
|
|
};
|
|
|
|
|
2013-10-16 18:24:10 +00:00
|
|
|
$scope.createToken = function() {
|
|
|
|
var friendlyName = {
|
|
|
|
'friendlyName': $scope.newToken.friendlyName
|
|
|
|
};
|
|
|
|
|
|
|
|
var permissionPost = Restangular.one('repository/' + namespace + '/' + name + '/tokens/');
|
|
|
|
permissionPost.customPOST(friendlyName).then(function(newToken) {
|
2013-10-17 20:50:58 +00:00
|
|
|
$scope.newToken.friendlyName = '';
|
|
|
|
$scope.createTokenForm.$setPristine();
|
2013-10-16 18:24:10 +00:00
|
|
|
$scope.tokens[newToken.code] = newToken;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.deleteToken = function(tokenCode) {
|
|
|
|
var deleteAction = Restangular.one('repository/' + namespace + '/' + name + '/tokens/' + tokenCode);
|
|
|
|
deleteAction.customDELETE().then(function() {
|
|
|
|
delete $scope.tokens[tokenCode];
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.changeTokenAccess = function(tokenCode, newAccess) {
|
|
|
|
var role = {
|
|
|
|
'role': newAccess
|
|
|
|
};
|
|
|
|
|
|
|
|
var deleteAction = Restangular.one('repository/' + namespace + '/' + name + '/tokens/' + tokenCode);
|
|
|
|
deleteAction.customPUT(role).then(function(updated) {
|
|
|
|
$scope.tokens[updated.code] = updated;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-11-23 01:14:44 +00:00
|
|
|
$scope.shownTokenCounter = 0;
|
|
|
|
|
2013-10-16 18:24:10 +00:00
|
|
|
$scope.showToken = function(tokenCode) {
|
|
|
|
$scope.shownToken = $scope.tokens[tokenCode];
|
2013-11-23 01:14:44 +00:00
|
|
|
$scope.shownTokenCounter++;
|
2013-10-16 18:24:10 +00:00
|
|
|
};
|
|
|
|
|
2013-09-28 21:11:10 +00:00
|
|
|
$scope.askChangeAccess = function(newAccess) {
|
2013-10-01 23:37:33 +00:00
|
|
|
$('#make' + newAccess + 'Modal').modal({});
|
2013-09-28 21:11:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.changeAccess = function(newAccess) {
|
2013-10-01 23:37:33 +00:00
|
|
|
$('#make' + newAccess + 'Modal').modal('hide');
|
|
|
|
|
|
|
|
var visibility = {
|
|
|
|
'visibility': newAccess
|
|
|
|
};
|
|
|
|
var visibilityPost = Restangular.one('repository/' + namespace + '/' + name + '/changevisibility');
|
|
|
|
visibilityPost.customPOST(visibility).then(function() {
|
|
|
|
$scope.repo.is_public = newAccess == 'public';
|
|
|
|
}, function() {
|
|
|
|
$('#cannotchangeModal').modal({});
|
|
|
|
});
|
2013-09-28 21:11:10 +00:00
|
|
|
};
|
|
|
|
|
2013-10-01 18:14:30 +00:00
|
|
|
$scope.askDelete = function() {
|
2013-10-01 23:37:33 +00:00
|
|
|
$('#confirmdeleteModal').modal({});
|
2013-10-01 18:14:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
$scope.deleteRepo = function() {
|
2013-10-01 23:37:33 +00:00
|
|
|
$('#confirmdeleteModal').modal('hide');
|
|
|
|
|
|
|
|
var deleteAction = Restangular.one('repository/' + namespace + '/' + name);
|
|
|
|
deleteAction.customDELETE().then(function() {
|
|
|
|
$scope.repo = null;
|
|
|
|
|
|
|
|
setTimeout(function() {
|
2013-10-12 17:24:55 +00:00
|
|
|
document.location = '/repository/';
|
2013-10-01 23:37:33 +00:00
|
|
|
}, 1000);
|
|
|
|
}, function() {
|
|
|
|
$('#cannotchangeModal').modal({});
|
|
|
|
});
|
2013-10-01 18:14:30 +00:00
|
|
|
};
|
2013-10-02 05:05:36 +00:00
|
|
|
|
2013-10-01 20:42:20 +00:00
|
|
|
$scope.loading = true;
|
2013-10-01 18:14:30 +00:00
|
|
|
|
2013-11-02 01:48:10 +00:00
|
|
|
var checkLoading = function() {
|
|
|
|
$scope.loading = !($scope.permissions['user'] && $scope.permissions['team'] && $scope.repo && $scope.tokens);
|
|
|
|
};
|
|
|
|
|
|
|
|
var fetchPermissions = function(kind) {
|
|
|
|
var permissionsFetch = Restangular.one('repository/' + namespace + '/' + name + '/permissions/' + kind + '/');
|
|
|
|
permissionsFetch.get().then(function(resp) {
|
|
|
|
$rootScope.title = 'Settings - ' + namespace + '/' + name;
|
2013-11-19 00:03:35 +00:00
|
|
|
$rootScope.description = 'Administrator settings for ' + namespace + '/' + name +
|
2013-12-03 00:13:18 +00:00
|
|
|
': Permissions, webhooks and other settings';
|
2013-11-02 01:48:10 +00:00
|
|
|
$scope.permissions[kind] = resp.permissions;
|
|
|
|
checkLoading();
|
|
|
|
}, function() {
|
|
|
|
$scope.permissions[kind] = null;
|
|
|
|
$rootScope.title = 'Unknown Repository';
|
|
|
|
$scope.loading = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-09-28 21:11:10 +00:00
|
|
|
// Fetch the repository information.
|
|
|
|
var repositoryFetch = Restangular.one('repository/' + namespace + '/' + name);
|
|
|
|
repositoryFetch.get().then(function(repo) {
|
|
|
|
$scope.repo = repo;
|
2013-10-16 18:24:10 +00:00
|
|
|
$scope.loading = !($scope.permissions && $scope.repo && $scope.tokens);
|
2013-10-01 20:42:20 +00:00
|
|
|
}, function() {
|
|
|
|
$scope.permissions = null;
|
|
|
|
$rootScope.title = 'Unknown Repository';
|
|
|
|
$scope.loading = false;
|
2013-09-28 21:11:10 +00:00
|
|
|
});
|
|
|
|
|
2013-11-02 01:48:10 +00:00
|
|
|
// Fetch the user and team permissions.
|
|
|
|
fetchPermissions('user');
|
|
|
|
fetchPermissions('team');
|
2013-10-16 18:24:10 +00:00
|
|
|
|
|
|
|
// Fetch the tokens.
|
|
|
|
var tokensFetch = Restangular.one('repository/' + namespace + '/' + name + '/tokens/');
|
|
|
|
tokensFetch.get().then(function(resp) {
|
|
|
|
$scope.tokens = resp.tokens;
|
2013-11-02 01:48:10 +00:00
|
|
|
checkLoading();
|
2013-10-16 18:24:10 +00:00
|
|
|
}, function() {
|
|
|
|
$scope.tokens = null;
|
|
|
|
$scope.loading = false;
|
|
|
|
});
|
|
|
|
|
2013-11-15 22:45:37 +00:00
|
|
|
$scope.webhooksLoading = true;
|
|
|
|
$scope.loadWebhooks = function() {
|
|
|
|
$scope.webhooksLoading = true;
|
|
|
|
var fetchWebhooks = Restangular.one('repository/' + namespace + '/' + name + '/webhook/');
|
|
|
|
fetchWebhooks.get().then(function(resp) {
|
|
|
|
$scope.webhooks = resp.webhooks;
|
|
|
|
$scope.webhooksLoading = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.createWebhook = function() {
|
|
|
|
var newWebhook = Restangular.one('repository/' + namespace + '/' + name + '/webhook/');
|
|
|
|
newWebhook.customPOST($scope.newWebhook).then(function(resp) {
|
|
|
|
$scope.webhooks.push(resp);
|
|
|
|
$scope.newWebhook.url = '';
|
|
|
|
$scope.newWebhookForm.$setPristine();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.deleteWebhook = function(webhook) {
|
|
|
|
var deleteWebhookReq = Restangular.one('repository/' + namespace + '/' + name + '/webhook/' + webhook.public_id);
|
|
|
|
deleteWebhookReq.customDELETE().then(function(resp) {
|
|
|
|
$scope.webhooks.splice($scope.webhooks.indexOf(webhook), 1);
|
|
|
|
});
|
|
|
|
};
|
2013-10-02 04:48:03 +00:00
|
|
|
}
|
|
|
|
|
2013-11-07 21:33:56 +00:00
|
|
|
function UserAdminCtrl($scope, $timeout, $location, Restangular, PlanService, UserService, KeyService, $routeParams) {
|
2013-10-10 17:44:34 +00:00
|
|
|
$scope.$watch(function () { return UserService.currentUser(); }, function (currentUser) {
|
|
|
|
$scope.askForPassword = currentUser.askForPassword;
|
2013-11-06 22:59:16 +00:00
|
|
|
if (!currentUser.anonymous) {
|
|
|
|
$scope.user = currentUser;
|
|
|
|
}
|
|
|
|
$scope.loading = false;
|
2013-10-10 17:44:34 +00:00
|
|
|
}, true);
|
|
|
|
|
2013-11-06 23:14:22 +00:00
|
|
|
$scope.readyForPlan = function() {
|
|
|
|
// Show the subscribe dialog if a plan was requested.
|
|
|
|
return $routeParams['plan'];
|
|
|
|
};
|
2013-10-10 17:44:34 +00:00
|
|
|
|
2013-11-07 21:33:56 +00:00
|
|
|
if ($routeParams['migrate']) {
|
|
|
|
$('#migrateTab').tab('show')
|
|
|
|
}
|
|
|
|
|
2013-11-06 22:59:16 +00:00
|
|
|
$scope.loading = true;
|
2013-10-10 17:44:34 +00:00
|
|
|
$scope.updatingUser = false;
|
|
|
|
$scope.changePasswordSuccess = false;
|
2013-11-07 21:33:56 +00:00
|
|
|
$scope.convertStep = 0;
|
2013-11-08 03:08:23 +00:00
|
|
|
$scope.org = {};
|
2013-11-06 22:59:16 +00:00
|
|
|
|
2013-10-10 17:44:34 +00:00
|
|
|
$('.form-change-pw').popover();
|
|
|
|
|
2013-11-15 23:17:12 +00:00
|
|
|
$scope.planChanged = function(plan) {
|
|
|
|
$scope.hasPaidPlan = plan && plan.price > 0;
|
|
|
|
};
|
|
|
|
|
2013-11-07 21:33:56 +00:00
|
|
|
$scope.showConvertForm = function() {
|
2013-11-08 03:08:23 +00:00
|
|
|
PlanService.getMatchingBusinessPlan(function(plan) {
|
|
|
|
$scope.org.plan = plan;
|
|
|
|
});
|
|
|
|
|
|
|
|
PlanService.getPlans(function(plans) {
|
|
|
|
$scope.orgPlans = plans.business;
|
|
|
|
});
|
|
|
|
|
2013-11-07 21:33:56 +00:00
|
|
|
$scope.convertStep = 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.convertToOrg = function() {
|
|
|
|
$('#reallyconvertModal').modal({});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.reallyConvert = function() {
|
|
|
|
$scope.loading = true;
|
|
|
|
|
|
|
|
var data = {
|
|
|
|
'adminUser': $scope.org.adminUser,
|
2013-11-08 03:08:23 +00:00
|
|
|
'adminPassword': $scope.org.adminPassword,
|
|
|
|
'plan': $scope.org.plan.stripeId
|
2013-11-07 21:33:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
var convertAccount = Restangular.one('user/convert');
|
|
|
|
convertAccount.customPOST(data).then(function(resp) {
|
|
|
|
UserService.load();
|
|
|
|
$location.path('/');
|
|
|
|
}, function(resp) {
|
|
|
|
$scope.loading = false;
|
|
|
|
if (resp.data.reason == 'invaliduser') {
|
|
|
|
$('#invalidadminModal').modal({});
|
|
|
|
} else {
|
|
|
|
$('#cannotconvertModal').modal({});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-10-10 17:44:34 +00:00
|
|
|
$scope.changePassword = function() {
|
|
|
|
$('.form-change-pw').popover('hide');
|
|
|
|
$scope.updatingUser = true;
|
|
|
|
$scope.changePasswordSuccess = false;
|
|
|
|
var changePasswordPost = Restangular.one('user/');
|
|
|
|
changePasswordPost.customPUT($scope.user).then(function() {
|
|
|
|
$scope.updatingUser = false;
|
|
|
|
$scope.changePasswordSuccess = true;
|
|
|
|
|
2013-10-10 18:02:28 +00:00
|
|
|
// Reset the form
|
|
|
|
$scope.user.password = '';
|
|
|
|
$scope.user.repeatPassword = '';
|
|
|
|
$scope.changePasswordForm.$setPristine();
|
|
|
|
|
2013-11-06 22:59:16 +00:00
|
|
|
// Reload the user.
|
2013-10-10 17:44:34 +00:00
|
|
|
UserService.load();
|
|
|
|
}, function(result) {
|
|
|
|
$scope.updatingUser = false;
|
|
|
|
|
|
|
|
$scope.changePasswordError = result.data.message;
|
|
|
|
$timeout(function() {
|
|
|
|
$('.form-change-pw').popover('show');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
2013-10-17 21:45:08 +00:00
|
|
|
}
|
|
|
|
|
2013-10-19 02:28:46 +00:00
|
|
|
function ImageViewCtrl($scope, $routeParams, $rootScope, Restangular) {
|
|
|
|
var namespace = $routeParams.namespace;
|
|
|
|
var name = $routeParams.name;
|
|
|
|
var imageid = $routeParams.image;
|
|
|
|
|
|
|
|
$('#copyClipboard').clipboardCopy();
|
|
|
|
|
|
|
|
$scope.parseDate = function(dateString) {
|
|
|
|
return Date.parse(dateString);
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.getFolder = function(filepath) {
|
|
|
|
var index = filepath.lastIndexOf('/');
|
|
|
|
if (index < 0) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
return filepath.substr(0, index + 1);
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.getFolders = function(filepath) {
|
|
|
|
var index = filepath.lastIndexOf('/');
|
|
|
|
if (index < 0) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
return filepath.substr(0, index).split('/');
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.getFilename = function(filepath) {
|
|
|
|
var index = filepath.lastIndexOf('/');
|
|
|
|
if (index < 0) {
|
|
|
|
return filepath;
|
|
|
|
}
|
|
|
|
return filepath.substr(index + 1);
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.setFolderFilter = function(folderPath, index) {
|
|
|
|
var parts = folderPath.split('/');
|
|
|
|
parts = parts.slice(0, index + 1);
|
|
|
|
$scope.setFilter(parts.join('/'));
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.setFilter = function(filter) {
|
|
|
|
$scope.search = {};
|
|
|
|
$scope.search['$'] = filter;
|
|
|
|
document.getElementById('change-filter').value = filter;
|
|
|
|
};
|
2013-10-19 23:46:30 +00:00
|
|
|
|
|
|
|
$scope.initializeTree = function() {
|
|
|
|
if ($scope.tree) { return; }
|
|
|
|
|
|
|
|
$scope.tree = new ImageFileChangeTree($scope.image, $scope.combinedChanges);
|
|
|
|
setTimeout(function() {
|
|
|
|
$scope.tree.draw('changes-tree-container');
|
|
|
|
}, 10);
|
|
|
|
};
|
2013-10-19 02:28:46 +00:00
|
|
|
|
|
|
|
// Fetch the image.
|
|
|
|
var imageFetch = Restangular.one('repository/' + namespace + '/' + name + '/image/' + imageid);
|
|
|
|
imageFetch.get().then(function(image) {
|
|
|
|
$scope.loading = false;
|
|
|
|
$scope.repo = {
|
|
|
|
'name': name,
|
|
|
|
'namespace': namespace
|
|
|
|
};
|
|
|
|
$scope.image = image;
|
|
|
|
$rootScope.title = 'View Image - ' + image.id;
|
2013-11-19 00:03:35 +00:00
|
|
|
$rootScope.description = 'Viewing docker image ' + image.id + ' under repository ' + namespace + '/' + name +
|
|
|
|
': Image changes tree and list view';
|
2013-10-19 02:28:46 +00:00
|
|
|
}, function() {
|
|
|
|
$rootScope.title = 'Unknown Image';
|
|
|
|
$scope.loading = false;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Fetch the image changes.
|
|
|
|
var changesFetch = Restangular.one('repository/' + namespace + '/' + name + '/image/' + imageid + '/changes');
|
|
|
|
changesFetch.get().then(function(changes) {
|
|
|
|
var combinedChanges = [];
|
|
|
|
var addCombinedChanges = function(c, kind) {
|
|
|
|
for (var i = 0; i < c.length; ++i) {
|
|
|
|
combinedChanges.push({
|
|
|
|
'kind': kind,
|
|
|
|
'file': c[i]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
addCombinedChanges(changes.added, 'added');
|
|
|
|
addCombinedChanges(changes.removed, 'removed');
|
|
|
|
addCombinedChanges(changes.changed, 'changed');
|
|
|
|
|
|
|
|
$scope.combinedChanges = combinedChanges;
|
|
|
|
$scope.imageChanges = changes;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-10-28 17:22:18 +00:00
|
|
|
function V1Ctrl($scope, $location, UserService) {
|
2013-10-17 21:45:08 +00:00
|
|
|
$scope.$watch( function () { return UserService.currentUser(); }, function (currentUser) {
|
|
|
|
$scope.user = currentUser;
|
|
|
|
}, true);
|
2013-10-24 21:41:55 +00:00
|
|
|
}
|
|
|
|
|
2013-10-31 19:04:07 +00:00
|
|
|
function NewRepoCtrl($scope, $location, $http, $timeout, UserService, Restangular, PlanService) {
|
2013-10-30 19:44:01 +00:00
|
|
|
$scope.$watch( function () { return UserService.currentUser(); }, function (currentUser) {
|
|
|
|
$scope.user = currentUser;
|
|
|
|
}, true);
|
|
|
|
|
2013-10-24 21:41:55 +00:00
|
|
|
$scope.repo = {
|
|
|
|
'is_public': 1,
|
|
|
|
'description': '',
|
|
|
|
'initialize': false
|
|
|
|
};
|
|
|
|
|
2013-10-28 17:09:22 +00:00
|
|
|
$('#couldnotbuildModal').on('hidden.bs.modal', function() {
|
|
|
|
$scope.$apply(function() {
|
|
|
|
$location.path('/repository/' + $scope.created.namespace + '/' + $scope.created.name);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2013-10-26 21:20:59 +00:00
|
|
|
var startBuild = function(repo, fileId) {
|
|
|
|
$scope.building = true;
|
|
|
|
|
|
|
|
var data = {
|
|
|
|
'file_id': fileId
|
|
|
|
};
|
|
|
|
|
|
|
|
var startBuildCall = Restangular.one('repository/' + repo.namespace + '/' + repo.name + '/build/');
|
|
|
|
startBuildCall.customPOST(data).then(function(resp) {
|
|
|
|
$location.path('/repository/' + repo.namespace + '/' + repo.name);
|
|
|
|
}, function() {
|
|
|
|
$('#couldnotbuildModal').modal();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
var conductUpload = function(repo, file, url, fileId, mimeType) {
|
|
|
|
var request = new XMLHttpRequest();
|
|
|
|
request.open('PUT', url, true);
|
2013-10-26 22:37:53 +00:00
|
|
|
request.setRequestHeader('Content-Type', mimeType);
|
2013-10-26 21:20:59 +00:00
|
|
|
request.onprogress = function(e) {
|
2013-10-28 17:09:22 +00:00
|
|
|
$scope.$apply(function() {
|
2013-10-26 22:37:53 +00:00
|
|
|
var percentLoaded;
|
|
|
|
if (e.lengthComputable) {
|
|
|
|
$scope.upload_progress = (e.loaded / e.total) * 100;
|
|
|
|
}
|
|
|
|
});
|
2013-10-26 21:20:59 +00:00
|
|
|
};
|
|
|
|
request.onerror = function() {
|
2013-10-28 17:09:22 +00:00
|
|
|
$scope.$apply(function() {
|
2013-10-26 22:37:53 +00:00
|
|
|
$('#couldnotbuildModal').modal();
|
|
|
|
});
|
2013-10-26 21:20:59 +00:00
|
|
|
};
|
|
|
|
request.onreadystatechange = function() {
|
|
|
|
var state = request.readyState;
|
|
|
|
if (state == 4) {
|
|
|
|
$scope.$apply(function() {
|
|
|
|
$scope.uploading = false;
|
|
|
|
startBuild(repo, fileId);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
request.send(file);
|
|
|
|
};
|
|
|
|
|
|
|
|
var startFileUpload = function(repo) {
|
|
|
|
$scope.uploading = true;
|
|
|
|
$scope.uploading_progress = 0;
|
|
|
|
|
|
|
|
var uploader = $('#file-drop')[0];
|
|
|
|
var file = uploader.files[0];
|
|
|
|
$scope.upload_file = file.name;
|
|
|
|
|
|
|
|
var mimeType = file.type || 'application/octet-stream';
|
|
|
|
var data = {
|
|
|
|
'mimeType': mimeType
|
|
|
|
};
|
2013-10-17 21:45:08 +00:00
|
|
|
|
2013-10-26 21:20:59 +00:00
|
|
|
var getUploadUrl = Restangular.one('filedrop/');
|
|
|
|
getUploadUrl.customPOST(data).then(function(resp) {
|
|
|
|
conductUpload(repo, file, resp.url, resp.file_id, mimeType);
|
|
|
|
}, function() {
|
|
|
|
$('#couldnotbuildModal').modal();
|
|
|
|
});
|
2013-10-17 21:45:08 +00:00
|
|
|
};
|
2013-10-26 21:20:59 +00:00
|
|
|
|
2013-10-28 21:08:26 +00:00
|
|
|
var subscribedToPlan = function(sub) {
|
|
|
|
$scope.planChanging = false;
|
|
|
|
$scope.subscription = sub;
|
2013-11-01 23:13:58 +00:00
|
|
|
|
|
|
|
PlanService.getPlan(sub.plan, function(subscribedPlan) {
|
|
|
|
$scope.subscribedPlan = subscribedPlan;
|
|
|
|
$scope.planRequired = null;
|
|
|
|
|
|
|
|
// Check to see if the current plan allows for an additional private repository to
|
|
|
|
// be created.
|
|
|
|
var privateAllowed = $scope.subscription.usedPrivateRepos < $scope.subscribedPlan.privateRepos;
|
|
|
|
if (!privateAllowed) {
|
|
|
|
// If not, find the minimum repository that does.
|
2013-11-05 19:47:48 +00:00
|
|
|
PlanService.getMinimumPlan($scope.subscription.usedPrivateRepos + 1, !$scope.isUserNamespace, function(minimum) {
|
2013-11-01 23:13:58 +00:00
|
|
|
$scope.planRequired = minimum;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2013-10-28 21:08:26 +00:00
|
|
|
};
|
|
|
|
|
2013-10-26 20:03:11 +00:00
|
|
|
$scope.createNewRepo = function() {
|
2013-10-31 19:04:07 +00:00
|
|
|
$('#repoName').popover('hide');
|
|
|
|
|
2013-10-26 21:20:59 +00:00
|
|
|
var uploader = $('#file-drop')[0];
|
|
|
|
if ($scope.repo.initialize && uploader.files.length < 1) {
|
|
|
|
$('#missingfileModal').modal();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-26 20:03:11 +00:00
|
|
|
$scope.creating = true;
|
|
|
|
var repo = $scope.repo;
|
|
|
|
var data = {
|
2013-11-01 21:35:26 +00:00
|
|
|
'namespace': repo.namespace,
|
2013-10-26 20:03:11 +00:00
|
|
|
'repository': repo.name,
|
2013-10-30 00:21:18 +00:00
|
|
|
'visibility': repo.is_public == '1' ? 'public' : 'private',
|
|
|
|
'description': repo.description
|
2013-10-26 20:03:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
var createPost = Restangular.one('repository');
|
|
|
|
createPost.customPOST(data).then(function(created) {
|
2013-10-26 21:20:59 +00:00
|
|
|
$scope.creating = false;
|
2013-10-28 17:09:22 +00:00
|
|
|
$scope.created = created;
|
2013-10-26 21:20:59 +00:00
|
|
|
|
2013-10-26 20:03:11 +00:00
|
|
|
// Repository created. Start the upload process if applicable.
|
2013-10-26 21:20:59 +00:00
|
|
|
if ($scope.repo.initialize) {
|
|
|
|
startFileUpload(created);
|
|
|
|
return;
|
|
|
|
}
|
2013-10-26 20:03:11 +00:00
|
|
|
|
|
|
|
// Otherwise, redirect to the repo page.
|
|
|
|
$location.path('/repository/' + created.namespace + '/' + created.name);
|
2013-10-31 19:04:07 +00:00
|
|
|
}, function(result) {
|
2013-10-26 20:03:11 +00:00
|
|
|
$scope.creating = false;
|
2013-10-31 19:04:07 +00:00
|
|
|
$scope.createError = result.data;
|
|
|
|
$timeout(function() {
|
|
|
|
$('#repoName').popover('show');
|
|
|
|
});
|
2013-10-26 20:03:11 +00:00
|
|
|
});
|
|
|
|
};
|
2013-10-28 21:08:26 +00:00
|
|
|
|
|
|
|
$scope.upgradePlan = function() {
|
2013-11-09 01:32:56 +00:00
|
|
|
var callbacks = {
|
2013-11-19 00:03:35 +00:00
|
|
|
'started': function() { $scope.planChanging = true; },
|
2013-11-09 01:32:56 +00:00
|
|
|
'opened': function() { $scope.planChanging = true; },
|
|
|
|
'closed': function() { $scope.planChanging = false; },
|
|
|
|
'success': subscribedToPlan,
|
2013-11-19 22:06:17 +00:00
|
|
|
'failure': function(resp) {
|
|
|
|
$('#couldnotsubscribeModal').modal();
|
|
|
|
$scope.planChanging = false;
|
|
|
|
}
|
2013-11-09 01:32:56 +00:00
|
|
|
};
|
|
|
|
|
2013-11-19 00:03:35 +00:00
|
|
|
PlanService.changePlan($scope, null, $scope.planRequired.stripeId, callbacks);
|
2013-10-28 21:08:26 +00:00
|
|
|
};
|
2013-11-01 23:13:58 +00:00
|
|
|
|
|
|
|
// Watch the namespace on the repo. If it changes, we update the plan and the public/private
|
|
|
|
// accordingly.
|
2013-11-05 19:47:48 +00:00
|
|
|
$scope.isUserNamespace = true;
|
2013-11-01 23:13:58 +00:00
|
|
|
$scope.$watch('repo.namespace', function(namespace) {
|
|
|
|
// Note: Can initially be undefined.
|
|
|
|
if (!namespace) { return; }
|
|
|
|
|
|
|
|
var isUserNamespace = (namespace == $scope.user.username);
|
2013-10-28 21:08:26 +00:00
|
|
|
|
2013-11-01 23:13:58 +00:00
|
|
|
$scope.planRequired = null;
|
|
|
|
$scope.isUserNamespace = isUserNamespace;
|
2013-10-28 21:08:26 +00:00
|
|
|
|
2013-11-01 23:13:58 +00:00
|
|
|
if (isUserNamespace) {
|
|
|
|
// Load the user's subscription information in case they want to create a private
|
|
|
|
// repository.
|
2013-11-08 22:50:42 +00:00
|
|
|
PlanService.getSubscription(null, subscribedToPlan, function() {
|
2013-11-05 19:47:48 +00:00
|
|
|
PlanService.getMinimumPlan(1, false, function(minimum) { $scope.planRequired = minimum; });
|
2013-11-01 23:13:58 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$scope.planRequired = null;
|
|
|
|
|
|
|
|
var checkPrivateAllowed = Restangular.one('organization/' + namespace + '/private');
|
|
|
|
checkPrivateAllowed.get().then(function(resp) {
|
|
|
|
$scope.planRequired = resp.privateAllowed ? null : {};
|
|
|
|
}, function() {
|
|
|
|
$scope.planRequired = {};
|
|
|
|
});
|
|
|
|
|
|
|
|
// Auto-set to private repo.
|
|
|
|
$scope.repo.is_public = '0';
|
|
|
|
}
|
2013-10-28 21:08:26 +00:00
|
|
|
});
|
2013-10-31 22:17:26 +00:00
|
|
|
}
|
|
|
|
|
2013-11-05 03:58:21 +00:00
|
|
|
function OrgViewCtrl($rootScope, $scope, Restangular, $routeParams) {
|
|
|
|
$('.info-icon').popover({
|
|
|
|
'trigger': 'hover',
|
|
|
|
'html': true
|
|
|
|
});
|
|
|
|
|
|
|
|
$rootScope.title = 'Loading...';
|
|
|
|
|
2013-10-31 22:17:26 +00:00
|
|
|
var orgname = $routeParams.orgname;
|
2013-11-04 21:21:49 +00:00
|
|
|
|
|
|
|
var loadOrganization = function() {
|
|
|
|
var getOrganization = Restangular.one(getRestUrl('organization', orgname));
|
|
|
|
getOrganization.get().then(function(resp) {
|
|
|
|
$scope.organization = resp;
|
|
|
|
$scope.loading = false;
|
2013-11-05 03:58:21 +00:00
|
|
|
|
|
|
|
$rootScope.title = orgname;
|
2013-11-19 00:03:35 +00:00
|
|
|
$rootScope.description = 'Viewing organization ' + orgname;
|
2013-11-04 21:21:49 +00:00
|
|
|
}, function() {
|
|
|
|
$scope.loading = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-11-05 19:47:46 +00:00
|
|
|
$scope.teamRoles = [
|
|
|
|
{ 'id': 'member', 'title': 'Member', 'kind': 'default' },
|
|
|
|
{ 'id': 'creator', 'title': 'Creator', 'kind': 'success' },
|
|
|
|
{ 'id': 'admin', 'title': 'Admin', 'kind': 'primary' }
|
|
|
|
];
|
|
|
|
|
2013-11-08 04:35:27 +00:00
|
|
|
$scope.setRole = function(role, teamname) {
|
|
|
|
var previousRole = $scope.organization.teams[teamname].role;
|
2013-11-05 03:58:21 +00:00
|
|
|
$scope.organization.teams[teamname].role = role;
|
|
|
|
|
|
|
|
var updateTeam = Restangular.one(getRestUrl('organization', orgname, 'team', teamname));
|
|
|
|
var data = $scope.organization.teams[teamname];
|
2013-11-08 04:35:27 +00:00
|
|
|
|
2013-11-05 03:58:21 +00:00
|
|
|
updateTeam.customPUT(data).then(function(resp) {
|
2013-11-08 04:35:27 +00:00
|
|
|
}, function(resp) {
|
|
|
|
$scope.organization.teams[teamname].role = previousRole;
|
|
|
|
$scope.roleError = resp.data || '';
|
2013-11-05 03:58:21 +00:00
|
|
|
$('#cannotChangeTeamModal').modal({});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-11-23 01:14:44 +00:00
|
|
|
$scope.createTeam = function(teamname) {
|
2013-11-05 22:20:43 +00:00
|
|
|
if (!teamname) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($scope.organization.teams[teamname]) {
|
|
|
|
$('#team-' + teamname).removeClass('highlight');
|
|
|
|
setTimeout(function() {
|
|
|
|
$('#team-' + teamname).addClass('highlight');
|
|
|
|
}, 10);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var createTeam = Restangular.one(getRestUrl('organization', orgname, 'team', teamname));
|
|
|
|
var data = {
|
|
|
|
'name': teamname,
|
|
|
|
'role': 'member'
|
|
|
|
};
|
|
|
|
createTeam.customPOST(data).then(function(resp) {
|
|
|
|
$scope.organization.teams[teamname] = resp;
|
|
|
|
}, function() {
|
|
|
|
$('#cannotChangeTeamModal').modal({});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-11-05 19:47:46 +00:00
|
|
|
$scope.askDeleteTeam = function(teamname) {
|
|
|
|
$scope.currentDeleteTeam = teamname;
|
|
|
|
$('#confirmdeleteModal').modal({});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.deleteTeam = function() {
|
|
|
|
$('#confirmdeleteModal').modal('hide');
|
|
|
|
if (!$scope.currentDeleteTeam) { return; }
|
|
|
|
|
|
|
|
var teamname = $scope.currentDeleteTeam;
|
|
|
|
var deleteAction = Restangular.one(getRestUrl('organization', orgname, 'team', teamname));
|
|
|
|
deleteAction.customDELETE().then(function() {
|
|
|
|
delete $scope.organization.teams[teamname];
|
|
|
|
$scope.currentDeleteTeam = null;
|
|
|
|
}, function() {
|
|
|
|
$('#cannotchangeModal').modal({});
|
|
|
|
$scope.currentDeleteTeam = null;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-11-04 21:21:49 +00:00
|
|
|
loadOrganization();
|
2013-10-31 22:17:26 +00:00
|
|
|
}
|
|
|
|
|
2013-11-05 23:39:27 +00:00
|
|
|
function OrgAdminCtrl($rootScope, $scope, Restangular, $routeParams, UserService, PlanService) {
|
|
|
|
// Load the list of plans.
|
|
|
|
PlanService.getPlans(function(plans) {
|
|
|
|
$scope.plans = plans.business;
|
2013-11-13 22:47:45 +00:00
|
|
|
$scope.plan_map = {};
|
2013-11-13 23:00:51 +00:00
|
|
|
|
|
|
|
var addPlans = function(plans) {
|
|
|
|
for (var i = 0; i < plans.length; ++i) {
|
|
|
|
$scope.plan_map[plans[i].stripeId] = plans[i];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
addPlans(plans.user);
|
|
|
|
addPlans(plans.business);
|
2013-11-05 23:39:27 +00:00
|
|
|
});
|
|
|
|
|
2013-10-31 22:17:26 +00:00
|
|
|
var orgname = $routeParams.orgname;
|
2013-11-07 00:06:59 +00:00
|
|
|
|
2013-11-06 22:59:16 +00:00
|
|
|
$scope.orgname = orgname;
|
2013-11-07 00:06:59 +00:00
|
|
|
$scope.membersLoading = true;
|
|
|
|
$scope.membersFound = null;
|
2013-11-13 22:47:45 +00:00
|
|
|
$scope.invoiceLoading = true;
|
2013-11-27 21:56:07 +00:00
|
|
|
$scope.logsShown = 0;
|
2013-11-13 22:47:45 +00:00
|
|
|
|
2013-11-27 07:29:31 +00:00
|
|
|
$scope.loadLogs = function() {
|
2013-11-27 21:56:07 +00:00
|
|
|
$scope.logsShown++;
|
2013-11-27 07:29:31 +00:00
|
|
|
};
|
|
|
|
|
2013-11-15 23:17:12 +00:00
|
|
|
$scope.planChanged = function(plan) {
|
|
|
|
$scope.hasPaidPlan = plan && plan.price > 0;
|
|
|
|
};
|
|
|
|
|
2013-11-13 22:47:45 +00:00
|
|
|
$scope.loadInvoices = function() {
|
|
|
|
if ($scope.invoices) { return; }
|
|
|
|
$scope.invoiceLoading = true;
|
|
|
|
|
|
|
|
var getInvoices = Restangular.one(getRestUrl('organization', orgname, 'invoices'));
|
|
|
|
getInvoices.get().then(function(resp) {
|
|
|
|
$scope.invoiceExpanded = {};
|
|
|
|
$scope.invoices = resp.invoices;
|
|
|
|
$scope.invoiceLoading = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.toggleInvoice = function(id) {
|
|
|
|
$scope.invoiceExpanded[id] = !$scope.invoiceExpanded[id];
|
|
|
|
};
|
2013-11-07 00:06:59 +00:00
|
|
|
|
|
|
|
$scope.loadMembers = function() {
|
|
|
|
if ($scope.membersFound) { return; }
|
|
|
|
$scope.membersLoading = true;
|
|
|
|
|
|
|
|
var getMembers = Restangular.one(getRestUrl('organization', orgname, 'members'));
|
|
|
|
getMembers.get().then(function(resp) {
|
|
|
|
var membersArray = [];
|
|
|
|
for (var key in resp.members) {
|
|
|
|
if (resp.members.hasOwnProperty(key)) {
|
|
|
|
membersArray.push(resp.members[key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$scope.membersFound = membersArray;
|
|
|
|
$scope.membersLoading = false;
|
|
|
|
});
|
|
|
|
};
|
2013-11-05 23:39:27 +00:00
|
|
|
|
|
|
|
var loadOrganization = function() {
|
|
|
|
var getOrganization = Restangular.one(getRestUrl('organization', orgname));
|
|
|
|
getOrganization.get().then(function(resp) {
|
|
|
|
if (resp && resp.is_admin) {
|
|
|
|
$scope.organization = resp;
|
|
|
|
$rootScope.title = orgname + ' (Admin)';
|
2013-11-19 00:03:35 +00:00
|
|
|
$rootScope.description = 'Administration page for organization ' + orgname;
|
2013-11-05 23:39:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$scope.loading = false;
|
|
|
|
}, function() {
|
|
|
|
$scope.loading = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
loadOrganization();
|
2013-10-31 22:17:26 +00:00
|
|
|
}
|
|
|
|
|
2013-11-04 19:56:54 +00:00
|
|
|
function TeamViewCtrl($rootScope, $scope, Restangular, $routeParams) {
|
|
|
|
$('.info-icon').popover({
|
|
|
|
'trigger': 'hover',
|
|
|
|
'html': true
|
|
|
|
});
|
|
|
|
|
2013-11-20 23:23:59 +00:00
|
|
|
$scope.orgname = $routeParams.orgname;
|
2013-10-31 22:17:26 +00:00
|
|
|
var teamname = $routeParams.teamname;
|
2013-11-04 19:56:54 +00:00
|
|
|
|
|
|
|
$rootScope.title = 'Loading...';
|
|
|
|
$scope.loading = true;
|
|
|
|
$scope.teamname = teamname;
|
|
|
|
|
2013-11-04 20:31:38 +00:00
|
|
|
$scope.addNewMember = function(member) {
|
|
|
|
if ($scope.members[member.name]) { return; }
|
|
|
|
|
|
|
|
$scope.$apply(function() {
|
2013-11-20 23:23:59 +00:00
|
|
|
var addMember = Restangular.one(getRestUrl('organization', $scope.orgname, 'team', teamname, 'members', member.name));
|
2013-11-04 20:31:38 +00:00
|
|
|
addMember.customPOST().then(function(resp) {
|
|
|
|
$scope.members[member.name] = resp;
|
|
|
|
}, function() {
|
|
|
|
$('#cannotChangeMembersModal').modal({});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.removeMember = function(username) {
|
2013-11-20 23:23:59 +00:00
|
|
|
var removeMember = Restangular.one(getRestUrl('organization', $scope.orgname, 'team', teamname, 'members', username));
|
2013-11-04 20:31:38 +00:00
|
|
|
removeMember.customDELETE().then(function(resp) {
|
|
|
|
delete $scope.members[username];
|
|
|
|
}, function() {
|
|
|
|
$('#cannotChangeMembersModal').modal({});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-11-05 01:17:58 +00:00
|
|
|
$scope.updateForDescription = function(content) {
|
|
|
|
$scope.organization.teams[teamname].description = content;
|
|
|
|
|
2013-11-20 23:23:59 +00:00
|
|
|
var updateTeam = Restangular.one(getRestUrl('organization', $scope.orgname, 'team', teamname));
|
2013-11-05 01:17:58 +00:00
|
|
|
var data = $scope.organization.teams[teamname];
|
|
|
|
updateTeam.customPUT(data).then(function(resp) {
|
|
|
|
}, function() {
|
|
|
|
$('#cannotChangeTeamModal').modal({});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-11-04 19:56:54 +00:00
|
|
|
var loadOrganization = function() {
|
2013-11-20 23:23:59 +00:00
|
|
|
var getOrganization = Restangular.one(getRestUrl('organization', $scope.orgname))
|
2013-11-04 19:56:54 +00:00
|
|
|
getOrganization.get().then(function(resp) {
|
|
|
|
$scope.organization = resp;
|
2013-11-05 01:17:58 +00:00
|
|
|
$scope.team = $scope.organization.teams[teamname];
|
2013-11-04 19:56:54 +00:00
|
|
|
$scope.loading = !$scope.organization || !$scope.members;
|
|
|
|
}, function() {
|
2013-11-04 21:51:25 +00:00
|
|
|
$scope.organization = null;
|
|
|
|
$scope.members = null;
|
2013-11-04 19:56:54 +00:00
|
|
|
$scope.loading = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
var loadMembers = function() {
|
2013-11-20 23:23:59 +00:00
|
|
|
var getMembers = Restangular.one(getRestUrl('organization', $scope.orgname, 'team', teamname, 'members'));
|
2013-11-04 19:56:54 +00:00
|
|
|
getMembers.get().then(function(resp) {
|
|
|
|
$scope.members = resp.members;
|
2013-11-04 21:21:49 +00:00
|
|
|
$scope.canEditMembers = resp.can_edit;
|
2013-11-04 19:56:54 +00:00
|
|
|
$scope.loading = !$scope.organization || !$scope.members;
|
2013-11-20 23:23:59 +00:00
|
|
|
$rootScope.title = teamname + ' (' + $scope.orgname + ')';
|
2013-12-03 22:44:51 +00:00
|
|
|
$rootScope.description = 'Team management page for team ' + teamname + ' under organization ' + $scope.orgname;
|
2013-11-04 19:56:54 +00:00
|
|
|
}, function() {
|
2013-11-04 21:51:25 +00:00
|
|
|
$scope.organization = null;
|
|
|
|
$scope.members = null;
|
2013-11-04 19:56:54 +00:00
|
|
|
$scope.loading = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
loadOrganization();
|
|
|
|
loadMembers();
|
2013-11-07 06:48:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function OrgsCtrl($scope, UserService) {
|
|
|
|
$scope.loading = true;
|
|
|
|
|
|
|
|
$scope.$watch( function () { return UserService.currentUser(); }, function (currentUser) {
|
|
|
|
$scope.user = currentUser;
|
|
|
|
$scope.loading = false;
|
|
|
|
}, true);
|
|
|
|
|
|
|
|
browserchrome.update();
|
|
|
|
}
|
|
|
|
|
2013-11-07 20:33:56 +00:00
|
|
|
function NewOrgCtrl($scope, $routeParams, $timeout, $location, UserService, PlanService, Restangular) {
|
2013-11-07 20:19:52 +00:00
|
|
|
$scope.loading = true;
|
2013-11-07 06:48:58 +00:00
|
|
|
|
2013-11-07 20:19:52 +00:00
|
|
|
$scope.$watch( function () { return UserService.currentUser(); }, function (currentUser) {
|
|
|
|
$scope.user = currentUser;
|
|
|
|
$scope.loading = false;
|
|
|
|
}, true);
|
|
|
|
|
2013-12-07 00:25:27 +00:00
|
|
|
requested = $routeParams['plan'];
|
2013-11-07 20:33:56 +00:00
|
|
|
|
2013-11-07 20:19:52 +00:00
|
|
|
// Load the list of plans.
|
|
|
|
PlanService.getPlans(function(plans) {
|
|
|
|
$scope.plans = plans.business;
|
|
|
|
$scope.currentPlan = null;
|
2013-11-07 20:33:56 +00:00
|
|
|
if (requested) {
|
|
|
|
PlanService.getPlan(requested, function(plan) {
|
|
|
|
$scope.currentPlan = plan;
|
|
|
|
});
|
|
|
|
}
|
2013-11-07 20:19:52 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$scope.setPlan = function(plan) {
|
|
|
|
$scope.currentPlan = plan;
|
|
|
|
};
|
|
|
|
|
|
|
|
$scope.createNewOrg = function() {
|
|
|
|
$('#orgName').popover('hide');
|
|
|
|
|
|
|
|
$scope.creating = true;
|
|
|
|
var org = $scope.org;
|
|
|
|
var data = {
|
|
|
|
'name': org.name,
|
|
|
|
'email': org.email
|
|
|
|
};
|
|
|
|
|
|
|
|
var createPost = Restangular.one('organization/');
|
|
|
|
createPost.customPOST(data).then(function(created) {
|
|
|
|
$scope.creating = false;
|
|
|
|
$scope.created = created;
|
|
|
|
|
|
|
|
// Reset the organizations list.
|
|
|
|
UserService.load();
|
|
|
|
|
2013-11-09 01:32:56 +00:00
|
|
|
var showOrg = function() {
|
|
|
|
$location.path('/organization/' + org.name + '/');
|
|
|
|
};
|
|
|
|
|
2013-11-07 20:19:52 +00:00
|
|
|
// If the selected plan is free, simply move to the org page.
|
|
|
|
if ($scope.currentPlan.price == 0) {
|
2013-11-09 01:32:56 +00:00
|
|
|
showOrg();
|
2013-11-07 20:19:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, show the subscribe for the plan.
|
2013-11-09 01:32:56 +00:00
|
|
|
var callbacks = {
|
|
|
|
'opened': function() { $scope.creating = true; },
|
|
|
|
'closed': showOrg,
|
|
|
|
'success': showOrg,
|
|
|
|
'failure': showOrg
|
|
|
|
};
|
|
|
|
|
|
|
|
PlanService.changePlan($scope, org.name, $scope.currentPlan.stripeId, false, callbacks);
|
2013-11-07 20:19:52 +00:00
|
|
|
}, function(result) {
|
|
|
|
$scope.creating = false;
|
|
|
|
$scope.createError = result.data.message || result.data;
|
|
|
|
$timeout(function() {
|
|
|
|
$('#orgName').popover('show');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
2013-12-07 00:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-07 00:30:55 +00:00
|
|
|
function OrgMemberLogsCtrl($scope, $routeParams, $rootScope, $timeout, Restangular) {
|
2013-12-07 00:25:27 +00:00
|
|
|
var orgname = $routeParams.orgname;
|
|
|
|
var membername = $routeParams.membername;
|
|
|
|
|
|
|
|
$scope.orgname = orgname;
|
|
|
|
$scope.loading = true;
|
|
|
|
$scope.memberInfo = null;
|
|
|
|
$scope.ready = false;
|
|
|
|
|
|
|
|
var checkReady = function() {
|
|
|
|
$scope.loading = !$scope.organization || !$scope.memberInfo;
|
|
|
|
if (!$scope.loading) {
|
2013-12-07 00:30:55 +00:00
|
|
|
$rootScope.title = 'Logs for ' + $scope.memberInfo.username + ' (' + $scope.orgname + ')';
|
|
|
|
$rootScope.description = 'Shows all the actions of ' + $scope.memberInfo.username +
|
|
|
|
' under organization ' + $scope.orgname;
|
2013-12-07 00:25:27 +00:00
|
|
|
$timeout(function() {
|
|
|
|
$scope.ready = true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var loadOrganization = function() {
|
|
|
|
var getOrganization = Restangular.one(getRestUrl('organization', orgname))
|
|
|
|
getOrganization.get().then(function(resp) {
|
|
|
|
$scope.organization = resp;
|
|
|
|
checkReady();
|
|
|
|
}, function() {
|
|
|
|
$scope.organization = null;
|
|
|
|
$scope.loading = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
var loadMemberInfo = function() {
|
|
|
|
var getMemberInfo = Restangular.one(getRestUrl('organization', orgname, 'members', membername))
|
|
|
|
getMemberInfo.get().then(function(resp) {
|
|
|
|
$scope.memberInfo = resp.member;
|
|
|
|
checkReady();
|
|
|
|
}, function() {
|
|
|
|
$scope.memberInfo = null;
|
|
|
|
$scope.loading = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
loadOrganization();
|
|
|
|
loadMemberInfo();
|
2013-09-27 00:34:58 +00:00
|
|
|
}
|