summaryrefslogtreecommitdiffstats
path: root/webchat/hello_web.js
diff options
context:
space:
mode:
authortv <tv@nomic.retiolum>2013-11-06 18:31:00 +0100
committertv <tv@nomic.retiolum>2013-11-06 18:31:00 +0100
commitec217561231481671be9e33ce8270ca2b7041a9c (patch)
treefd954d47e94f85b6cddb5212f16637356ea0f687 /webchat/hello_web.js
parent20c7db3f85c066fc6c2abbf0ff7af47bdfdaadc9 (diff)
parentb8035a82c362d24c2adf464a1c99fcc098b743c4 (diff)
Merge branch 'master' of https://github.com/krebscode/painload
Diffstat (limited to 'webchat/hello_web.js')
-rw-r--r--webchat/hello_web.js24
1 files changed, 15 insertions, 9 deletions
diff --git a/webchat/hello_web.js b/webchat/hello_web.js
index aa580652..6f658901 100644
--- a/webchat/hello_web.js
+++ b/webchat/hello_web.js
@@ -47,18 +47,24 @@ irc_client.on('message#krebs', function(from, message) {
var echo = sockjs.createServer();
echo.on('connection', function(conn) {
- var name = '['+conn.remoteAddress+':'+conn.remotePort+']';
+ var origin = '['+conn.remoteAddress+':'+conn.remotePort+']';
Clients.push(conn);
- Clients.broadcast({from: 'system', message: name + ' has joined'})
irc_client.say("#krebs", name + ' has joined');
-conn.write(JSON.stringify({from: 'system', message: 'hello'}))
- conn.on('data', function(message) {
- console.log('data:',message);
+ Clients.broadcast({from: 'system', message: origin + ' has joined'})
+ conn.write(JSON.stringify({from: 'system', message: 'hello'}))
+ conn.on('data', function(data) {
+ console.log('data:',data);
try {
- var object = JSON.parse(message);
- object.from = name
+ var object = JSON.parse(data);
+ if (/^\/nick\s+(.+)$/.test(object.message)) {
+ object.from = origin;
+ } else if (typeof object.nick === 'string') {
+ object.from = object.nick;
+ } else {
+ object.from = origin;
+ };
console.log(object.message);
- irc_client.say("#krebs", name + ' → ' + object.message);
+ irc_client.say("#krebs", object.from + ' → ' + object.message);
Clients.broadcast(object);
} catch (error) {
@@ -67,8 +73,8 @@ conn.write(JSON.stringify({from: 'system', message: 'hello'}))
});
conn.on('close', function() {
Clients.splice(Clients.indexOf(conn));
- Clients.broadcast({from: 'system', message: name + ' has quit'})
irc_client.say("#krebs", name + ' has quit');
+ Clients.broadcast({from: 'system', message: origin + ' has quit'})
});
});