debian-mirror-gitlab/lib/gitlab/ci/build/artifacts/expire_in_parser.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.2 KiB
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
module Build
module Artifacts
class ExpireInParser
def self.validate_duration(value)
new(value).validate_duration
end
def initialize(value)
@value = value
end
def validate_duration
return true if never?
2022-04-04 11:22:00 +05:30
cached_parse
2020-10-24 23:57:45 +05:30
end
def seconds_from_now
parse&.seconds&.from_now
end
private
attr_reader :value
2022-04-04 11:22:00 +05:30
def cached_parse
return validation_cache[value] if validation_cache.key?(value)
validation_cache[value] = safe_parse
end
def safe_parse
parse
rescue ChronicDuration::DurationParseError
false
end
2020-10-24 23:57:45 +05:30
def parse
return if never?
ChronicDuration.parse(value)
end
2022-04-04 11:22:00 +05:30
def validation_cache
Gitlab::SafeRequestStore[:ci_expire_in_parser_cache] ||= {}
end
2020-10-24 23:57:45 +05:30
def never?
value.to_s.casecmp('never') == 0
end
end
end
end
end
end