-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
130 lines (109 loc) · 3.83 KB
/
app.js
File metadata and controls
130 lines (109 loc) · 3.83 KB
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
var express = require('express')
, routes = require('./routes');
var app = module.exports = express.createServer();
var io = require('socket.io').listen(app);
var ua = require('./useragent');
// Configuration
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(express.cookieParser());
app.use(express.session({ secret: 'your secret here' }));
app.use(app.router);
app.use(express.static(__dirname + '/public'));
});
app.configure('development', function(){
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
app.configure('production', function(){
app.use(express.errorHandler());
});
app.get('/', function(req, res) {
res.render('index.jade', {locals: {title: 'Activity Feeds' }});
//res.sendfile(__dirname + '/feed.html');
});
var devices = {};
var feed = new Array();
io.configure(function (){
io.set('authorization', function (handshakeData, callback) {
console.log("connection User-Agent:"+handshakeData.headers['user-agent']);
handshakeData['parsed_user_agent'] = ua.parse(handshakeData.headers['user-agent']);
console.log('conn query:'+JSON.stringify(handshakeData.query));
callback(null,true);
/*
// findDatabyip is an async example function
findDatabyIP(handshakeData.address.address, function (err, data) {
if (err) return callback(err);
if (data.authorized) {
handshakeData.foo = 'bar';
for(var prop in data) handshakeData[prop] = data[prop];
callback(null, true);
} else {
callback(null, false);
}
});
*/
});
});
var fs = require('fs');
var walk = function(dir, done) {
var results = [];
fs.readdir(dir, function(err, list) {
if (err) return done(err);
var pending = list.length;
if (!pending) return done(null, results);
list.forEach(function(file) {
file = dir + '/' + file;
fs.stat(file, function(err, stat) {
if (stat && stat.isDirectory()) {
// recurse
walk(file, function(err, res) {
results = results.concat(res);
if (!--pending) done(null, results);
});
} else {
results.push(file);
if (!--pending) done(null, results);
}
});
});
});
};
io.sockets.on('connection', function (socket) {
socket.on('sendfolderaction', function (feeditem) {
var msg = { user: socket.username, feeditem: feeditem };
feed.push(msg);
io.sockets.emit('updatefeed', msg);
});
socket.on('adddevice', function(token){
var a = socket.handshake['parsed_user_agent'];
token = token+"'s "+a.platform.name+' '+a.browser.name+' '+a.engine.name;
socket.username = token;
devices[token] = '/'+a.platform.name+'_'+a.browser.name+'_'+a.engine.name+'.png';
// tell the client about stuff they might have missed
if ( feed.length > 10 ) {
// only last 10 feed-items are important
feed.splice(1,feed.length-10);
}
feed.push({user:socket.username, feeditem:'connected!'});
socket.emit('initialfeed', feed);
io.sockets.emit('updatedevices', devices);
walk(process.env.HOME+'/YouSendIt/pics/diwali 2011', function(err, filelist) {
if (err) throw err;
//console.log(filelist);
socket.emit('initialfilelist', filelist);
});
});
socket.on('disconnect', function(){
// remove the username from global usernames list
delete devices[socket.username];
var msg = {user:socket.username, feeditem:'disconnected!'};
feed.push(msg);
io.sockets.emit('updatefeed', msg);
io.sockets.emit('updatedevices', devices);
});
});
app.listen(3000);
console.log("Express server listening on port %d in %s mode", app.address().port, app.settings.env);