-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsmtp.js
64 lines (53 loc) · 1.66 KB
/
smtp.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
/**
* Created by JetBrains WebStorm.
* User: luigi.byun(@zziuni)
* Date: 12. 3. 31.
* Time: 오전 12:45
*/
var http = require( 'http' )
, fs = require( 'fs' )
, path = require( 'path' )
, sio = require( 'socket.io' );
var io;
exports.init = function( app ){
io = sio.listen( app ) ;
io.configure( function(){
io.enable( 'browser client etag' );
io.set( 'log level', 2 );
io.set( 'transports', [
'websocket'
, 'flashsocket'
, 'htmlfile'
, 'xhr-polling'
, 'jsonp-polling'
] );
} );
var speakerSocket;
io.of( '/speaker' ).on( 'connection', function( speaker ){
console.log( '=> A speaker connected..' );
speaker.on( 'disconnect', function(){
console.log( '=> A speaker disconnect.' );
} );
speaker.on( 'good slide', function( data ){
console.log( '=> spearker good slid' );
speaker.volatile.emit( 'create ball', {} );
} );
speakerSocket = speaker;
} );
io.sockets.on( 'connection', function( audience ){
console.log( '-> A phone connected..' );
audience.on( 'disconnect', function(){
console.log( '-> A phone disconnect.' );
} );
audience.on( 'message', function( msg ){
console.info( 'from phone : ' + msg );
audience.send( 'server: ok.' );
} );
audience.on( 'good slide', function( data ){
if(speakerSocket){
speakerSocket.volatile.emit( 'create ball', {} );
}
audience.send( 'server: think you' );
} );
} );
};