mirror of
https://github.com/ansible/awx.git
synced 2026-01-15 20:00:43 -03:30
707 lines
28 KiB
JavaScript
707 lines
28 KiB
JavaScript
/************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
*
|
|
* Projects.js
|
|
*
|
|
* Controller functions for the Projects model.
|
|
*
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
function ProjectsList ($scope, $rootScope, $location, $log, $routeParams, Rest, Alert, ProjectList,
|
|
GenerateList, LoadBreadCrumbs, Prompt, SearchInit, PaginateInit, ReturnToCaller,
|
|
ClearScope, ProcessErrors, GetBasePath, SelectionInit, ProjectUpdate, ProjectStatus,
|
|
FormatDate, Refresh, Wait, Stream, GetChoices)
|
|
{
|
|
ClearScope('htmlTemplate');
|
|
|
|
Wait('start');
|
|
|
|
var list = ProjectList;
|
|
var defaultUrl = GetBasePath('projects');
|
|
var view = GenerateList;
|
|
var base = $location.path().replace(/^\//,'').split('/')[0];
|
|
var mode = (base == 'projects') ? 'edit' : 'select';
|
|
var scope = view.inject(list, { mode: mode });
|
|
|
|
$rootScope.flashMessage = null;
|
|
scope.projectLoading = true;
|
|
|
|
var url = (base == 'teams') ? GetBasePath('teams') + $routeParams.team_id + '/projects/' : defaultUrl;
|
|
|
|
if (mode == 'select') {
|
|
SelectionInit({ scope: scope, list: list, url: url, returnToCaller: 1 });
|
|
}
|
|
|
|
if (scope.removePostRefresh) {
|
|
scope.removePostRefresh();
|
|
}
|
|
scope.removePostRefresh = scope.$on('PostRefresh', function() {
|
|
// Cleanup after a delete
|
|
Wait('stop');
|
|
$('#prompt-modal').off();
|
|
|
|
if (scope.projects) {
|
|
for (var i=0; i < scope.projects.length; i++) {
|
|
if (scope.projects[i].status == 'ok') {
|
|
scope.projects[i].status = 'n/a';
|
|
}
|
|
switch(scope.projects[i].status) {
|
|
case 'n/a':
|
|
scope.projects[i].badge = 'none';
|
|
break;
|
|
case 'updating':
|
|
case 'successful':
|
|
case 'ok':
|
|
scope.projects[i].badge = 'false';
|
|
break;
|
|
case 'never updated':
|
|
case 'failed':
|
|
case 'missing':
|
|
scope.projects[i].badge = 'true';
|
|
break;
|
|
}
|
|
scope.projects[i].last_updated = (scope.projects[i].last_updated !== null) ?
|
|
FormatDate(new Date(scope.projects[i].last_updated)) : null;
|
|
|
|
for (var j=0; j < scope.project_scm_type_options.length; j++) {
|
|
if (scope.project_scm_type_options[j].value == scope.projects[i].scm_type) {
|
|
scope.projects[i].scm_type = scope.project_scm_type_options[j].label
|
|
if (scope.projects[i].scm_type == 'Manual') {
|
|
scope.projects[i].scm_update_tooltip = 'Manaul projects do not require an SCM update';
|
|
scope.projects[i].scm_type_class = 'btn-disabled';
|
|
}
|
|
else {
|
|
scope.projects[i].scm_update_tooltip = "Start an SCM update";
|
|
scope.projects[i].scm_type_class = "";
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
if (scope.removeChoicesHere) {
|
|
scope.removeChoicesHere();
|
|
}
|
|
scope.removeChoicesHere = scope.$on('choicesCompleteProject', function() {
|
|
|
|
list.fields.scm_type.searchOptions = scope.project_scm_type_options;
|
|
list.fields.status.searchOptions = scope.project_status_options;
|
|
|
|
if ($routeParams['scm_type'] && $routeParams['status']) {
|
|
// Request coming from home page. User wants all errors for an scm_type
|
|
defaultUrl += '?status=' + $routeParams['status'];
|
|
}
|
|
|
|
SearchInit({ scope: scope, set: 'projects', list: list, url: defaultUrl });
|
|
PaginateInit({ scope: scope, list: list, url: defaultUrl });
|
|
|
|
if ($routeParams['scm_type']) {
|
|
scope[list.iterator + 'SearchField'] = 'scm_type';
|
|
scope[list.iterator + 'SelectShow'] = true;
|
|
scope[list.iterator + 'SearchSelectOpts'] = list.fields['scm_type'].searchOptions;
|
|
scope[list.iterator + 'SearchFieldLabel'] = list.fields['scm_type'].label.replace(/\<br\>/g,' ');
|
|
for (var opt in list.fields['scm_type'].searchOptions) {
|
|
if (list.fields['scm_type'].searchOptions[opt].value == $routeParams['scm_type']) {
|
|
scope[list.iterator + 'SearchSelectValue'] = list.fields['scm_type'].searchOptions[opt];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else if ($routeParams['status']) {
|
|
scope[list.iterator + 'SearchValue'] = $routeParams['status'];
|
|
scope[list.iterator + 'SearchField'] = 'status';
|
|
scope[list.iterator + 'SelectShow'] = true;
|
|
scope[list.iterator + 'SearchFieldLabel'] = list.fields['status'].label;
|
|
scope[list.iterator + 'SearchSelectOpts'] = list.fields['status'].searchOptions;
|
|
for (var opt in list.fields['status'].searchOptions) {
|
|
if (list.fields['status'].searchOptions[opt].value == $routeParams['status']) {
|
|
scope[list.iterator + 'SearchSelectValue'] = list.fields['status'].searchOptions[opt];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
scope.search(list.iterator);
|
|
});
|
|
|
|
var choiceCount = 0;
|
|
|
|
if (scope.removeChoicesReady) {
|
|
scope.removeChoicesReady();
|
|
}
|
|
scope.removeChoicesReady = scope.$on('choicesReadyProject', function() {
|
|
choiceCount++;
|
|
if (choiceCount == 2) {
|
|
scope.$emit('choicesCompleteProject');
|
|
}
|
|
});
|
|
|
|
// Load options for status --used in search
|
|
GetChoices({
|
|
scope: scope,
|
|
url: defaultUrl,
|
|
field: 'status',
|
|
variable: 'project_status_options',
|
|
callback: 'choicesReadyProject'
|
|
});
|
|
|
|
// Load the list of options for Kind
|
|
GetChoices({
|
|
scope: scope,
|
|
url: defaultUrl,
|
|
field: 'scm_type',
|
|
variable: 'project_scm_type_options',
|
|
callback: 'choicesReadyProject'
|
|
});
|
|
|
|
LoadBreadCrumbs();
|
|
|
|
scope.showActivity = function() { Stream({ scope: scope }); }
|
|
|
|
scope.addProject = function() {
|
|
$location.path($location.path() + '/add');
|
|
}
|
|
|
|
scope.editProject = function(id) {
|
|
$location.path($location.path() + '/' + id);
|
|
}
|
|
|
|
scope.showSCMStatus = function(id) {
|
|
// Refresh the project list
|
|
var statusCheckRemove = scope.$on('PostRefresh', function() {
|
|
var project;
|
|
for (var i=0; i < scope.projects.length; i++) {
|
|
if (scope.projects[i].id == id) {
|
|
project = scope.projects[i];
|
|
break;
|
|
}
|
|
}
|
|
if (project.scm_type !== null) {
|
|
if (project.related.current_update) {
|
|
Wait('start');
|
|
ProjectStatus({ project_id: id, last_update: project.related.current_update });
|
|
}
|
|
else if (project.related.last_update) {
|
|
Wait('start');
|
|
ProjectStatus({ project_id: id, last_update: project.related.last_update });
|
|
}
|
|
else {
|
|
Alert('No Updates Available', 'There is no SCM update information available for this project. An update has not yet been ' +
|
|
' completed. If you have not already done so, start an update for this project.', 'alert-info');
|
|
}
|
|
}
|
|
else {
|
|
Alert('Missing SCM Configuration', 'The selected project is not configured for SCM. You must first edit the project, provide SCM settings, ' +
|
|
'and then run an update.', 'alert-info');
|
|
}
|
|
statusCheckRemove();
|
|
});
|
|
|
|
// Refresh the project list so we're looking at the latest data
|
|
scope.search(list.iterator, null, false, true);
|
|
}
|
|
|
|
scope.deleteProject = function(id, name) {
|
|
var action = function() {
|
|
$('#prompt-modal').on('hiden.bs.modal', function(){ Wait('start'); });
|
|
$('#prompt-modal').modal('hide');
|
|
var url = defaultUrl + id + '/';
|
|
Rest.setUrl(url);
|
|
Rest.destroy()
|
|
.success( function(data, status, headers, config) {
|
|
scope.search(list.iterator);
|
|
})
|
|
.error( function(data, status, headers, config) {
|
|
Wait('stop');
|
|
ProcessErrors(scope, data, status, null,
|
|
{ hdr: 'Error!', msg: 'Call to ' + url + ' failed. DELETE returned status: ' + status });
|
|
});
|
|
};
|
|
|
|
Prompt({ hdr: 'Delete',
|
|
body: 'Are you sure you want to delete ' + name + '?',
|
|
action: action
|
|
});
|
|
}
|
|
|
|
if (scope.removeCancelUpdate) {
|
|
scope.removeCancelUpdate();
|
|
}
|
|
scope.removeCancelUpdate = scope.$on('Cancel_Update', function(e, url) {
|
|
// Cancel the project update process
|
|
Rest.setUrl(url)
|
|
Rest.post()
|
|
.success( function(data, status, headers, config) {
|
|
Alert('SCM Update Cancel', 'Your request to cancel the update was submitted to the task maanger.', 'alert-info');
|
|
scope.refresh();
|
|
})
|
|
.error( function(data, status, headers, config) {
|
|
ProcessErrors(scope, data, status, null,
|
|
{ hdr: 'Error!', msg: 'Call to ' + url + ' failed. POST status: ' + status });
|
|
});
|
|
});
|
|
|
|
if (scope.removeCheckCancel) {
|
|
scope.removeCheckCancel();
|
|
}
|
|
scope.removeCheckCancel = scope.$on('Check_Cancel', function(e, data) {
|
|
// Check that we 'can' cancel the update
|
|
var url = data.related.cancel;
|
|
Rest.setUrl(url);
|
|
Rest.get()
|
|
.success( function(data, status, headers, config) {
|
|
if (data.can_cancel) {
|
|
scope.$emit('Cancel_Update', url);
|
|
}
|
|
else {
|
|
Alert('Cancel Not Allowed', 'Either you do not have access or the SCM update process completed. Click the <em>Refresh</em> button to' +
|
|
' view the latest status.', 'alert-info');
|
|
}
|
|
})
|
|
.error( function(data, status, headers, config) {
|
|
ProcessErrors(scope, data, status, null,
|
|
{ hdr: 'Error!', msg: 'Call to ' + url + ' failed. GET status: ' + status });
|
|
});
|
|
});
|
|
|
|
scope.cancelUpdate = function(id, name) {
|
|
// Start the cancel process
|
|
var project;
|
|
var found = false;
|
|
for (var i=0; i < scope.projects.length; i++) {
|
|
if (scope.projects[i].id == id) {
|
|
project = scope.projects[i];
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
if (found && project.related.current_update) {
|
|
Rest.setUrl(project.related.current_update);
|
|
Rest.get()
|
|
.success( function(data, status, headers, config) {
|
|
scope.$emit('Check_Cancel', data);
|
|
})
|
|
.error( function(data, status, headers, config) {
|
|
ProcessErrors(scope, data, status, null,
|
|
{ hdr: 'Error!', msg: 'Call to ' + project.related.current_update + ' failed. GET status: ' + status });
|
|
});
|
|
}
|
|
else {
|
|
Alert('Update Not Found', 'An SCM update does not appear to be running for project: ' + name + '. Click the <em>Refresh</em> ' +
|
|
'button to view the latet status.', 'alert-info');
|
|
}
|
|
}
|
|
|
|
scope.refresh = function() {
|
|
Wait('start');
|
|
scope['projectLoading'] = false;
|
|
Refresh({ scope: scope, set: 'projects', iterator: 'project', url: scope['current_url'] });
|
|
}
|
|
|
|
scope.SCMUpdate = function(project_id) {
|
|
for (var i=0; i < scope.projects.length; i++) {
|
|
if (scope.projects[i].id == project_id) {
|
|
if (scope.projects[i].scm_type == "Manual" || scope.projects[i].scm_type == "" || scope.projects[i].scm_type == null ) {
|
|
// Do not respond. Button appears greyed out as if it is disabled. Not disabled though, because we need mouse over event
|
|
// to work. So user can click, but we just won't do anything.
|
|
//Alert('Missing SCM Setup', 'Before running an SCM update, edit the project and provide the SCM access information.', 'alert-info');
|
|
break;
|
|
}
|
|
else if (scope.projects[i].status == 'updating') {
|
|
Alert('Update in Progress', 'The SCM update process is running. Use the Refresh button to monitor the status.', 'alert-info');
|
|
}
|
|
else {
|
|
ProjectUpdate({ scope: scope, project_id: project_id });
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
ProjectsList.$inject = [ '$scope', '$rootScope', '$location', '$log', '$routeParams', 'Rest', 'Alert', 'ProjectList', 'GenerateList',
|
|
'LoadBreadCrumbs', 'Prompt', 'SearchInit', 'PaginateInit', 'ReturnToCaller', 'ClearScope', 'ProcessErrors',
|
|
'GetBasePath', 'SelectionInit', 'ProjectUpdate', 'ProjectStatus', 'FormatDate', 'Refresh', 'Wait', 'Stream',
|
|
'GetChoices' ];
|
|
|
|
|
|
function ProjectsAdd ($scope, $rootScope, $compile, $location, $log, $routeParams, ProjectsForm,
|
|
GenerateForm, Rest, Alert, ProcessErrors, LoadBreadCrumbs, ClearScope,
|
|
GetBasePath, ReturnToCaller, GetProjectPath, LookUpInit, OrganizationList,
|
|
CredentialList, GetChoices, DebugForm, Wait)
|
|
{
|
|
ClearScope('tree-form');
|
|
ClearScope('htmlTemplate');
|
|
|
|
// Inject dynamic view
|
|
var form = ProjectsForm;
|
|
var generator = GenerateForm;
|
|
var base = $location.path().replace(/^\//,'').split('/')[0];
|
|
var defaultUrl = GetBasePath('projects');
|
|
var scope = generator.inject(form, {mode: 'add', related: false});
|
|
var id = $routeParams.id;
|
|
var master = {};
|
|
|
|
generator.reset();
|
|
LoadBreadCrumbs();
|
|
|
|
GetProjectPath({ scope: scope, master: master });
|
|
|
|
if (scope.removeChoicesReady) {
|
|
scope.removeChoicesReady();
|
|
}
|
|
scope.removeChoicesReady = scope.$on('choicesReady', function() {
|
|
for (var i=0; i < scope.scm_type_options.length; i++) {
|
|
if (scope.scm_type_options[i].value == '') {
|
|
scope['scm_type'] = scope.scm_type_options[i];
|
|
break;
|
|
}
|
|
}
|
|
scope.scmRequired = false;
|
|
master['scm_type'] = scope['scm_type'];
|
|
});
|
|
|
|
// Load the list of options for Kind
|
|
GetChoices({
|
|
scope: scope,
|
|
url: defaultUrl,
|
|
field: 'scm_type',
|
|
variable: 'scm_type_options',
|
|
callback: 'choicesReady'
|
|
});
|
|
|
|
LookUpInit({
|
|
scope: scope,
|
|
form: form,
|
|
list: OrganizationList,
|
|
field: 'organization'
|
|
});
|
|
|
|
LookUpInit({
|
|
scope: scope,
|
|
url: GetBasePath('credentials') + '?kind=scm',
|
|
form: form,
|
|
list: CredentialList,
|
|
field: 'credential'
|
|
});
|
|
|
|
// Save
|
|
scope.formSave = function() {
|
|
generator.clearApiErrors();
|
|
var data = {};
|
|
for (var fld in form.fields) {
|
|
if (form.fields[fld].type == 'checkbox_group') {
|
|
for (var i=0; i < form.fields[fld].fields.length; i++) {
|
|
data[form.fields[fld].fields[i].name] = scope[form.fields[fld].fields[i].name];
|
|
}
|
|
}
|
|
else {
|
|
if (form.fields[fld].type !== 'alertblock') {
|
|
data[fld] = scope[fld];
|
|
}
|
|
}
|
|
}
|
|
data.scm_type = scope.scm_type.value;
|
|
if (scope.scm_type.value !== '') {
|
|
delete data.local_path;
|
|
}
|
|
else {
|
|
data.local_path = scope.local_path.value;
|
|
}
|
|
|
|
var url = (base == 'teams') ? GetBasePath('teams') + $routeParams.team_id + '/projects/' : defaultUrl;
|
|
Wait('start');
|
|
Rest.setUrl(url);
|
|
Rest.post(data)
|
|
.success( function(data, status, headers, config) {
|
|
var id = data.id;
|
|
var url = GetBasePath('projects') + id + '/organizations/';
|
|
var org = { id: scope.organization };
|
|
Rest.setUrl(url);
|
|
Rest.post(org)
|
|
.success( function(data, status, headers, config) {
|
|
Wait('stop');
|
|
$rootScope.flashMessage = "New project successfully created!";
|
|
(base == 'projects') ? ReturnToCaller() : ReturnToCaller(1);
|
|
})
|
|
.error( function(data, status, headers, config) {
|
|
Wait('stop');
|
|
ProcessErrors(scope, data, status, ProjectsForm,
|
|
{ hdr: 'Error!', msg: 'Failed to add organization to project. POST returned status: ' + status });
|
|
});
|
|
})
|
|
.error( function(data, status, headers, config) {
|
|
Wait('stop');
|
|
ProcessErrors(scope, data, status, ProjectsForm,
|
|
{ hdr: 'Error!', msg: 'Failed to create new project. POST returned status: ' + status });
|
|
});
|
|
};
|
|
|
|
scope.scmChange = function() {
|
|
// When an scm_type is set, path is not required
|
|
scope.pathRequired = (scope.scm_type.value == '') ? true : false;
|
|
scope.scmRequired = (scope.scm_type.value !== '') ? true : false;
|
|
scope.scmBranchLabel = (scope.scm_type.value == 'svn') ? 'Revision #' : 'SCM Branch';
|
|
}
|
|
|
|
// Cancel
|
|
scope.formReset = function() {
|
|
$rootScope.flashMessage = null;
|
|
generator.reset();
|
|
for (var fld in master) {
|
|
scope[fld] = master[fld];
|
|
}
|
|
scope.scmChange();
|
|
};
|
|
}
|
|
|
|
ProjectsAdd.$inject = [ '$scope', '$rootScope', '$compile', '$location', '$log', '$routeParams', 'ProjectsForm',
|
|
'GenerateForm', 'Rest', 'Alert', 'ProcessErrors', 'LoadBreadCrumbs', 'ClearScope', 'GetBasePath',
|
|
'ReturnToCaller', 'GetProjectPath', 'LookUpInit', 'OrganizationList', 'CredentialList', 'GetChoices',
|
|
'DebugForm', 'Wait'
|
|
];
|
|
|
|
|
|
function ProjectsEdit ($scope, $rootScope, $compile, $location, $log, $routeParams, ProjectsForm,
|
|
GenerateForm, Rest, Alert, ProcessErrors, LoadBreadCrumbs, RelatedSearchInit,
|
|
RelatedPaginateInit, Prompt, ClearScope, GetBasePath, ReturnToCaller, GetProjectPath,
|
|
Authorization, CredentialList, LookUpInit, GetChoices, Empty, DebugForm, Wait, Stream)
|
|
{
|
|
ClearScope('tree-form');
|
|
ClearScope('htmlTemplate');
|
|
|
|
// Inject dynamic view
|
|
var form = ProjectsForm;
|
|
var generator = GenerateForm;
|
|
var scope = generator.inject(form, {mode: 'edit', related: true});
|
|
generator.reset();
|
|
|
|
var defaultUrl = GetBasePath('projects') + $routeParams.id + '/';
|
|
var base = $location.path().replace(/^\//,'').split('/')[0];
|
|
var master = {};
|
|
var id = $routeParams.id;
|
|
var relatedSets = {};
|
|
|
|
scope.project_local_paths = [];
|
|
scope.base_dir = '';
|
|
|
|
// After the project is loaded, retrieve each related set
|
|
if (scope.projectLoadedRemove) {
|
|
scope.projectLoadedRemove();
|
|
}
|
|
scope.projectLoadedRemove = scope.$on('projectLoaded', function() {
|
|
for (var set in relatedSets) {
|
|
scope.search(relatedSets[set].iterator);
|
|
}
|
|
|
|
if (Authorization.getUserInfo('is_superuser') == true) {
|
|
GetProjectPath({ scope: scope, master: master });
|
|
}
|
|
else {
|
|
var opts = [];
|
|
opts.push({ label: scope['local_path'], value: scope['local_path'] });
|
|
scope.project_local_paths = opts;
|
|
scope.local_path = scope['project_local_paths'][0];
|
|
scope.base_dir = 'You do not have access to view this property';
|
|
}
|
|
|
|
LookUpInit({
|
|
url: GetBasePath('credentials') + '?kind=scm',
|
|
scope: scope,
|
|
form: form,
|
|
list: CredentialList,
|
|
field: 'credential'
|
|
});
|
|
|
|
scope.pathRequired = (scope.scm_type.value == '') ? true : false;
|
|
scope.scmRequired = (scope.scm_type.value !== '') ? true : false;
|
|
scope.scmBranchLabel = (scope.scm_type.value == 'svn') ? 'Revision #' : 'SCM Branch';
|
|
Wait('stop');
|
|
});
|
|
|
|
if (scope.removeChoicesReady) {
|
|
scope.removeChoicesReady();
|
|
}
|
|
scope.removeChoicesReady = scope.$on('choicesReady', function() {
|
|
// Retrieve detail record and prepopulate the form
|
|
Rest.setUrl(defaultUrl);
|
|
Rest.get({ params: {id: id} })
|
|
.success( function(data, status, headers, config) {
|
|
LoadBreadCrumbs({ path: '/projects/' + id, title: data.name });
|
|
for (var fld in form.fields) {
|
|
if (form.fields[fld].type == 'checkbox_group') {
|
|
for (var i=0; i < form.fields[fld].fields.length; i++) {
|
|
scope[form.fields[fld].fields[i].name] = data[form.fields[fld].fields[i].name];
|
|
master[form.fields[fld].fields[i].name] = data[form.fields[fld].fields[i].name];
|
|
}
|
|
}
|
|
else {
|
|
if (data[fld]) {
|
|
scope[fld] = data[fld];
|
|
master[fld] = data[fld];
|
|
}
|
|
}
|
|
if (fld !== 'organization' && form.fields[fld].sourceModel &&
|
|
data.summary_fields && data.summary_fields[form.fields[fld].sourceModel]) {
|
|
scope[form.fields[fld].sourceModel + '_' + form.fields[fld].sourceField] =
|
|
data.summary_fields[form.fields[fld].sourceModel][form.fields[fld].sourceField];
|
|
master[form.fields[fld].sourceModel + '_' + form.fields[fld].sourceField] =
|
|
data.summary_fields[form.fields[fld].sourceModel][form.fields[fld].sourceField];
|
|
}
|
|
}
|
|
var related = data.related;
|
|
for (var set in form.related) {
|
|
if (related[set]) {
|
|
relatedSets[set] = { url: related[set], iterator: form.related[set].iterator };
|
|
}
|
|
}
|
|
|
|
data.scm_type = (Empty(data.scm_type)) ? '' : data.scm_type;
|
|
|
|
for (var i=0; i < scope.scm_type_options.length; i++) {
|
|
if (scope.scm_type_options[i].value == data.scm_type) {
|
|
scope.scm_type = scope.scm_type_options[i];
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (scope.scm_type.value !== '') {
|
|
scope.pathRequired = false;
|
|
scope.scmRequired = true;
|
|
}
|
|
else {
|
|
scope.pathRequired = true;
|
|
scope.scmRequired = false;
|
|
}
|
|
|
|
master['scm_type'] = scope['scm_type'];
|
|
scope.scmBranchLabel = (scope.scm_type.value == 'svn') ? 'Revision #' : 'SCM Branch';
|
|
|
|
// Initialize related search functions. Doing it here to make sure relatedSets object is populated.
|
|
RelatedSearchInit({ scope: scope, form: form, relatedSets: relatedSets });
|
|
RelatedPaginateInit({ scope: scope, relatedSets: relatedSets });
|
|
scope.$emit('projectLoaded');
|
|
})
|
|
.error( function(data, status, headers, config) {
|
|
ProcessErrors(scope, data, status, form,
|
|
{ hdr: 'Error!', msg: 'Failed to retrieve project: ' + id + '. GET status: ' + status });
|
|
});
|
|
});
|
|
|
|
// Load the list of options for Kind
|
|
Wait('start');
|
|
GetChoices({
|
|
url: GetBasePath('projects'),
|
|
scope: scope,
|
|
field: 'scm_type',
|
|
variable: 'scm_type_options',
|
|
callback: 'choicesReady'
|
|
});
|
|
|
|
|
|
// Save changes to the parent
|
|
scope.formSave = function() {
|
|
generator.clearApiErrors();
|
|
Wait('start');
|
|
$rootScope.flashMessage = null;
|
|
var params = {};
|
|
for (var fld in form.fields) {
|
|
if (form.fields[fld].type == 'checkbox_group') {
|
|
for (var i=0; i < form.fields[fld].fields.length; i++) {
|
|
params[form.fields[fld].fields[i].name] = scope[form.fields[fld].fields[i].name];
|
|
}
|
|
}
|
|
else {
|
|
if (form.fields[fld].type !== 'alertblock') {
|
|
params[fld] = scope[fld];
|
|
}
|
|
}
|
|
}
|
|
|
|
params.scm_type = scope.scm_type.value;
|
|
if (scope.scm_type.value !== '') {
|
|
delete params.local_path;
|
|
}
|
|
else {
|
|
params.local_path = scope.local_path.value;
|
|
}
|
|
|
|
Rest.setUrl(defaultUrl);
|
|
Rest.put(params)
|
|
.success( function(data, status, headers, config) {
|
|
Wait('stop');
|
|
ReturnToCaller();
|
|
})
|
|
.error( function(data, status, headers, config) {
|
|
Wait('stop');
|
|
ProcessErrors(scope, data, status, form,
|
|
{ hdr: 'Error!', msg: 'Failed to update project: ' + id + '. PUT status: ' + status });
|
|
});
|
|
};
|
|
|
|
scope.showActivity = function() { Stream({ scope: scope }); }
|
|
|
|
// Related set: Add button
|
|
scope.add = function(set) {
|
|
$rootScope.flashMessage = null;
|
|
$location.path('/' + base + '/' + $routeParams.id + '/' + set);
|
|
};
|
|
|
|
// Related set: Edit button
|
|
scope.edit = function(set, id, name) {
|
|
$rootScope.flashMessage = null;
|
|
$location.path('/' + set + '/' + id);
|
|
};
|
|
|
|
// Related set: Delete button
|
|
scope['delete'] = function(set, itm_id, name, title) {
|
|
var action = function() {
|
|
var url = GetBasePath('projects') + id + '/' + set + '/';
|
|
$rootScope.flashMessage = null;
|
|
Rest.setUrl(url);
|
|
Rest.post({ id: itm_id, disassociate: 1 })
|
|
.success( function(data, status, headers, config) {
|
|
$('#prompt-modal').modal('hide');
|
|
scope.search(form.related[set].iterator);
|
|
})
|
|
.error( function(data, status, headers, config) {
|
|
$('#prompt-modal').modal('hide');
|
|
ProcessErrors(scope, data, status, null,
|
|
{ hdr: 'Error!', msg: 'Call to ' + url + ' failed. POST returned status: ' + status });
|
|
});
|
|
};
|
|
|
|
Prompt({ hdr: 'Delete',
|
|
body: 'Are you sure you want to remove ' + name + ' from ' + scope.name + ' ' + title + '?',
|
|
action: action
|
|
});
|
|
}
|
|
|
|
scope.scmChange = function() {
|
|
scope.pathRequired = (scope.scm_type.value == '') ? true : false;
|
|
scope.scmRequired = (scope.scm_type.value !== '') ? true : false;
|
|
scope.scmBranchLabel = (scope.scm_type.value == 'svn') ? 'Revision #' : 'SCM Branch';
|
|
}
|
|
|
|
// Reset the form
|
|
scope.formReset = function() {
|
|
$rootScope.flashMessage = null;
|
|
generator.reset();
|
|
for (var fld in master) {
|
|
scope[fld] = master[fld];
|
|
}
|
|
scope.scmChange();
|
|
//DebugForm({ scope: scope, form: form });
|
|
};
|
|
}
|
|
|
|
ProjectsEdit.$inject = [ '$scope', '$rootScope', '$compile', '$location', '$log', '$routeParams', 'ProjectsForm',
|
|
'GenerateForm', 'Rest', 'Alert', 'ProcessErrors', 'LoadBreadCrumbs', 'RelatedSearchInit',
|
|
'RelatedPaginateInit', 'Prompt', 'ClearScope', 'GetBasePath', 'ReturnToCaller',
|
|
'GetProjectPath', 'Authorization', 'CredentialList', 'LookUpInit', 'GetChoices', 'Empty',
|
|
'DebugForm', 'Wait', 'Stream'
|
|
];
|