2019-05-02 17:17:27 -05:00
# frozen_string_literal: true
2013-11-06 14:47:26 -06:00
module SiteSettings ; end
class SiteSettings :: YamlLoader
def initialize ( file )
@file = file
end
def load
yaml = YAML . load_file ( @file )
2015-04-18 06:53:53 -05:00
yaml . each_key do | category |
2013-11-06 14:47:26 -06:00
yaml [ category ] . each do | setting_name , hash |
if hash . is_a? ( Hash )
# Get default value for the site setting:
2017-08-06 20:43:09 -05:00
value = hash . delete ( 'default' )
2018-11-14 01:03:02 -06:00
2021-12-13 10:36:29 -06:00
if value . nil?
2017-08-15 21:42:08 -05:00
raise StandardError , " The site setting ` #{ setting_name } ` in ' #{ @file } ' is missing default value. "
2017-08-06 20:43:09 -05:00
end
2013-11-06 14:47:26 -06:00
2022-07-08 10:00:47 -05: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 20:43:09 -05:00
yield category , setting_name , value , hash . deep_symbolize_keys!
2013-11-06 14:47:26 -06:00
else
# Simplest case. site_setting_name: 'default value'
yield category , setting_name , hash , { }
end
end
end
end
2014-10-03 00:53:01 -05:00
end