forked from cypress-io/cypress-example-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.service.js
63 lines (51 loc) · 1.44 KB
/
user.service.js
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
/* global fetch, localStorage, location */
import config from 'config'
import { authHeader } from '../_helpers'
export const userService = {
login,
logout,
getAll,
}
function login (username, password) {
const requestOptions = {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ username, password }),
}
return fetch(`${config.apiUrl}/users/authenticate`, requestOptions)
.then(handleResponse)
.then((user) => {
// login successful if there's a jwt token in the response
if (user.token) {
// store user details and jwt token in local storage to keep user logged in between page refreshes
localStorage.setItem('user', JSON.stringify(user))
}
return user
})
}
function logout () {
// remove user from local storage to log user out
localStorage.removeItem('user')
}
function getAll () {
const requestOptions = {
method: 'GET',
headers: authHeader(),
}
return fetch(`${config.apiUrl}/users`, requestOptions).then(handleResponse)
}
function handleResponse (response) {
return response.text().then((text) => {
const data = text && JSON.parse(text)
if (!response.ok) {
if (response.status === 401) {
// auto logout if 401 response returned from api
logout()
location.reload(true)
}
const error = (data && data.message) || response.statusText
return Promise.reject(error)
}
return data
})
}