2019-05-03 08:17:27 +10:00
# frozen_string_literal: true
2013-11-06 15:47:26 -05:00
module SiteSettings ; end
class SiteSettings :: YamlLoader
def initialize ( file )
@file = file
end
def load
yaml = YAML . load_file ( @file )
2015-04-18 21:53:53 +10:00
yaml . each_key do | category |
2013-11-06 15:47:26 -05:00
yaml [ category ] . each do | setting_name , hash |
if hash . is_a? ( Hash )
# Get default value for the site setting:
2017-08-07 10:43:09 +09:00
value = hash . delete ( 'default' )
2018-11-14 15:03:02 +08:00
2021-12-13 17:36:29 +01:00
if value . nil?
2017-08-16 11:42:08 +09:00
raise StandardError , " The site setting ` #{ setting_name } ` in ' #{ @file } ' is missing default value. "
2017-08-07 10:43:09 +09:00
end
2013-11-06 15:47:26 -05:00
2022-07-08 12:00:47 -03:00
if hash . values_at ( 'min' , 'max' ) . any? && hash [ 'validator' ] . present?
raise StandardError , " The site setting ` #{ setting_name } ` in ' #{ @file } ' will have it's min/max validation ignored because there is a validator also specified. "
end
2017-08-07 10:43:09 +09:00
yield category , setting_name , value , hash . deep_symbolize_keys!
2013-11-06 15:47:26 -05:00
else
# Simplest case. site_setting_name: 'default value'
yield category , setting_name , hash , { }
end
end
end
end
2014-10-03 15:53:01 +10:00
end