-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathnewfromtemplate.js
436 lines (391 loc) · 15.1 KB
/
newfromtemplate.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
'use strict';
/* jshint unused: false */
/**
* @ngdoc function
* @name openshiftConsole.controller:NewFromTemplateController
* @description
* # NewFromTemplateController
* Controller of the openshiftConsole
*/
angular.module('openshiftConsole')
.controller('NewFromTemplateController', function (
$scope,
$http,
$routeParams,
DataService,
ProcessedTemplateService,
AlertMessageService,
ProjectsService,
QuotaService,
$q,
$location,
TaskList,
$parse,
Navigate,
$filter,
$uibModal,
imageObjectRefFilter,
failureObjectNameFilter,
CachedTemplateService,
keyValueEditorUtils,
Constants) {
var name = $routeParams.template;
// If the namespace is not defined, that indicates that the processed Template should be obtained from the 'CachedTemplateService'
var namespace = $routeParams.namespace || "";
if (!name) {
Navigate.toErrorPage("Cannot create from template: a template name was not specified.");
return;
}
$scope.emptyMessage = "Loading...";
$scope.alerts = {};
$scope.alertsTop = {};
$scope.projectName = $routeParams.project;
$scope.projectPromise = $.Deferred();
$scope.labels = [];
$scope.systemLabels = [];
$scope.breadcrumbs = [
{
title: $scope.projectName,
link: "project/" + $scope.projectName
},
{
title: "Add to Project",
link: "project/" + $scope.projectName + "/create"
},
{
title: "Catalog",
link: "project/" + $scope.projectName + "/create?tab=fromCatalog"
},
{
title: name
}
];
$scope.alerts = $scope.alerts || {};
AlertMessageService.getAlerts().forEach(function(alert) {
$scope.alerts[alert.name] = alert.data;
});
AlertMessageService.clearAlerts();
var displayNameFilter = $filter('displayName');
var humanize = $filter('humanize');
var dcContainers = $parse('spec.template.spec.containers');
var builderImage = $parse('spec.strategy.sourceStrategy.from || spec.strategy.dockerStrategy.from || spec.strategy.customStrategy.from');
var outputImage = $parse('spec.output.to');
var getValidTemplateParamsMap = function () {
try {
return JSON.parse($routeParams.templateParamsMap);
}
catch (e) {
$scope.alertsTop.invalidTemplateParams = {
type: "error",
message: "The templateParamsMap is not valid JSON. " + e
};
}
};
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);
function findImageFromTrigger(dc, container) {
var triggers = _.get(dc, 'spec.triggers', []);
// Find an image change trigger whose container name matches.
var matchingTrigger = _.find(triggers, function(trigger) {
if (trigger.type !== 'ImageChange') {
return false;
}
var containerNames = _.get(trigger, 'imageChangeParams.containerNames', []);
return _.includes(containerNames, container.name);
});
return _.get(matchingTrigger, 'imageChangeParams.from.name');
}
// Test for variable expressions like ${MY_PARAMETER} in the image.
var TEMPLATE_VARIABLE_EXPRESSION = /\${([a-zA-Z0-9\_]+)}/g;
function getParametersInImage(image) {
var parameters = [];
var match = TEMPLATE_VARIABLE_EXPRESSION.exec(image);
while (match) {
parameters.push(match[1]);
match = TEMPLATE_VARIABLE_EXPRESSION.exec(image);
}
return parameters;
}
function getParameterValues() {
var values = {};
_.each($scope.template.parameters, function(parameter) {
values[parameter.name] = parameter.value;
});
return values;
}
var images = [];
function resolveParametersInImages() {
var values = getParameterValues();
$scope.templateImages = _.map(images, function(image) {
if (_.isEmpty(image.usesParameters)) {
return image;
}
var template = _.template(image.name, { interpolate: TEMPLATE_VARIABLE_EXPRESSION });
return {
name: template(values),
usesParameters: image.usesParameters
};
});
}
function deploymentConfigImages(dc) {
var dcImages = [];
var containers = dcContainers(dc);
if (containers) {
angular.forEach(containers, function(container) {
var image = container.image;
// Look to see if `container.image` is set from an image change trigger.
var imageFromTrigger = findImageFromTrigger(dc, container);
if (imageFromTrigger) {
image = imageFromTrigger;
}
if (image) {
dcImages.push(image);
}
});
}
return dcImages;
}
function findTemplateImages(data) {
images = [];
var dcImages = [];
var outputImages = {};
angular.forEach(data.objects, function(item) {
if (item.kind === "BuildConfig") {
var builder = imageObjectRefFilter(builderImage(item), $scope.projectName);
if(builder) {
images.push({
name: builder,
usesParameters: getParametersInImage(builder)
});
}
var output = imageObjectRefFilter(outputImage(item), $scope.projectName);
if (output) {
outputImages[output] = true;
}
}
if (item.kind === "DeploymentConfig") {
dcImages = dcImages.concat(deploymentConfigImages(item));
}
});
dcImages.forEach(function(image) {
if (!outputImages[image]) {
images.push({
name: image,
usesParameters: getParametersInImage(image)
});
}
});
images = _.uniq(images, false, 'name');
}
function getHelpLinks(template) {
var helpLinkName = /^helplink\.(.*)\.title$/;
var helpLinkURL = /^helplink\.(.*)\.url$/;
var helpLinks = {};
for (var attr in template.annotations) {
var match = attr.match(helpLinkName);
var link;
if (match) {
link = helpLinks[match[1]] || {};
link.title = template.annotations[attr];
helpLinks[match[1]] = link;
}
else {
match = attr.match(helpLinkURL);
if (match) {
link = helpLinks[match[1]] || {};
link.url = template.annotations[attr];
helpLinks[match[1]] = link;
}
}
}
return helpLinks;
}
$scope.projectDisplayName = function() {
return displayNameFilter(this.project) || this.projectName;
};
$scope.templateDisplayName = function() {
return displayNameFilter(this.template);
};
var processedResources;
var createResources = function() {
var titles = {
started: "Creating " + $scope.templateDisplayName() + " in project " + $scope.projectDisplayName(),
success: "Created " + $scope.templateDisplayName() + " in project " + $scope.projectDisplayName(),
failure: "Failed to create " + $scope.templateDisplayName() + " in project " + $scope.projectDisplayName()
};
var helpLinks = getHelpLinks($scope.template);
TaskList.clear();
TaskList.add(titles, helpLinks, $routeParams.project, function() {
var d = $q.defer();
DataService.batch(processedResources, context).then(
function(result) {
var alerts = [];
var hasErrors = false;
if (result.failure.length > 0) {
hasErrors = true;
result.failure.forEach(
function(failure) {
alerts.push({
type: "error",
message: "Cannot create " + humanize(failure.object.kind).toLowerCase() + " \"" + failure.object.metadata.name + "\". ",
details: failure.data.message
});
}
);
result.success.forEach(
function(success) {
alerts.push({
type: "success",
message: "Created " + humanize(success.kind).toLowerCase() + " \"" + success.metadata.name + "\" successfully. "
});
}
);
} else {
alerts.push({ type: "success", message: "All items in template " + $scope.templateDisplayName() +
" were created successfully."});
}
d.resolve({alerts: alerts, hasErrors: hasErrors});
}
);
return d.promise;
});
Navigate.toNextSteps($routeParams.name, $scope.projectName);
};
var launchConfirmationDialog = function(alerts) {
var modalInstance = $uibModal.open({
animation: true,
templateUrl: 'views/modals/confirm.html',
controller: 'ConfirmModalController',
resolve: {
modalConfig: function() {
return {
alerts: alerts,
message: "Problems were detected while checking your application configuration.",
okButtonText: "Create Anyway",
okButtonClass: "btn-danger",
cancelButtonText: "Cancel"
};
}
}
});
modalInstance.result.then(createResources);
};
var showWarningsOrCreate = function(result) {
// Now that all checks are completed, show any Alerts if we need to
var quotaAlerts = result.quotaAlerts || [];
var errorAlerts = _.filter(quotaAlerts, {type: 'error'});
if (errorAlerts.length) {
$scope.disableInputs = false;
$scope.alerts = quotaAlerts;
}
else if (quotaAlerts.length) {
launchConfirmationDialog(quotaAlerts);
$scope.disableInputs = false;
}
else {
createResources();
}
};
$scope.createFromTemplate = function() {
$scope.disableInputs = true;
var userLabels = keyValueEditorUtils.mapEntries(keyValueEditorUtils.compactEntries($scope.labels));
var systemLabels = keyValueEditorUtils.mapEntries(keyValueEditorUtils.compactEntries($scope.systemLabels));
$scope.template.labels = _.extend(systemLabels, userLabels);
DataService.create("processedtemplates", null, $scope.template, context).then(
function(config) { // success
// Cache template parameters and message so they can be displayed in the nexSteps page
ProcessedTemplateService.setTemplateData(config.parameters, $scope.template.parameters, config.message);
processedResources = config.objects;
QuotaService.getLatestQuotaAlerts(processedResources, context).then(showWarningsOrCreate);
},
function(result) { // failure
$scope.disableInputs = false;
var details;
if (result.data && result.data.message) {
details = result.data.message;
}
$scope.alerts["process"] =
{
type: "error",
message: "An error occurred processing the template.",
details: details
};
}
);
};
var shouldAddAppLabel = function() {
// If the template defines its own app label, we don't need to add one at all
if (_.get($scope.template, 'labels.app')) {
return false;
}
// Otherwise check if an object in the template has an app label defined
return !_.some($scope.template.objects, "metadata.labels.app");
};
function setTemplateParams(labels) {
$scope.parameterDisplayNames = {};
_.each($scope.template.parameters, function(parameter) {
$scope.parameterDisplayNames[parameter.name] = parameter.displayName || parameter.name;
});
if($routeParams.templateParamsMap) {
var templateParams = getValidTemplateParamsMap();
_.each($scope.template.parameters, function(parameter) {
if (templateParams[parameter.name]) {
parameter.value = templateParams[parameter.name];
}
});
}
findTemplateImages($scope.template);
var imageUsesParameters = function(image) {
return !_.isEmpty(image.usesParameters);
};
if (_.some(images, imageUsesParameters)) {
$scope.$watch('template.parameters', _.debounce(function(parameters) {
$scope.$apply(resolveParametersInImages);
}, 50, { maxWait: 250 }), true);
} else {
$scope.templateImages = images;
}
$scope.systemLabels = _.map($scope.template.labels, function(value, key) {
return {
name: key,
value: value
};
});
if (shouldAddAppLabel()) {
$scope.systemLabels.push({
name: 'app',
value: $scope.template.metadata.name
});
}
}
// Missing namespace indicates that the template should be received from from the 'CachedTemplateService'.
// Otherwise get it via GET call.
if (!namespace) {
$scope.template = CachedTemplateService.getTemplate();
// In case the template can be loaded from 'CachedTemaplteService', show an alert and disable "Create" button.
if (_.isEmpty($scope.template)) {
var redirect = URI('error').query({
error: "not_found",
error_description: "Template wasn't found in cache."
}).toString();
$location.url(redirect);
}
CachedTemplateService.clearTemplate();
setTemplateParams();
} else {
DataService.get("templates", name, {namespace: (namespace || $scope.projectName)}).then(
function(template) {
$scope.template = template;
setTemplateParams();
$scope.breadcrumbs[3].title = $filter('displayName')(template);
},
function() {
Navigate.toErrorPage("Cannot create from template: the specified template could not be retrieved.");
});
}
}));
});