Upgrade spring/camel versions
[clamp.git] / src / main / resources / META-INF / resources / designer / scripts / authcontroller.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23 'use strict';
24 angular.module('clds-app').controller(
25 'AuthenticateCtrl',
26 [
27 '$scope',
28 '$rootScope',
29 '$window',
30 '$resource',
31 '$http',
32 '$location',
33 '$cookies',
34 function($scope, $rootScope, $window, $resource, $http, $location, $cookies) {
35         console.log("//////////AuthenticateCtrl");
36         $scope.getInclude = function() {
37                 console.log("getInclude011111111");
38                 var invalidUser = $window.localStorage.getItem("invalidUser");
39                 var isAuth = $window.localStorage.getItem("isAuth");
40                 if (invalidUser == 'true')
41                         return "invalid_login.html";
42                 else if (isAuth == null || isAuth == 'false') {
43                         return "authenticate.html";
44                 }
45                 return "utmdashboard.html";
46         };
47         $scope.authenticate = function() {
48                 // send request to a test API for authentication/authorization check
49                 $http.get('/restservices/clds/v1/user/getUser', {}).success(
50                 function(data) {
51                         if (data) {
52                                 $window.localStorage.setItem("isAuth", true);
53                                 $rootScope.loginuser = data;
54                         }
55                         window.localStorage.removeItem("invalidUser");
56                 }).error(function() {
57                         $window.localStorage.setItem("invalidUser", true);
58                 });
59         };
60 } ]);