Skip to content
Snippets Groups Projects
Select Git revision
  • 9a9024843b4751f2386c41ba2b7e41f1ef0ae2c6
  • v2018.2.x default protected
  • 0x4A6F-rpi4
  • 0x4A6F-master
  • master
  • v2018.2.2-ffs
  • v2016.2.4-batmanbug
  • radv-filterd
  • v2016.2.x
  • hoodselector
  • v2016.1.x
  • babel
  • v2015.1.x
  • 2014.4.x
  • 2014.3.x
  • v2018.2.2-ffs0.1
  • v2018.2.1-ffs0.1
  • v2018.2.1
  • v2018.2-ffs0.1
  • v2018.2
  • v2018.1.4
  • v2018.1.3
  • v2018.1.2
  • v2018.1.1
  • v2018.1
  • v2017.1.8
  • v2017.1.7
  • v2017.1.6
  • v2017.1.5
  • v2017.1.4
  • v2017.1.3
  • v2017.1.2
  • v2016.2.7
  • v2017.1.1
  • v2017.1
35 results

check_site.lua

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    check_site.lua 2.82 KiB
    need_string(in_site({'site_code'}))
    need_string(in_site({'site_name'}))
    
    -- this_domain() returns nil when multidomain support is disabled
    if this_domain() then
    	function need_domain_name(path)
    		need_string(path)
    		need(path, function(default_domain)
    			local f = io.open(os.getenv('IPKG_INSTROOT') .. '/lib/gluon/domains/' .. default_domain .. '.json')
    			if not f then return false end
    			f:close()
    			return true
    		end, nil, 'be a valid domain name')
    	end
    	need_domain_name(in_site({'default_domain'}))
    
    	need_table(in_domain({'domain_names'}), function(domain)
    		need_alphanumeric_key(domain)
    		need_string(domain)
    	end)
    	need_string(in_domain({'domain_names', this_domain()}))
    end
    
    need_string_match(in_domain({'domain_seed'}), '^' .. ('%x'):rep(64) .. '$')
    
    need_string({'opkg', 'lede'}, false)
    need_table({'opkg', 'extra'}, function(extra_repo)
    	need_alphanumeric_key(extra_repo)
    	need_string(extra_repo)
    end, false)
    
    need_string(in_site({'hostname_prefix'}), false)
    need_string(in_site({'timezone'}))
    
    need_string_array({'ntp_servers'}, false)
    
    need_string_match(in_domain({'prefix6'}), '^[%x:]+/64$')
    
    
    for _, config in ipairs({'wifi24', 'wifi5'}) do
    	if need_table({config}, nil, false) then
    		need_string(in_site({'regdom'})) -- regdom is only required when wifi24 or wifi5 is configured
    
    		need_number({config, 'channel'})
    
    		local rates = {1000, 2000, 5500, 6000, 9000, 11000, 12000, 18000, 24000, 36000, 48000, 54000}
    		local supported_rates = need_array_of(in_site({config, 'supported_rates'}), rates, false)
    		need_array_of({config, 'basic_rate'}, supported_rates or rates, supported_rates ~= nil)
    
    		if need_table({config, 'ibss'}, nil, false) then
    			need_string_match(in_domain({config, 'ibss', 'ssid'}), '^.' .. ('.?'):rep(31) .. '$')
    			need_string_match(in_domain({config, 'ibss', 'bssid'}), '^%x[02468aAcCeE]:%x%x:%x%x:%x%x:%x%x:%x%x$')
    			need_one_of({config, 'ibss', 'mcast_rate'}, supported_rates or rates, false)
    			need_number({config, 'ibss', 'vlan'}, false)
    			need_boolean({config, 'ibss', 'disabled'}, false)
    		end
    
    		if need_table({config, 'mesh'}, nil, false) then
    			need_string_match(in_domain({config, 'mesh', 'id'}), '^.' .. ('.?'):rep(31) .. '$')
    			need_one_of({config, 'mesh', 'mcast_rate'}, supported_rates or rates, false)
    			need_boolean({config, 'mesh', 'disabled'}, false)
    		end
    	end
    end
    
    need_boolean(in_site({'poe_passthrough'}), false)
    
    if need_table({'dns'}, nil, false) then
    	need_string_array_match({'dns', 'servers'}, '^[%x:]+$')
    	need_number({'dns', 'cacheentries'}, false)
    end
    
    need_string_array(in_domain({'next_node', 'name'}), false)
    need_string_match(in_domain({'next_node', 'ip6'}), '^[%x:]+$', false)
    need_string_match(in_domain({'next_node', 'ip4'}), '^%d+.%d+.%d+.%d+$', false)
    
    need_boolean(in_site({'mesh_on_wan'}), false)
    need_boolean(in_site({'mesh_on_lan'}), false)
    need_boolean(in_site({'single_as_lan'}), false)