module EISCP::Parser::HumanReadableParser

This module parses a human readable command and returns a Message object

Public Class Methods

parse(string) click to toggle source
# File lib/eiscp/parser/human_readable_parser.rb, line 10
def self.parse(string)
  array = string.split(' ')

  parsed_zone = if Dictionary.zones.include? array[0]
                  array.shift
                else
                  Dictionary::DEFAULT_ZONE
                end

  command_name = array.shift
  value_name = array.join(' ')
  command = Dictionary.command_name_to_command(command_name, parsed_zone)
  value = Dictionary.command_value_name_to_value(command, value_name)
  return nil if command.nil? || value.nil?

  Message.new(command: command, value: value)
end