Class: Discordrb::Events::ChannelUpdateEventHandler

Inherits:
EventHandler
  • Object
show all
Defined in:
lib/discordrb/events/channel_update.rb

Overview

Event handler for ChannelUpdateEvent

Instance Method Summary collapse

Methods inherited from EventHandler

#initialize, #match, #matches_all

Constructor Details

This class inherits a constructor from Discordrb::Events::EventHandler

Instance Method Details

#matches?(event) ⇒ Boolean

Returns:

  • (Boolean)


30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/discordrb/events/channel_update.rb', line 30

def matches?(event)
  # Check for the proper event type
  return false unless event.is_a? ChannelUpdateEvent

  [
    matches_all(@attributes[:type], event.type) do |a, e|
      if a.is_a? String
        a == e.name
      else
        a == e
      end
    end,
    matches_all(@attributes[:name], event.name) do |a, e|
      if a.is_a? String
        a == e.to_s
      else
        a == e
      end
    end
  ].reduce(true, &:&)
end