Sha256: be528606c077a6b2e7090ef2d98142fb112cd185044aa7c60b14da69efc0b6f9

Contents?: true

Size: 1.26 KB

Versions: 6

Compression:

Stored size: 1.26 KB

Contents

require "montrose/rule/nth_day_matcher"

module Montrose
  module Rule
    class NthDayOfMonth
      include Montrose::Rule

      def self.apply_options?(opts)
        opts[:every] == :month && opts[:day].is_a?(Hash)
      end

      def self.apply_options(opts)
        opts[:day]
      end

      # Initializes rule
      #
      # @param [Hash] days - valid days of week to month occurrence pairs
      #
      def initialize(days)
        @days = days
      end

      def include?(time)
        @days.key?(time.wday) && nth_day?(time)
      end

      private

      def nth_day?(time)
        expected_occurrences = @days[time.wday]
        nth_day = NthDayMatcher.new(time.wday, MonthDay.new(time))
        expected_occurrences.any? { |n| nth_day.matches?(n) }
      end

      class MonthDay
        def initialize(time)
          @time = time
        end

        def nth_day
          @time.mday
        end

        def first_wday
          @time.beginning_of_month.wday
        end

        def total_days
          days_in_month(@time)
        end

        private

        # Get the days in the month for +time
        def days_in_month(time)
          date = Date.new(time.year, time.month, 1)
          ((date >> 1) - date).to_i
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
montrose-0.3.0 lib/montrose/rule/nth_day_of_month.rb
montrose-0.2.2 lib/montrose/rule/nth_day_of_month.rb
montrose-0.2.1 lib/montrose/rule/nth_day_of_month.rb
montrose-0.2.0 lib/montrose/rule/nth_day_of_month.rb
montrose-0.1.1 lib/montrose/rule/nth_day_of_month.rb
montrose-0.1.0 lib/montrose/rule/nth_day_of_month.rb