2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
# DurationValidator
|
|
|
|
#
|
|
|
|
# Validate the format conforms with ChronicDuration
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
#
|
|
|
|
# class ApplicationSetting < ActiveRecord::Base
|
|
|
|
# validates :default_artifacts_expire_in, presence: true, duration: true
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
class DurationValidator < ActiveModel::EachValidator
|
|
|
|
def validate_each(record, attribute, value)
|
|
|
|
ChronicDuration.parse(value)
|
|
|
|
rescue ChronicDuration::DurationParseError
|
2019-02-15 15:39:39 +05:30
|
|
|
if options[:message]
|
|
|
|
record.errors.add(:base, options[:message])
|
|
|
|
else
|
|
|
|
record.errors.add(attribute, "is not a correct duration")
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|