forked from jingchan/livenote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
157 lines (126 loc) · 4.69 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
var express = require('express'),
app = express(),
server = require('http').Server(app),
io = require('socket.io')(server),
compress = require('compression')(),
sqlite3 = require('sqlite3');
app.use(compress);
app.disable('x-powered-by');
app.use(function (req, res, next) {
res.setHeader('Access-Control-Allow-Origin', "http://"+req.headers.host+':8000');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type');
next();
}
);
var livenote = {
port : process.env.OPENSHIFT_NODEJS_PORT || 8000,
ip : process.env.OPENSHIFT_NODEJS_IP || "127.0.0.1",
notes: {},
databaseLoc : (process.env.OPENSHIFT_DATA_DIR)?process.env.OPENSHIFT_DATA_DIR+"livenote.sqlite3" : "livenote.sqlite3",
db : null,
};
livenote.db = new sqlite3.Database(livenote.databaseLoc);
server.listen(livenote.port, livenote.ip);
livenote.db.run("CREATE TABLE notes (id TEXT PRIMARY KEY, note TEXT, updateTime INTEGER)",function(err){
//console.log(err);
});
io.on('connection', function (socket) {
var tout;
socket.on('init', function (data,callback) {
socket.join(data.id); //join room
socket.draftid = data.id;
var clientNumber = Object.keys(socket.adapter.rooms[data.id]).length; //count clients in room
socket.broadcast.to(data.id).emit('clientChange', {num:clientNumber});//send client numbers.
if(livenote.notes[data.id]){
//send notes from variable if available
callback({ note: livenote.notes[data.id],num:clientNumber});
} else {
//if not available, fetch from database and then send it.
livenote.db.get("SELECT id,note FROM notes WHERE id = ?",[data.id],function(err,row){
if(row){
callback({ note: decodeURIComponent(row.note),num:clientNumber});
livenote.notes[data.id] = decodeURIComponent(row.note);
} else {
callback({ note: "" ,num: clientNumber});
livenote.notes[data.id] = "";
}
});
}
});
socket.on("changeNote",function(data){
//cancel pushing to database.
clearTimeout(tout);
//send data back to clients.
socket.broadcast.to(socket.draftid).emit('changeBackNote', data);
//count diff and prepare new note.
var newval = livenote.notes[socket.draftid];
var op = data.op;
if(op.d!==null) {
newval = newval.slice(0,op.p)+newval.slice(op.p+op.d);
}
if(op.i!==null){
newval = newval.insert(op.p,op.i);
}
livenote.notes[socket.draftid] = newval;
//now push to database after 2 seconds.
tout = setTimeout(function(){
livenote.db.run("INSERT OR REPLACE INTO notes ('id', 'note','updateTime') VALUES (?,?,?)",[socket.draftid,encodeURIComponent(newval),new Date().valueOf()]);
},2000);
});
socket.on("delNote",function(data){
livenote.db.run("DELETE FROM notes WHERE id=?",[socket.draftid]);
socket.broadcast.to(socket.draftid).emit('delBackNote', {});
});
socket.on("disconnect",function(){
var room = socket.draftid;
socket.leave(room);//leave room
var clientNumber = Object.keys(socket.adapter.rooms[room]).length; //count clients in room.
if(clientNumber===0){
livenote.notes[room] = null;
} else {
socket.broadcast.to(room).emit('clientChange', {num:clientNumber});
}
});
});
app.get('/', function (req, res) {
res.sendfile(__dirname + '/index.html');
});
app.get('/favicon.ico', function (req, res) {
res.sendfile(__dirname + '/favicon.ico');
});
app.get('/terms', function (req, res) {
res.sendfile(__dirname + '/terms.html');
});
app.get('/:id', function (req, res) {
var serverId = new Date().valueOf();
if(req.params.id.length == 11){
var clientId = parseInt(req.params.id,16);
} else if (req.params.id.length == 16){
var clientId = parseInt(req.params.id.substring(5),16);
} else {
res.redirect(302,"/");
}
if(isNaN(clientId) || !/^[0-9a-z]+$/.test(clientId)){
res.redirect(302,"/");
} else if(clientId < serverId+30000 && clientId > serverId-600000){
res.sendfile(__dirname + '/notes.html');
} else if(clientId < serverId){
livenote.db.get("SELECT id,note FROM notes WHERE id = ?",req.params.id,function(err,row){
if(row){
res.sendfile(__dirname + '/notes.html');
} else {
res.redirect(302,"/");
}
});
} else {
res.redirect(302,"/");
}
});
app.use("/public", express.static(__dirname + "/public"));
String.prototype.insert = function (index, string) {
if (index > 0)
return this.substring(0, index) + string + this.substring(index, this.length);
else
return string + this;
};