class SlackSmartBot

  # help: ----------------------------------------------
  # help: `Bye Bot`
  # help: `Bye Smart`
  # help: `Bye NAME_OF_THE_BOT`
  # help:    Bot stops listening to you
  # help:    Also apart of Bye you can use _Bæ, Good Bye, Adiós, Ciao, Bless, Bless Bless, Adeu_
  # help:
  def bye_bot(dest, from, display_name)
    if @status == :on
      save_stats(__method__)
      bye = ["Bye", "", "Good Bye", "Adiós", "Ciao", "Bless", "Bless bless", "Adeu"].sample
      respond "#{bye} #{display_name}", dest

      if @listening.key?(from)
        if Thread.current[:on_thread]
          @listening[from].delete(Thread.current[:thread_ts])
        else
          @listening[from].delete(dest)
        end
        @listening.delete(from) if @listening[from].empty?
      end
    end
  end
end