Class: SlackRubyBot::Client

Inherits:
Slack::RealTime::Client
  • Object
show all
Includes:
Loggable
Defined in:
lib/slack-ruby-bot/client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attrs = {}) ⇒ Client

Returns a new instance of Client.



8
9
10
11
12
# File 'lib/slack-ruby-bot/client.rb', line 8

def initialize(attrs = {})
  super(attrs)
  @aliases = attrs[:aliases]
  @send_gifs = attrs.key?(:send_gifs) ? !!attrs[:send_gifs] : true
end

Instance Attribute Details

#aliasesObject

Returns the value of attribute aliases.



5
6
7
# File 'lib/slack-ruby-bot/client.rb', line 5

def aliases
  @aliases
end

#authObject

Returns the value of attribute auth.



4
5
6
# File 'lib/slack-ruby-bot/client.rb', line 4

def auth
  @auth
end

#send_gifsObject

Returns the value of attribute send_gifs.



6
7
8
# File 'lib/slack-ruby-bot/client.rb', line 6

def send_gifs
  @send_gifs
end

Instance Method Details

#nameObject



37
38
39
# File 'lib/slack-ruby-bot/client.rb', line 37

def name
  SlackRubyBot.config.user || (auth && auth['user'])
end

#name?(name) ⇒ Boolean

Returns:

  • (Boolean)


29
30
31
# File 'lib/slack-ruby-bot/client.rb', line 29

def name?(name)
  name && names.include?(name.downcase)
end

#namesObject



14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/slack-ruby-bot/client.rb', line 14

def names
  [
    SlackRubyBot::Config.user,
    auth ? auth['user'] : nil,
    aliases,
    SlackRubyBot::Config.aliases,
    auth ? "<@#{auth['user_id'].downcase}>" : nil,
    SlackRubyBot::Config.user_id ? "<@#{SlackRubyBot::Config.user_id.downcase}>" : nil,
    auth ? "<@#{auth['user_id'].downcase}>:" : nil,
    SlackRubyBot::Config.user_id ? "<@#{SlackRubyBot::Config.user_id.downcase}>:" : nil,
    auth ? "#{auth['user']}:" : nil,
    SlackRubyBot::Config.user ? "#{SlackRubyBot::Config.user}:" : nil
  ].compact.flatten
end

#say(options = {}) ⇒ Object



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/slack-ruby-bot/client.rb', line 45

def say(options = {})
  options = options.dup
  # get GIF
  keywords = options.delete(:gif)
  # text
  text = options.delete(:text)
  gif = begin
    Giphy.random(keywords)
  rescue StandardError => e
    logger.warn "Giphy.random: #{e.message}"
    nil
  end if SlackRubyBot::Config.send_gifs? && send_gifs? && keywords
  text = [text, gif && gif.image_url.to_s].compact.join("\n")
  message({ text: text }.merge(options))
end

#send_gifs?Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/slack-ruby-bot/client.rb', line 33

def send_gifs?
  send_gifs
end

#urlObject



41
42
43
# File 'lib/slack-ruby-bot/client.rb', line 41

def url
  SlackRubyBot.config.url || (auth && auth['url'])
end