mirror of https://github.com/portainer/portainer
123 lines
4.2 KiB
JavaScript
123 lines
4.2 KiB
JavaScript
import { ContainerGroupDefaultModel } from '../../../models/container_group';
|
|
|
|
angular.module('portainer.azure').controller('AzureCreateContainerInstanceController', [
|
|
'$q',
|
|
'$scope',
|
|
'$state',
|
|
'AzureService',
|
|
'Notifications',
|
|
'Authentication',
|
|
'ResourceControlService',
|
|
'FormValidator',
|
|
function ($q, $scope, $state, AzureService, Notifications, Authentication, ResourceControlService, FormValidator) {
|
|
var allResourceGroups = [];
|
|
var allProviders = [];
|
|
|
|
$scope.state = {
|
|
actionInProgress: false,
|
|
selectedSubscription: null,
|
|
selectedResourceGroup: null,
|
|
formValidationError: '',
|
|
};
|
|
|
|
$scope.changeSubscription = function () {
|
|
var selectedSubscription = $scope.state.selectedSubscription;
|
|
updateResourceGroupsAndLocations(selectedSubscription, allResourceGroups, allProviders);
|
|
};
|
|
|
|
$scope.addPortBinding = function () {
|
|
$scope.model.Ports.push({ host: '', container: '', protocol: 'TCP' });
|
|
};
|
|
|
|
$scope.removePortBinding = function (index) {
|
|
$scope.model.Ports.splice(index, 1);
|
|
};
|
|
|
|
$scope.create = function () {
|
|
var model = $scope.model;
|
|
var subscriptionId = $scope.state.selectedSubscription.Id;
|
|
var resourceGroupName = $scope.state.selectedResourceGroup.Name;
|
|
|
|
$scope.state.formValidationError = validateForm(model);
|
|
if ($scope.state.formValidationError) {
|
|
return false;
|
|
}
|
|
|
|
$scope.state.actionInProgress = true;
|
|
AzureService.createContainerGroup(model, subscriptionId, resourceGroupName)
|
|
.then(applyResourceControl)
|
|
.then(() => {
|
|
Notifications.success('Container successfully created', model.Name);
|
|
$state.go('azure.containerinstances');
|
|
})
|
|
.catch(function error(err) {
|
|
Notifications.error('Failure', err, 'Unable to create container');
|
|
})
|
|
.finally(function final() {
|
|
$scope.state.actionInProgress = false;
|
|
});
|
|
};
|
|
|
|
function applyResourceControl(newResourceGroup) {
|
|
const userId = Authentication.getUserDetails().ID;
|
|
const resourceControl = newResourceGroup.Portainer.ResourceControl;
|
|
const accessControlData = $scope.model.AccessControlData;
|
|
|
|
return ResourceControlService.applyResourceControl(userId, accessControlData, resourceControl);
|
|
}
|
|
|
|
function validateForm(model) {
|
|
if (!model.Ports || !model.Ports.length || model.Ports.every((port) => !port.host || !port.container)) {
|
|
return 'At least one port binding is required';
|
|
}
|
|
|
|
const error = FormValidator.validateAccessControl(model.AccessControlData, Authentication.isAdmin());
|
|
if (error !== '') {
|
|
return error;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
function updateResourceGroupsAndLocations(subscription, resourceGroups, providers) {
|
|
$scope.state.selectedResourceGroup = resourceGroups[subscription.Id][0];
|
|
$scope.resourceGroups = resourceGroups[subscription.Id];
|
|
|
|
var currentSubLocations = providers[subscription.Id].Locations;
|
|
$scope.model.Location = currentSubLocations[0];
|
|
$scope.locations = currentSubLocations;
|
|
}
|
|
|
|
function initView() {
|
|
$scope.model = new ContainerGroupDefaultModel();
|
|
|
|
AzureService.subscriptions()
|
|
.then(function success(data) {
|
|
var subscriptions = data;
|
|
$scope.state.selectedSubscription = subscriptions[0];
|
|
$scope.subscriptions = subscriptions;
|
|
|
|
return $q.all({
|
|
resourceGroups: AzureService.resourceGroups(subscriptions),
|
|
containerInstancesProviders: AzureService.containerInstanceProvider(subscriptions),
|
|
});
|
|
})
|
|
.then(function success(data) {
|
|
var resourceGroups = data.resourceGroups;
|
|
allResourceGroups = resourceGroups;
|
|
|
|
var containerInstancesProviders = data.containerInstancesProviders;
|
|
allProviders = containerInstancesProviders;
|
|
|
|
var selectedSubscription = $scope.state.selectedSubscription;
|
|
updateResourceGroupsAndLocations(selectedSubscription, resourceGroups, containerInstancesProviders);
|
|
})
|
|
.catch(function error(err) {
|
|
Notifications.error('Failure', err, 'Unable to retrieve Azure resources');
|
|
});
|
|
}
|
|
|
|
initView();
|
|
},
|
|
]);
|