Created
January 17, 2018 04:34
-
-
Save aalfiann/533acfba473a71744c11a0d0e8f237a4 to your computer and use it in GitHub Desktop.
Sharing memoryStorage between tabs for secure multi-tab authentication
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Sharing memoryStorage between tabs for secure multi-tab authentication</title> | |
</head> | |
<body> | |
<h3><a href=''>memoryStorage</a></h3> | |
<h3 id="stData"></h3> | |
<button id="btnSet">Set memory storage</button> | |
| |
<button id="btnClear">Clear memory storage</button> | |
<script type="text/javascript"> | |
// Removed IE support in this demo for the sake of simplicity | |
(function() { | |
window.memoryStorage = {}; | |
function isEmpty(o) { | |
for (var i in o) { | |
return false; | |
} | |
return true; | |
}; | |
if (isEmpty(memoryStorage)) { | |
// Ask other tabs for memoryStorage | |
localStorage.setItem('getSessionStorage', Date.now()); | |
}; | |
window.addEventListener('storage', function(event) { | |
//console.log('storage event', event); | |
if (event.key == 'getSessionStorage') { | |
// Some tab asked for the memoryStorage -> send it | |
localStorage.setItem('sessionStorage', JSON.stringify(memoryStorage)); | |
localStorage.removeItem('sessionStorage'); | |
} else if (event.key == 'sessionStorage' && isEmpty(memoryStorage)) { | |
// sessionStorage is empty -> fill it | |
var data = JSON.parse(event.newValue), | |
value; | |
for (key in data) { | |
memoryStorage[key] = data[key]; | |
} | |
showSessionStorage(); | |
} | |
}); | |
window.onbeforeunload = function() { | |
//sessionStorage.clear(); | |
}; | |
/* This code is only for the UI in the demo, it's not part of the solution */ | |
var el; | |
function showSessionStorage() { | |
el.innerHTML = !isEmpty(memoryStorage) ? JSON.stringify(memoryStorage) : 'memoryStorage is empty'; | |
} | |
window.addEventListener('load', function() { | |
el = document.getElementById('stData'); | |
showSessionStorage(); | |
document.getElementById('btnSet').addEventListener('click', function() { | |
memoryStorage.token = '123456789'; | |
showSessionStorage(); | |
}) | |
document.getElementById('btnClear').addEventListener('click', function() { | |
memoryStorage = {}; | |
showSessionStorage(); | |
}) | |
}) | |
})(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment