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
|
/*
* 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.
*/
(function () {
'use strict';
angular
.module('testapiApp')
.controller('PodsController', PodsController);
PodsController.$inject = [
'$scope', '$http', '$filter', '$state', 'testapiApiUrl','raiseAlert'
];
/**
* TestAPI Pods Controller
* This controller is for the '/pods' page where a user can browse
* through pods declared in TestAPI.
*/
function PodsController($scope, $http, $filter, $state, testapiApiUrl,
raiseAlert) {
var ctrl = this;
ctrl.url = testapiApiUrl + '/pods';
ctrl.create = create;
ctrl.update = update;
ctrl.open = open;
ctrl.clearFilters = clearFilters;
ctrl.roles = ['community-ci', 'production-ci'];
ctrl.modes = ['metal', 'virtual'];
ctrl.createRequirements = [
{label: 'name', type: 'text', required: true},
{label: 'mode', type: 'select', selects: ctrl.modes},
{label: 'role', type: 'select', selects: ctrl.roles},
{label: 'details', type: 'textarea', required: false}
];
ctrl.name = '';
ctrl.role = 'community-ci';
ctrl.mode = 'metal';
ctrl.details = '';
/**
* This is called when the date filter calendar is opened. It
* does some event handling, and sets a scope variable so the UI
* knows which calendar was opened.
* @param {Object} $event - The Event object
* @param {String} openVar - Tells which calendar was opened
*/
function open($event, openVar) {
$event.preventDefault();
$event.stopPropagation();
ctrl[openVar] = true;
}
/**
* This function will clear all filters and update the results
* listing.
*/
function clearFilters() {
ctrl.update();
}
/**
* This will contact the TestAPI to create a new pod.
*/
function create() {
ctrl.showError = false;
if(ctrl.name != ""){
var pods_url = ctrl.url;
var body = {
name: ctrl.name,
mode: ctrl.mode,
role: ctrl.role,
details: ctrl.details
};
ctrl.podsRequest =
$http.post(pods_url, body).error(function (data, status) {
ctrl.showError = true;
if(status == 403){
ctrl.error =
'Error creating the new pod from server: Pod\'s name already exists'
}
});
}
else{
ctrl.showError = true;
ctrl.error = 'Name is missing.'
}
}
/**
* This will contact the TestAPI to get a listing of declared pods.
*/
function update() {
ctrl.showError = false;
ctrl.podsRequest =
$http.get(ctrl.url).success(function (data) {
ctrl.data = data;
}).error(function (error) {
ctrl.data = null;
ctrl.showError = true;
ctrl.error =
'Error retrieving pods from server: ' +
angular.toJson(error);
});
}
}
})();
|