summaryrefslogtreecommitdiffstats
path: root/dcae_dmaapbc_webapp/dbca-overlay/src/main/webapp/app/dbcapp/datarouter/dr-feed-popup-controller.js
blob: 6618f072a9423e872aa2dec2bc24e7665b139ac6 (plain)
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
appDS2.controller('feedPopupCtrl', function($scope, $log, $modalInstance, modalService, message, DRFeedService) {
	'use strict';
	
	// this object holds all app data and functions
	$scope.dbcapp = {};
	
	// Set the label variable for the template
	if (message.feed == null) {
		$scope.dbcapp.label = 'Add Feed';
		// Must add publisher with a feed.
		$scope.dbcapp.editFeed = 
				{
				pubs: [
				       { username: null }
				      ]
				};
	}
	else {
		$scope.dbcapp.label = 'Edit Feed';
		$scope.dbcapp.editFeed = message.feed;
	}
	$scope.dbcapp.dcaeList = message.dcaeList;

	// for populating selection boxes on add and edit popup templates
	$scope.dbcapp.asprClassificationList = [];
	
	DRFeedService.getFeedPiiTypes().then(function(jsonObj) {
		$scope.dbcapp.asprClassificationList = jsonObj;
	}, function(error) {
		$log.error("feedPopupCtrl.getFeedPiiTypes failed: " + error);
	});

	/**
	 * Validates content of user-editable fields.
	 * Uses the list in message.feedList 
	 * Returns null if all is well, 
	 * a descriptive error message otherwise.
	 */
	$scope.dbcapp.validateFeed = function(feed) {
		if (feed == null)
			return "No data found.\nPlease enter some values.";
		if (feed.feedName == null || feed.feedName.trim() == '')
			return "Name is required.\nPlease enter a value.";
		if (feed.feedVersion == null || feed.feedVersion.trim() == '')
			return "Version is required.\nPlease enter a value.";
		if (feed.feedDescription == null || feed.feedDescription.trim() == '')
			return "Description is required.\nPlease enter a value.";
		if (feed.asprClassification == null || feed.asprClassification.trim() == '')
			return "ASPR Classification is required.\nPlease select a value.";
		for (var x in message.feedList) {
			// Ignore the one being edited.
			if (message.feedList[x].feedId == feed.feedId)
				continue;
			if (message.feedList[x].feedName == feed.feedName)
				return "Name " + feed.feedName + " exists.\n"
					+ "Please choose a different name.";
		}
		// Extra validation if adding a new feed - check first publisher 
		if (feed.feedId == null && feed.pubs != null && feed.pubs[0] != null) {
			$log.info('validateFeed: pubs[0] is ' + JSON.stringify(feed.pubs[0]));
			if (feed.pubs[0].dcaeLocationName == null)
				return "DCAE Location is required.\nPlease select a value.";
			// username, userpwd are optional
		}
		return null;
	}
	
	$scope.dbcapp.saveFeed = function(feed) {
		var validateMsg = $scope.dbcapp.validateFeed(feed);
		if (validateMsg != null) {
			alert('Invalid Feed:\n' + validateMsg);
			return;			
		}
		
		if (feed.feedId == null) {
			// No id, so create a new one
			DRFeedService.addFeed(feed)
				.then(function(response) {
					$modalInstance.close(response);
				},
				function (error) {
					$log.error('feedPopupCtrl: error while adding: ' + error);
				}
			);
		}
		else {
			// Has id, so update an existing one
			DRFeedService.updateFeed(feed)
				.then(function(response) {
					$modalInstance.close(response);
				},
				function (error) {
					$log.error('feedPopupCtrl: error while updating: ' + error);
				}
			);
		}

	};

	$scope.dbcapp.close = function() {
		$modalInstance.close();
	};
});