Create login page and add wiki/contact item
[clamp.git] / ui-react / src / components / backend_communication / LoopService.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 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 const LoopService = {
25     login
26 };
27
28 function login(username, password) {
29     let options = {
30            method: 'GET'
31          };
32     if (username && password) {
33       options = {
34              method: 'GET',
35              credentials: 'include',
36              headers: {
37                 'Authorization': "Basic " + new Buffer(username + ":" + password).toString("base64")
38              }
39            };
40     }
41
42     return fetch(`/restservices/clds/v1/user/getUser`, options)
43       .then(response => handleResponse(response))
44       .then(function(data) {
45           localStorage.setItem('user', data);
46           console.log(data);
47 });
48 }
49
50 function handleResponse(response) {
51      if (!response.ok || response.redirected === true) {
52           if (response.status === 401 || response.status === 500 || response.redirected === true) {
53               if (localStorage.getItem('tryBasicAuth')) {
54                 // login failed, go to invalud login page
55                 localStorage.removeItem('user');
56               } else {
57                 // try to login with username and password
58                 localStorage.setItem('tryBasicAuth', true);
59               }
60           }
61           const error = response.statusText;
62           return Promise.reject(error);
63       }
64     return response.text();
65 }
66 export default LoopService;