2019-05-02 18:17:27 -04: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 07:53:53 -04: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-06 21:43:09 -04:00
value = hash . delete ( 'default' )
2018-11-14 02:03:02 -05:00
2021-12-13 11:36:29 -05:00
if value . nil?
2017-08-15 22:42:08 -04:00
raise StandardError , " The site setting ` #{ setting_name } ` in ' #{ @file } ' is missing default value. "
2017-08-06 21:43:09 -04:00
end
2013-11-06 15:47:26 -05:00
2022-07-08 11:00:47 -04: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-06 21:43:09 -04: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 01:53:01 -04:00
end