|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="cache-control" content="max-age=0" />
|
|
|
|
<meta http-equiv="cache-control" content="no-cache" />
|
|
|
|
<meta http-equiv="expires" content="0" />
|
|
|
|
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
|
|
|
|
<meta http-equiv="pragma" content="no-cache" />
|
|
|
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
|
|
|
|
body{
|
|
|
|
font-size:20px;
|
|
|
|
text-shadow: 1px 1px orange;
|
|
|
|
font-family: times, 'times new roman', helvetica,serif;
|
|
|
|
line-height:1.5em;
|
|
|
|
color:#444;
|
|
|
|
background:#fff;
|
|
|
|
background-image: url(css/marble.jpg);
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea{
|
|
|
|
-webkit-appearance: none; -moz-appearance: none;
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%; height: 50px;
|
|
|
|
line-height: 40px; font-size: 17px;
|
|
|
|
border: 1px solid #bbb;
|
|
|
|
-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
|
|
|
|
background-image: url(css/aqua.jpg);
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
font-size: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
|
|
|
margin: 1.5em 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
font-size: 30px;
|
|
|
|
}
|
|
|
|
h2{
|
|
|
|
text-shadow: 2px 2px #orange;
|
|
|
|
font-size: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr{
|
|
|
|
height:10px;
|
|
|
|
border: 10;
|
|
|
|
width:87%;
|
|
|
|
background-image: url(css/bg1.gif);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
li{
|
|
|
|
word-wrap:break-word;
|
|
|
|
list-style: none;
|
|
|
|
overflow: visible;
|
|
|
|
padding:30px;
|
|
|
|
-moz-box-shadow:0 0 23px #bbb;
|
|
|
|
-webkit-box-shadow:0 0 23px #bbb;
|
|
|
|
box-shadow:0 0 23px #bbb;
|
|
|
|
-webkit-border-top-left-radius:123px;
|
|
|
|
-webkit-border-top-right-radius:123px;
|
|
|
|
-webkit-border-bottom-right-radius:123px;
|
|
|
|
-webkit-border-bottom-left-radius:123px;
|
|
|
|
-moz-border-radius-bottomright:123px;
|
|
|
|
-moz-border-radius-bottomleft:123px;
|
|
|
|
-moz-border-top-left-radius:123px;
|
|
|
|
-moz-border-top-right-radius:123px;
|
|
|
|
border-top-left-radius:123px;
|
|
|
|
border-top-right-radius:123px;
|
|
|
|
border-bottom-right-radius:123px;
|
|
|
|
border-bottom-left-radius:123px;
|
|
|
|
left:-35px;
|
|
|
|
|
|
|
|
width:100%;
|
|
|
|
//overflow:hidden;
|
|
|
|
position:relative;
|
|
|
|
background:#fff;
|
|
|
|
//background:-webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
|
|
|
|
//background:-moz-linear-gradient(top, #fff, #eee);
|
|
|
|
}
|
|
|
|
#outbox{
|
|
|
|
display:hidden;
|
|
|
|
}
|
|
|
|
#header{
|
|
|
|
width:100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<title>meshed up</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="header">
|
|
|
|
<h2>Meshenger</h2>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="fixedDiv">
|
|
|
|
<textarea id="name" rows="1" style="width:100%" placeholder="Your Name (leave empty for anonymous)"></textarea>
|
|
|
|
<textarea id="message" rows="3" style="width:100%" placeholder="Your Message"></textarea>
|
|
|
|
<button style="width:100%" id="send">Send</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<ul id="inbox"></ul>
|
|
|
|
|
|
|
|
<!--<h2>outbox</h2>-->
|
|
|
|
<ul id="outbox"></ul>
|
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OUTBOX STUFF
|
|
|
|
*/
|
|
|
|
document.getElementById( 'send' ).onclick = function() {
|
|
|
|
|
|
|
|
var outStr = localStorage.getItem( 'outbox' ) || '';
|
|
|
|
if (document.getElementById('name').value == ""){
|
|
|
|
var namm= "anonymous";
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
var namm= document.getElementById('name').value;
|
|
|
|
}
|
|
|
|
|
|
|
|
outStr += new Date().getTime() + ' ' + namm + '///' + document.getElementById('message').value + '\n';
|
|
|
|
localStorage.setItem( 'outbox', outStr );
|
|
|
|
updateOutboxView();
|
|
|
|
checkOutbox();
|
|
|
|
document.getElementById('message').value = '';
|
|
|
|
//localStorage.setItem(
|
|
|
|
// new Date().getTime(),
|
|
|
|
// document.getElementById('message').value );
|
|
|
|
//updateList();
|
|
|
|
};
|
|
|
|
function checkOutbox() {
|
|
|
|
var outStr = localStorage.getItem( 'outbox' );
|
|
|
|
if ( ! outStr ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var lines = outStr.split( /\n/ );
|
|
|
|
for ( var i in lines ) {
|
|
|
|
if ( lines[i].length === 0 ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
var ts = lines[ i ].substr( 0, lines[ i ].indexOf( ' ' ));
|
|
|
|
var msg = lines[ i ].substr( lines[ i ].indexOf( ' ' ));
|
|
|
|
sendMessage( ts, msg );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function sendMessage( timestamp, message ) {
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
var data = 'time=' + encodeURIComponent( timestamp ) +
|
|
|
|
'&message=' + encodeURIComponent( message );
|
|
|
|
|
|
|
|
xhr.onreadystatechange = function(){
|
|
|
|
if ( xhr.readyState == 4){
|
|
|
|
if ( xhr.status == 200 ) {
|
|
|
|
removeOutboxItem( timestamp );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
xhr.open('POST', 'send', true);
|
|
|
|
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
|
|
|
|
xhr.setRequestHeader('If-Modified-Since', 'Sat, 1 Jan 2005 00:00:00 GMT');
|
|
|
|
xhr.send(data);
|
|
|
|
}
|
|
|
|
function removeOutboxItem( timestamp ) {
|
|
|
|
var outStr = localStorage.getItem( 'outbox' ) || '';
|
|
|
|
var lines = outStr.split( /\n/ );
|
|
|
|
for ( var i in lines ) {
|
|
|
|
var ts = lines[ i ].substr( 0, lines[ i ].indexOf( ' ' ));
|
|
|
|
if ( ts === timestamp ) {
|
|
|
|
lines.splice( i, 1 );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var newOutStr = lines.join('\n');
|
|
|
|
localStorage.setItem('outbox', newOutStr);
|
|
|
|
updateOutboxView();
|
|
|
|
}
|
|
|
|
function updateOutboxView() {
|
|
|
|
var contentString = '';
|
|
|
|
var outStr = localStorage.getItem( 'outbox' ) || '';
|
|
|
|
var lines = outStr.split( /\n/ );
|
|
|
|
for ( var i in lines ) {
|
|
|
|
if ( lines[ i ].length === 0 ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
var ts = lines[ i ].substr( 0, lines[ i ].indexOf( ' ' ));
|
|
|
|
var msg = lines[ i ].substr( lines[ i ].indexOf( ' ' ));
|
|
|
|
contentString += '<li><b>' + ts + ' </b>' + msg + '</li>';
|
|
|
|
}
|
|
|
|
document.getElementById( 'outbox' ).innerHTML = contentString;
|
|
|
|
}
|
|
|
|
|
|
|
|
function doStuffForEach( entriesString, stuffFunction ) {
|
|
|
|
if ( ! entriesString ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var lines = entriesString.split( /\n/ );
|
|
|
|
for ( var i in lines ) {
|
|
|
|
var ts = lines[ i ].substr( 0, lines[ i ].indexOf( ' ' ));
|
|
|
|
var msg = lines[ i ].substr( lines[ i ].indexOf( ' ' ) + 1 );
|
|
|
|
stuffFunction( ts, msg );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* INBOX STUFF
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function updateInboxView() {
|
|
|
|
var localStorageArray = new Array();
|
|
|
|
var contentString = '';
|
|
|
|
|
|
|
|
if (localStorage.length>0) {
|
|
|
|
for (i=0;i<localStorage.length;i++){
|
|
|
|
|
|
|
|
|
|
|
|
element=localStorage.getItem(localStorage.key(i))
|
|
|
|
|
|
|
|
elesplit=element.split('///');
|
|
|
|
|
|
|
|
if ( localStorage.key(i).length === 0 || element === 'outbox' ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
localStorageArray[i] = { time:localStorage.key(i), user:elesplit[0], message:elesplit[1] };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
orderStorage = localStorageArray.sort(function(a,b) { return b.time - a.time } );
|
|
|
|
|
|
|
|
for(var i in orderStorage)
|
|
|
|
{
|
|
|
|
if ( i.length === 0 || i === 'outbox' ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
var date = new Date(parseInt(orderStorage[i].time));
|
|
|
|
// date.setHours(date.getHours() + 2);
|
|
|
|
var datereadable = date.getDate()+"/"+date.getMonth()+"/"+date.getFullYear()+" "+date.getHours()+":"+date.getMinutes();
|
|
|
|
contentString += '<li><b>' + datereadable + ' </b>' + ' <i>'+ orderStorage[i].user +'</i><br/> '+orderStorage[i].message+'</li>';
|
|
|
|
}
|
|
|
|
document.getElementById( 'inbox' ).innerHTML = contentString;
|
|
|
|
}
|
|
|
|
|
|
|
|
function onMessageDownload( msg, filename ) {
|
|
|
|
if ( localStorage.getItem( filename ) === null ) {
|
|
|
|
localStorage.setItem( filename, msg );
|
|
|
|
}
|
|
|
|
updateInboxView();
|
|
|
|
}
|
|
|
|
function onIndex( index ) {
|
|
|
|
var lines = index.split( /\n/ );
|
|
|
|
|
|
|
|
for(var k in localStorage){
|
|
|
|
var l = 1;
|
|
|
|
for ( var i in lines ) {
|
|
|
|
var f = lines[i];
|
|
|
|
if (f == k){ l = 0; }
|
|
|
|
}
|
|
|
|
if (l == 1){
|
|
|
|
localStorage.removeItem(k);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
updateInboxView();
|
|
|
|
|
|
|
|
for ( var i in lines ) {
|
|
|
|
var fname = lines[i];
|
|
|
|
if ( localStorage.getItem( fname ) === null ) {
|
|
|
|
//localStorage.setItem( ts, lines[i].substr(lines[i].indexOf(' ')) );
|
|
|
|
downloadMessage( fname );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
function downloadMessage(filename) {
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
xhr.onreadystatechange = function(){
|
|
|
|
if (xhr.readyState == 4 && xhr.status == 200){
|
|
|
|
onMessageDownload( xhr.responseText, filename );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xhr.open( "GET", 'msg/'+filename, true);
|
|
|
|
xhr.send();
|
|
|
|
|
|
|
|
}
|
|
|
|
function checkInbox() {
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
xhr.onreadystatechange = function(){
|
|
|
|
if (xhr.readyState == 4 && xhr.status == 200){
|
|
|
|
onIndex( xhr.responseText );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xhr.open( "GET", 'index', true);
|
|
|
|
xhr.send();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* INIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
updateInboxView();
|
|
|
|
updateOutboxView();
|
|
|
|
window.setInterval( function(){
|
|
|
|
checkInbox();
|
|
|
|
checkOutbox();
|
|
|
|
}, 3000 );
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|