Class: Discordrb::Events::UserBanEventHandler

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

Overview

Event handler for UserBanEvent

Direct Known Subclasses

UserUnbanEventHandler

Instance Method Summary collapse

Methods inherited from EventHandler

#after_call, #call, #initialize, #match, #matches_all

Constructor Details

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

Instance Method Details

#matches?(event) ⇒ Boolean

Returns:

  • (Boolean)


24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/discordrb/events/bans.rb', line 24

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

  [
    matches_all(@attributes[:user], event.user) do |a, e|
      case a
      when String
        a == e.name
      when Integer
        a == e.id
      when :bot
        e.current_bot?
      else
        a == e
      end
    end,
    matches_all(@attributes[:server], event.server) do |a, e|
      a == case a
           when String
             e.name
           when Integer
             e.id
           else
             e
           end
    end
  ].reduce(true, &:&)
end