Skip to content

Commit 378fc4c

Browse files
committed
Considerations for private bots
If I run my bot in a public place, like freenode, I want to be able to control exactly what rooms it joins. Just walking into any room someone invites him into and talking with strangers is bad :)
1 parent 9468c79 commit 378fc4c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/irc.coffee

+6-1
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,9 @@ class IrcBot extends Adapter
187187

188188
bot.addListener 'pm', (nick, message) ->
189189
console.log('Got private message from %s: %s', nick, message)
190+
191+
if process.env.HUBOT_IRC_PRIVATE
192+
return
190193

191194
nameLength = options.nick.length
192195
if message.slice(0, nameLength).toLowerCase() != options.nick.toLowerCase()
@@ -209,7 +212,9 @@ class IrcBot extends Adapter
209212

210213
bot.addListener 'invite', (channel, from) ->
211214
console.log('%s invite you to join %s', from, channel)
212-
bot.join channel
215+
216+
if not process.env.HUBOT_IRC_PRIVATE
217+
bot.join channel
213218

214219
@bot = bot
215220

0 commit comments

Comments
 (0)