53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
module Gitlab
 | 
						|
  module TimeTrackingFormatter
 | 
						|
    extend self
 | 
						|
 | 
						|
    # We may want to configure it through project settings in a future version.
 | 
						|
    CUSTOM_DAY_AND_MONTH_LENGTH = { hours_per_day: 8, days_per_month: 20 }.freeze
 | 
						|
 | 
						|
    def parse(string, keep_zero: false)
 | 
						|
      negative_time = string.start_with?('-')
 | 
						|
      string = string.delete_prefix('-')
 | 
						|
 | 
						|
      seconds =
 | 
						|
        begin
 | 
						|
          ChronicDuration.parse(
 | 
						|
            string,
 | 
						|
            CUSTOM_DAY_AND_MONTH_LENGTH.merge(default_unit: 'hours', keep_zero: keep_zero))
 | 
						|
        rescue StandardError
 | 
						|
          nil
 | 
						|
        end
 | 
						|
 | 
						|
      seconds *= -1 if seconds && negative_time
 | 
						|
      seconds
 | 
						|
    end
 | 
						|
 | 
						|
    def output(seconds)
 | 
						|
      seconds.to_i < 0 ? negative_output(seconds) : positive_output(seconds)
 | 
						|
    end
 | 
						|
 | 
						|
    private
 | 
						|
 | 
						|
    def positive_output(seconds)
 | 
						|
      ChronicDuration.output(
 | 
						|
        seconds,
 | 
						|
        CUSTOM_DAY_AND_MONTH_LENGTH.merge(
 | 
						|
          format: :short,
 | 
						|
          limit_to_hours: limit_to_hours_setting,
 | 
						|
          weeks: true))
 | 
						|
    rescue StandardError
 | 
						|
      nil
 | 
						|
    end
 | 
						|
 | 
						|
    def negative_output(seconds)
 | 
						|
      "-" + positive_output(seconds.abs)
 | 
						|
    end
 | 
						|
 | 
						|
    def limit_to_hours_setting
 | 
						|
      Gitlab::CurrentSettings.time_tracking_limit_to_hours
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |