92bd24fdf1d07afe2bca78b975505e9da973c17a
[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                 var invalidUser = $window.localStorage.getItem("invalidUser");
38                 var isAuth = $window.localStorage.getItem("isAuth");
39                 if (invalidUser == 'true')
40                         return "invalid_login.html";
41                 else if (isAuth == null || isAuth == 'false') {
42                         return "authenticate.html";
43                 }
44                 return "utmdashboard.html";
45         };
46         $scope.authenticate = function() {
47                 // send request to a test API for authentication/authorization check
48                 $http.get('/restservices/clds/v1/user/getUser', {}).success(
49                 function(data) {
50                         if (data) {
51                                 $window.localStorage.setItem("isAuth", true);
52                                 $rootScope.loginuser = data;
53                         }
54                         window.localStorage.removeItem("invalidUser");
55                 }).error(function() {
56                         $window.localStorage.setItem("invalidUser", true);
57                 });
58         };
59 } ]);