Method: Rodbot::Relay.say

Defined in:
lib/rodbot/relay.rb

.say(text, on: nil, room: nil) ⇒ Boolean

Post a message via one or more relay services

By default, messages are posted via all relay services which have “say true” configured in their corresponding config blocks. To further narrow it to exactly one relay service, use the on argument.

Parameters:

  • text (String)

    message to post

  • on (Symbol, nil) (defaults to: nil)

    post via this relay service only

  • room (String, nil) (defaults to: nil)

    post to this room (aka: channel, group etc)

Returns:

  • (Boolean)

    false if at least one relay refused the connection or true otherwise

[View source]

26
27
28
29
30
31
32
# File 'lib/rodbot/relay.rb', line 26

def say(text, on: nil, room: nil)
  Rodbot.config(:plugin).select do |extension, config|
    config[:say] == true && (!on || extension == on)
  end.keys.inject(true) do |success, extension|
    write(Rodbot::Message.new(text, room: room).dump, extension) && success
  end
end