nfp_sites/app/authentication.js

41 lines
964 B
JavaScript
Raw Normal View History

2019-02-20 16:10:37 +00:00
const storageName = 'logintoken'
const Authentication = {
currentUser: null,
2019-10-01 03:45:44 +00:00
isAdmin: false,
2019-02-20 16:10:37 +00:00
loadingListeners: [],
2019-10-01 03:45:44 +00:00
authListeners: [],
2019-02-20 16:10:37 +00:00
updateToken: function(token) {
if (!token) return Authentication.clearToken()
localStorage.setItem(storageName, token)
2019-09-13 13:33:10 +00:00
Authentication.currentUser = JSON.parse(atob(token.split('.')[1]))
2019-10-01 03:45:44 +00:00
if (Authentication.authListeners.length) {
Authentication.authListeners.forEach(function(x) { x(Authentication.currentUser) })
}
2019-02-20 16:10:37 +00:00
},
clearToken: function() {
Authentication.currentUser = null
localStorage.removeItem(storageName)
2019-10-01 03:45:44 +00:00
Authentication.isAdmin = false
},
addEvent: function(event) {
Authentication.authListeners.push(event)
},
setAdmin: function(item) {
Authentication.isAdmin = item
2019-02-20 16:10:37 +00:00
},
2019-02-22 14:53:43 +00:00
getToken: function() {
return localStorage.getItem(storageName)
},
2019-02-20 16:10:37 +00:00
}
Authentication.updateToken(localStorage.getItem(storageName))
module.exports = Authentication