Class: Discordrb::Events::PlayingEventHandler

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

Overview

Event handler for PlayingEvent

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)


89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/discordrb/events/presence.rb', line 89

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

  [
    matches_all(@attributes[:from], event.user) do |a, e|
      a == if a.is_a? String
             e.name
           elsif a.is_a? Integer
             e.id
           else
             e
           end
    end,
    matches_all(@attributes[:game], event.game) do |a, e|
      a == e
    end,
    matches_all(@attributes[:type], event.type) do |a, e|
      a == e
    end
  ].reduce(true, &:&)
end