nfp_sites/nfp_moe/app/authentication.js

43 lines
1014 B
JavaScript
Raw Permalink Normal View History

2022-07-27 08:41:18 +00:00
const storageName = 'nfp_sites_logintoken'
2019-02-20 16:10:37 +00:00
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))
2022-07-27 08:41:18 +00:00
window.Authentication = Authentication
2019-02-20 16:10:37 +00:00
module.exports = Authentication