##// END OF EJS Templates
ini: added new key
ini: added new key

File last commit:

r112:998f0d14
r129:489ce37b
Show More
jira.js
92 lines | 3.4 KiB | application/javascript | JavascriptLexer
// Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
angular.module('appenlight.controllers')
.controller('JiraIntegrationCtrl', JiraIntegrationCtrl)
JiraIntegrationCtrl.$inject = ['$uibModalInstance', '$state', 'report', 'integrationName', 'integrationResource'];
function JiraIntegrationCtrl($uibModalInstance, $state, report, integrationName, integrationResource) {
var vm = this;
vm.loading = true;
vm.assignees = [];
vm.report = report;
vm.integrationName = integrationName;
vm.statuses = [];
vm.priorities = [];
vm.issue_types = [];
vm.error_messages = [];
vm.form = {
content: '\n' +
'Issue created for report: ' +
$state.href('report.view_detail', {groupId:report.group_id, reportId:report.id}, {absolute:true})
};
vm.fetchInfo = function () {
integrationResource.get({
resourceId: vm.report.resource_id,
action: 'info',
integration: vm.integrationName
}, null,
function (data) {
vm.loading = false;
if (data.error_messages) {
vm.error_messages = data.error_messages;
}
vm.assignees = data.assignees;
vm.priorities = data.priorities;
vm.issue_types = data.issue_types;
vm.form.issue_type = vm.issue_types[0];
vm.form.responsible = vm.assignees[0];
vm.form.priority = vm.priorities[0];
}, function (error_data) {
console.log('ERROR');
if (error_data.data.error_messages) {
vm.error_messages = error_data.data.error_messages;
}
else {
vm.error_messages = ['There was a problem processing your request'];
}
});
};
vm.ok = function () {
vm.loading = true;
vm.form.group_id = vm.report.group_id;
integrationResource.save({
resourceId: vm.report.resource_id,
action: 'create-issue',
integration: vm.integrationName
}, vm.form,
function (data) {
vm.loading = false;
if (data.error_messages) {
vm.error_messages = data.error_messages;
}
if (data !== false) {
$uibModalInstance.dismiss('success');
}
}, function (error_data) {
if (error_data.data.error_messages) {
vm.error_messages = error_data.data.error_messages;
}
else {
vm.error_messages = ['There was a problem processing your request'];
}
});
};
vm.cancel = function () {
$uibModalInstance.dismiss('cancel');
};
vm.fetchInfo();
}