Sha256: ef3d45705d24bf3051a230f4cb082d5802511d384c296c44b496f02589f550d4

Contents?: true

Size: 1.65 KB

Versions: 5

Compression:

Stored size: 1.65 KB

Contents

module Lita
  module Adapters
    # An adapter that runs Lita in a UNIX shell.
    class Shell < Adapter
      # Creates a "Shell User" and then loops a prompt and input, passing the
      # incoming messages to the robot.
      # @return [void]
      def run
        user = User.create(1, name: "Shell User")
        source = Source.new(user: user)
        puts 'Type "exit" or "quit" to end the session.'
        robot.trigger(:connected)

        loop do
          print "#{robot.name} > "
          input = $stdin.gets
          if input.nil?
            puts
            break
          end
          input = input.chomp.strip
          break if input == "exit" || input == "quit"
          robot.receive(build_message(input, source))
        end
      end

      # Outputs outgoing messages to the shell.
      # @param target [Lita::Source] Unused, since there is only one user in the
      #   shell environment.
      # @param strings [Array<String>] An array of strings to output.
      # @return [void]
      def send_messages(target, strings)
        strings = Array(strings)
        strings.reject! { |string| string.empty? }
        unless RbConfig::CONFIG["host_os"] =~ /mswin|mingw/ || !$stdout.tty?
          strings.map! { |string| "\e[32m#{string}\e[0m" }
        end
        puts strings
      end

      # Adds a blank line for a nice looking exit.
      # @return [void]
      def shut_down
        puts
      end

      private

      def build_message(input, source)
        message = Message.new(robot, input, source)
        message.command! if Lita.config.adapter.private_chat
        message
      end
    end

    Lita.register_adapter(:shell, Shell)
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
lita-2.7.2 lib/lita/adapters/shell.rb
lita-2.7.1 lib/lita/adapters/shell.rb
lita-2.7.0 lib/lita/adapters/shell.rb
lita-2.6.0 lib/lita/adapters/shell.rb
lita-2.5.0 lib/lita/adapters/shell.rb