Sha256: 5d1fb7ce0e2cb57b6a511466ed1e548e1c91f0a0da1a47ea59f54a6ac030fb54
Contents?: true
Size: 1.98 KB
Versions: 1
Compression:
Stored size: 1.98 KB
Contents
class SlackSmartBot # help: ---------------------------------------------- # help: `see shortcuts` # help: `see sc` # help: It will display the shortcuts stored for the user and for :all # help: <https://github.com/MarioRuiz/slack-smart-bot#shortcuts|more info> # help: def see_shortcuts(dest, user, typem) save_stats(__method__) from = user.name if has_access?(__method__, user) unless typem == :on_extended msg = "" if @shortcuts[:all].keys.size > 0 or @shortcuts_global[:all].keys.size > 0 msg = "*Available shortcuts for all:*\n" if @shortcuts[:all].keys.size > 0 @shortcuts[:all].each { |name, value| msg += " _#{name}: #{value}_\n" } end if @shortcuts_global[:all].keys.size > 0 @shortcuts_global[:all].each { |name, value| msg += " _#{name} (global): #{value}_\n" } end respond msg, dest end msg2 = '' if @shortcuts.keys.include?(from) and @shortcuts[from].keys.size > 0 new_hash = @shortcuts[from].dup @shortcuts[:all].keys.each { |k| new_hash.delete(k) } if new_hash.keys.size > 0 msg2 = "*Available shortcuts for #{from}:*\n" new_hash.each { |name, value| msg2 += " _#{name}: #{value}_\n" } end end if @shortcuts_global.keys.include?(from) and @shortcuts_global[from].keys.size > 0 new_hash = @shortcuts_global[from].dup @shortcuts_global[:all].keys.each { |k| new_hash.delete(k) } if new_hash.keys.size > 0 msg2 = "*Available shortcuts for #{from}:*\n" if msg2 == '' new_hash.each { |name, value| msg2 += " _#{name} (global): #{value}_\n" } end end respond msg2 unless msg2 == '' respond "No shortcuts found" if (msg + msg2) == "" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
slack-smart-bot-1.10.0 | lib/slack/smart-bot/commands/on_bot/see_shortcuts.rb |