Sha256: 24660960b03b0ccbb2d89e00d1cccdef68b2eebcf03d0500f7e250cb1f0e71c6

Contents?: true

Size: 1.79 KB

Versions: 2

Compression:

Stored size: 1.79 KB

Contents

require 'thor'

module MilkMaid
  class CLI < Thor
    desc 'monitor_batch', "Start Monitoring a batch"
    long_desc <<-DESC

    `monitor_batch BATCH_NAME` will create a batch called BATCH_NAME
    and begin monitoring it for 30 minutes

    DESC
    option :batch_name, :type => :string, :aliases => "-b"
    option :temperature, :type => :numeric, :required => :false, :default => 30, :aliases => '-t'
    option :duration, :type => :numeric, :required => false, :default => 30, :aliases => '-d'
    option :logger, :type => :string, :required => false, :default => 'Console', :aliases => '-l'
    option :sensor, :type => :boolean, :required => false, :default => true, :aliases => '-s'
    def monitor_batch
      batch_name = options.fetch(:batch_name, default_batch_name)
      temperature = options[:temperature].to_i
      duration = options[:duration].to_i
      logger_type = options[:logger]
      sensor_type = options[:sensor]

      sensor = get_sensor(sensor_type)
      notifier = get_logger(logger_type)
      batch = ::MilkMaid::Batch.new(name: batch_name, temperature: temperature, duration: duration, notifier: notifier, sensor: sensor)

      batch.start
    rescue ::MilkMaid::SensorException => e
      puts e.message
    end

    default_task :monitor_batch

    no_commands do
      def default_batch_name
        Time.now.strftime("Batch-%Y-%m-%d %H:%M:%S")
      end

      def get_sensor(sensor_type)
        sensor_type ? ::MilkMaid::TemperatureSensor.new : ::MilkMaid::MockTemperatureSensor.new(options[:temperature].to_i - 20, options[:temperature].to_i + 30)
      end

      def get_logger(logger_type)
        case logger_type.upcase
        when 'CONSOLE'
          ::MilkMaid::ConsoleNotifier.new
        when 'WEB'
          ::MilkMaid::ParseNotifier.new
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
milk_maid-0.3.0 lib/milk_maid/cli.rb
milk_maid-0.2.8 lib/milk_maid/cli.rb