X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Flinkbot.rb;h=360735e918803ce6cb1cb6170f04c00710c9fc19;hb=9a66dcadede5cadc00b4fde344f75a9bd78220d7;hp=f36aa9197ae0915112ea1764fa3c8052575b9b5b;hpb=e57295d1ff47aacc88257ee1a1f0c615d63d886b;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/linkbot.rb b/data/rbot/plugins/linkbot.rb index f36aa919..360735e9 100644 --- a/data/rbot/plugins/linkbot.rb +++ b/data/rbot/plugins/linkbot.rb @@ -45,11 +45,10 @@ class LinkBot < Plugin end # Main method - def listen(m) + def message(m) linkbots = @bot.config['linkbot.nicks'] return if linkbots.empty? return unless linkbots.include?(m.sourcenick) - return unless m.kind_of?(PrivMessage) # Now we know that _m_ is a PRIVMSG from a linkbot. Let's split it # in nick, network, message if @message_patterns.any? {|p| m.message =~ p} @@ -62,23 +61,12 @@ class LinkBot < Plugin # person's highlight new_nick.gsub!(/[#{Bold}#{Underline}#{Reverse}#{Italic}#{NormalText}]/, '') debug "#{m.sourcenick} reports that #{new_nick} said #{message.inspect} on #{network}" - # One way to pass the new message back to the bot is to create a PrivMessage - # and delegate it to the plugins - new_m = PrivMessage.new(@bot, m.server, m.server.user(new_nick), m.target, message) - @bot.plugins.delegate "listen", new_m - @bot.plugins.privmsg(new_m) if new_m.address? - - ## Another way is to create a data Hash with source, target and message keys - ## and then letting the bot client :privmsg handler handle it - ## Note that this will also create irclog entries for the fake PRIVMSG - ## TODO we could probably add a :no_irc_log entry to the data passed to the - ## @bot.client handlers, or something like that - # data = { - # :source => m.server.user(new_nick) - # :target => m.target - # :message => message - # } - # @bot.client[:privmsg].call(data) + begin + # Pass the new message back to the bot + fake_message(message, :from => m, :source => m.server.user(new_nick)) + rescue RecurseTooDeep => e + error e + end end end end