Sha256: 85da0f42cbda0f77f83b3bbf8cd00935588bb97e444765f008dc8fbbc0efa245

Contents?: true

Size: 1.1 KB

Versions: 6

Compression:

Stored size: 1.1 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
          ::Montrose::Utils.days_in_month(@time.month, @time.year)
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
montrose-0.6.0 lib/montrose/rule/nth_day_of_month.rb
montrose-0.5.0 lib/montrose/rule/nth_day_of_month.rb
montrose-0.4.3 lib/montrose/rule/nth_day_of_month.rb
montrose-0.4.2 lib/montrose/rule/nth_day_of_month.rb
montrose-0.4.1 lib/montrose/rule/nth_day_of_month.rb
montrose-0.4.0 lib/montrose/rule/nth_day_of_month.rb