Skip to content

Commit 5e877a5

Browse files
committed
Adding changes for entering and leaving room from @pboos
1 parent 3a3cf72 commit 5e877a5

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

src/irc.coffee

+19-14
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,19 @@ class IrcBot extends Adapter
4848

4949
self.receive new LeaveMessage(null)
5050

51+
createUser: (channel, from) ->
52+
user = @userForName from
53+
unless user?
54+
id = (new Date().getTime() / 1000).toString().replace('.','')
55+
user = @userForId id
56+
user.name = from
57+
58+
if channel.match(/^[&#]/)
59+
user.room = channel
60+
else
61+
user.room = null
62+
user
63+
5164
kick: (channel, client, message) ->
5265
@bot.emit 'raw',
5366
command: 'KICK'
@@ -103,17 +116,10 @@ class IrcBot extends Adapter
103116
bot.addListener 'message', (from, to, message) ->
104117
console.log "From #{from} to #{to}: #{message}"
105118

106-
user = self.userForName from
107-
unless user?
108-
id = (new Date().getTime() / 1000).toString().replace('.','')
109-
user = self.userForId id
110-
user.name = from
111-
112-
if to.match(/^[&#]/)
113-
user.room = to
119+
user = self.createUser to, from
120+
if user.room
114121
console.log "#{to} <#{from}> #{message}"
115122
else
116-
user.room = null
117123
console.log "msg <#{from}> #{message}"
118124

119125
self.receive new TextMessage(user, message)
@@ -127,14 +133,14 @@ class IrcBot extends Adapter
127133
bot.addListener 'join', (channel, who) ->
128134
console.log('%s has joined %s', who, channel)
129135

130-
user = self.userForName who
131-
self.receive new EnterMessage(user)
136+
user = self.createUser channel, who
137+
self.receive new Robot.EnterMessage(user)
132138

133139
bot.addListener 'part', (channel, who, reason) ->
134140
console.log('%s has left %s: %s', who, channel, reason)
135141

136-
user = self.userForName who
137-
self.receive new LeaveMessage(user)
142+
user = self.createUser channel, who
143+
self.receive new Robot.LeaveMessage(user)
138144

139145
bot.addListener 'kick', (channel, who, _by, reason) ->
140146
console.log('%s was kicked from %s by %s: %s', who, channel, _by, reason)
@@ -153,4 +159,3 @@ class IrcResponse extends Response
153159

154160
exports.use = (robot) ->
155161
new IrcBot robot
156-

0 commit comments

Comments
 (0)