52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			52 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)
 | |
|       string = string.sub(/\A-/, '')
 | |
| 
 | |
|       seconds =
 | |
|         begin
 | |
|           ChronicDuration.parse(
 | |
|             string,
 | |
|             CUSTOM_DAY_AND_MONTH_LENGTH.merge(default_unit: 'hours'))
 | |
|         rescue StandardError
 | |
|           nil
 | |
|         end
 | |
| 
 | |
|       seconds *= -1 if seconds && Regexp.last_match
 | |
|       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
 |