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) puts 'Type "exit" or "quit" to end the session.' loop do print "#{robot.name} > " input = $stdin.gets.chomp.strip break if input == "exit" || input == "quit" robot.receive(build_message(robot, 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] An array of strings to output. # @return [void] def send_messages(target, strings) puts strings end # Adds a blank line for a nice looking exit. # @return [void] def shut_down puts end private def build_message(robot, 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