53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
const m = require('mithril')
|
|
const storageName = 'nfp_sites_filadelfia_web_logintoken'
|
|
|
|
const Authentication = {
|
|
currentUser: null,
|
|
isAdmin: false,
|
|
loadingListeners: [],
|
|
authListeners: [],
|
|
|
|
updateToken: function(token) {
|
|
if (!token) return Authentication.clearToken()
|
|
localStorage.setItem(storageName, token)
|
|
Authentication.currentUser = JSON.parse(atob(token.split('.')[1]))
|
|
|
|
if (Authentication.authListeners.length) {
|
|
Authentication.authListeners.forEach(function(x) { x(Authentication.currentUser) })
|
|
}
|
|
},
|
|
|
|
clearToken: function() {
|
|
Authentication.currentUser = null
|
|
localStorage.removeItem(storageName)
|
|
Authentication.isAdmin = false
|
|
},
|
|
|
|
addEvent: function(event) {
|
|
Authentication.authListeners.push(event)
|
|
},
|
|
|
|
setAdmin: function(item) {
|
|
Authentication.isAdmin = item
|
|
},
|
|
|
|
getToken: function() {
|
|
return localStorage.getItem(storageName)
|
|
},
|
|
|
|
requiresLogin: function() {
|
|
if (Authentication.currentUser) return
|
|
m.route.set('/')
|
|
},
|
|
|
|
requiresNotLogin: function() {
|
|
if (!Authentication.currentUser) return
|
|
m.route.set('/browse')
|
|
},
|
|
}
|
|
|
|
Authentication.updateToken(localStorage.getItem(storageName))
|
|
|
|
window.Authentication = Authentication
|
|
|
|
module.exports = Authentication
|