forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreateRoute.js
117 lines (106 loc) · 4.08 KB
/
createRoute.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
'use strict';
/**
* @ngdoc function
* @name openshiftConsole.controller:CreateRouteController
* @description
* # CreateRouteController
* Controller of the openshiftConsole
*/
angular.module('openshiftConsole')
.controller('CreateRouteController',
function($filter,
$routeParams,
$scope,
$window,
ApplicationGenerator,
AuthorizationService,
DataService,
Navigate,
ProjectsService,
keyValueEditorUtils) {
$scope.alerts = {};
$scope.renderOptions = {
hideFilterWidget: true
};
$scope.projectName = $routeParams.project;
$scope.serviceName = $routeParams.service;
$scope.labels = [];
// Prefill route name with the service name.
$scope.routing = {
name: $scope.serviceName || ""
};
$scope.breadcrumbs = [
{
title: $scope.projectName,
link: "project/" + $scope.projectName
},
{
title: "Routes",
link: "project/" + $scope.projectName + "/browse/routes"
},
{
title: "Create Route"
}
];
ProjectsService
.get($routeParams.project)
.then(_.spread(function(project, context) {
$scope.project = project;
// Update project breadcrumb with display name.
$scope.breadcrumbs[0].title = $filter('displayName')(project);
if (!AuthorizationService.canI('routes', 'create', $routeParams.project)) {
Navigate.toErrorPage('You do not have authority to create routes in project ' + $routeParams.project + '.', 'access_denied');
return;
}
var orderByDisplayName = $filter('orderByDisplayName');
DataService.list("services", context, function(services) {
$scope.services = orderByDisplayName(services.by("metadata.name"));
$scope.routing.to = {};
$scope.routing.to.service = _.find($scope.services, function(service) {
return !$scope.serviceName || service.metadata.name === $scope.serviceName;
});
});
$scope.copyServiceLabels = function() {
var serviceLabels = _.get($scope, 'routing.to.service.metadata.labels', {});
var existing = keyValueEditorUtils.mapEntries(keyValueEditorUtils.compactEntries($scope.labels));
var updated = _.assign(existing, serviceLabels);
$scope.labels = _.map(updated, function(value, key) {
return {
name: key,
value: value
};
});
};
$scope.createRoute = function() {
if ($scope.createRouteForm.$valid) {
$scope.disableInputs = true;
var serviceName = $scope.routing.to.service.metadata.name;
var labels = keyValueEditorUtils.mapEntries(keyValueEditorUtils.compactEntries($scope.labels));
var route = ApplicationGenerator.createRoute($scope.routing, serviceName, labels);
var alternateServices = _.get($scope, 'routing.alternateServices', []);
if (!_.isEmpty(alternateServices)) {
route.spec.to.weight = _.get($scope, 'routing.to.weight');
route.spec.alternateBackends = _.map(alternateServices, function(alternate) {
return {
kind: 'Service',
name: _.get(alternate, 'service.metadata.name'),
weight: alternate.weight
};
});
}
DataService.create('routes', null, route, context)
.then(function() { // Success
// Return to the previous page
$window.history.back();
}, function(result) { // Failure
$scope.disableInputs = false;
$scope.alerts['create-route'] = {
type: "error",
message: "An error occurred creating the route.",
details: $filter('getErrorDetails')(result)
};
});
}
};
}));
});