Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
2
2015-12-uni-ffm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CmS
2015-12-uni-ffm
Commits
c1a7e83d
Commit
c1a7e83d
authored
9 years ago
by
Hakim El Hattab
Browse files
Options
Downloads
Patches
Plain Diff
multiplexing work with socket.io 1.0+ #1281 #1276
parent
b16bc6fc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
plugin/multiplex/client.js
+1
-1
1 addition, 1 deletion
plugin/multiplex/client.js
plugin/multiplex/index.js
+14
-14
14 additions, 14 deletions
plugin/multiplex/index.js
plugin/multiplex/master.js
+22
-42
22 additions, 42 deletions
plugin/multiplex/master.js
with
37 additions
and
57 deletions
plugin/multiplex/client.js
+
1
−
1
View file @
c1a7e83d
...
...
@@ -8,6 +8,6 @@
if
(
data
.
socketId
!==
socketId
)
{
return
;
}
if
(
window
.
location
.
host
===
'
localhost:1947
'
)
return
;
Reveal
.
s
lide
(
data
.
indexh
,
data
.
indexv
,
data
.
indexf
,
'
remo
te
'
);
Reveal
.
s
etState
(
data
.
sta
te
);
});
}());
This diff is collapsed.
Click to expand it.
plugin/multiplex/index.js
+
14
−
14
View file @
c1a7e83d
var
http
=
require
(
'
http
'
);
var
express
=
require
(
'
express
'
);
var
fs
=
require
(
'
fs
'
);
var
io
=
require
(
'
socket.io
'
);
var
crypto
=
require
(
'
crypto
'
);
var
app
=
express
.
createServer
();
var
staticDir
=
express
.
static
;
var
app
=
express
();
var
staticDir
=
express
.
static
;
var
server
=
http
.
createServer
(
app
);
io
=
io
.
listen
(
app
);
io
=
io
(
server
);
var
opts
=
{
port
:
process
.
env
.
PORT
||
1948
,
baseDir
:
__dirname
+
'
/../../
'
};
io
.
sockets
.
on
(
'
connection
'
,
function
(
socket
)
{
socket
.
on
(
'
slid
echanged
'
,
function
(
slideD
ata
)
{
if
(
typeof
slideD
ata
.
secret
==
'
undefined
'
||
slideD
ata
.
secret
==
null
||
slideD
ata
.
secret
===
''
)
return
;
if
(
createHash
(
slideD
ata
.
secret
)
===
slideD
ata
.
socketId
)
{
slideD
ata
.
secret
=
null
;
socket
.
broadcast
.
emit
(
slideD
ata
.
socketId
,
slideD
ata
);
io
.
on
(
'
connection
'
,
function
(
socket
)
{
socket
.
on
(
'
multiplex-stat
echanged
'
,
function
(
d
ata
)
{
if
(
typeof
d
ata
.
secret
==
'
undefined
'
||
d
ata
.
secret
==
null
||
d
ata
.
secret
===
''
)
return
;
if
(
createHash
(
d
ata
.
secret
)
===
d
ata
.
socketId
)
{
d
ata
.
secret
=
null
;
socket
.
broadcast
.
emit
(
d
ata
.
socketId
,
d
ata
);
};
});
});
app
.
configure
(
function
()
{
[
'
css
'
,
'
js
'
,
'
plugin
'
,
'
lib
'
].
forEach
(
function
(
dir
)
{
app
.
use
(
'
/
'
+
dir
,
staticDir
(
opts
.
baseDir
+
dir
));
});
[
'
css
'
,
'
js
'
,
'
plugin
'
,
'
lib
'
].
forEach
(
function
(
dir
)
{
app
.
use
(
'
/
'
+
dir
,
staticDir
(
opts
.
baseDir
+
dir
));
});
app
.
get
(
"
/
"
,
function
(
req
,
res
)
{
...
...
@@ -47,7 +47,7 @@ var createHash = function(secret) {
};
// Actually listen
app
.
listen
(
opts
.
port
||
null
);
server
.
listen
(
opts
.
port
||
null
);
var
brown
=
'
\
033[33m
'
,
green
=
'
\
033[32m
'
,
...
...
This diff is collapsed.
Click to expand it.
plugin/multiplex/master.js
+
22
−
42
View file @
c1a7e83d
(
function
()
{
// Don't emit events from inside of notes windows
if
(
window
.
location
.
search
.
match
(
/receiver/gi
)
)
{
return
;
}
var
multiplex
=
Reveal
.
getConfig
().
multiplex
;
var
socket
=
io
.
connect
(
multiplex
.
url
);
var
notify
=
function
(
slideElement
,
indexh
,
indexv
,
origin
)
{
if
(
typeof
origin
===
'
undefined
'
&&
origin
!==
'
remote
'
)
{
var
nextindexh
;
var
nextindexv
;
var
fragmentindex
=
Reveal
.
getIndices
().
f
;
if
(
typeof
fragmentindex
==
'
undefined
'
)
{
fragmentindex
=
0
;
}
if
(
slideElement
.
nextElementSibling
&&
slideElement
.
parentNode
.
nodeName
==
'
SECTION
'
)
{
nextindexh
=
indexh
;
nextindexv
=
indexv
+
1
;
}
else
{
nextindexh
=
indexh
+
1
;
nextindexv
=
0
;
}
var
slideData
=
{
indexh
:
indexh
,
indexv
:
indexv
,
indexf
:
fragmentindex
,
nextindexh
:
nextindexh
,
nextindexv
:
nextindexv
,
secret
:
multiplex
.
secret
,
socketId
:
multiplex
.
id
};
socket
.
emit
(
'
slidechanged
'
,
slideData
);
}
}
Reveal
.
addEventListener
(
'
slidechanged
'
,
function
(
event
)
{
notify
(
event
.
currentSlide
,
event
.
indexh
,
event
.
indexv
,
event
.
origin
);
}
);
var
fragmentNotify
=
function
(
event
)
{
notify
(
Reveal
.
getCurrentSlide
(),
Reveal
.
getIndices
().
h
,
Reveal
.
getIndices
().
v
,
event
.
origin
);
var
socket
=
io
.
connect
(
multiplex
.
url
);
function
post
()
{
var
messageData
=
{
state
:
Reveal
.
getState
(),
secret
:
multiplex
.
secret
,
socketId
:
multiplex
.
id
};
socket
.
emit
(
'
multiplex-statechanged
'
,
messageData
);
};
Reveal
.
addEventListener
(
'
fragmentshown
'
,
fragmentNotify
);
Reveal
.
addEventListener
(
'
fragmenthidden
'
,
fragmentNotify
);
// Monitor events that trigger a change in state
Reveal
.
addEventListener
(
'
slidechanged
'
,
post
);
Reveal
.
addEventListener
(
'
fragmentshown
'
,
post
);
Reveal
.
addEventListener
(
'
fragmenthidden
'
,
post
);
Reveal
.
addEventListener
(
'
overviewhidden
'
,
post
);
Reveal
.
addEventListener
(
'
overviewshown
'
,
post
);
Reveal
.
addEventListener
(
'
paused
'
,
post
);
Reveal
.
addEventListener
(
'
resumed
'
,
post
);
}());
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment