Remove useless file
[clamp.git] / src / main / resources / META-INF / resources / designer / scripts / authcontroller.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017 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
24 'use strict';
25
26 function AuthenticateCtrl($scope, $rootScope, $window, $resource, $http, $location, $cookies) {
27   console.log("//////////AuthenticateCtrl");
28   $scope.getInclude = function() {
29     console.log("getInclude011111111");
30     var invalidUser = $window.localStorage.getItem("invalidUser");
31     var isAuth = $window.localStorage.getItem("isAuth");
32     if (invalidUser == 'true')
33       return "invalid_login.html";
34     else if (isAuth == null || isAuth == 'false') {
35       return "authenticate.html";
36     }
37     return "utmdashboard.html";
38   };
39
40   $scope.authenticate = function() {
41     // send request to a test API for authentication/authorization check
42     $http.get('/restservices/clds/v1/user/getUser', {
43     }).success(function(data) {
44       if (data) {
45         $window.localStorage.setItem("isAuth", true);
46         $rootScope.loginuser = data;
47       }
48       window.localStorage.removeItem("invalidUser");
49       
50     }).error(function() {
51       $window.localStorage.setItem("invalidUser", true);
52       
53     });
54   };
55
56 }