12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #!/usr/bin/lua
- local uci = require('luci.model.uci').cursor()
- local json = require 'luci.json'
- local tools = require 'gluon.site_generate'
- local shape = require 'gluon.pointwithinshape'
- function get_config(file)
- local f = io.open(file)
- if f then
- local config = json.decode(f:read('*a'))
- f:close()
- return config
- end
- return nil
- end
- function is_site_valid(site_code)
- local sites = get_config('/lib/gluon/site-select/sites.json')
- for _, site in pairs(sites) do
- if site.site_code == site_code then
- return true
- end
- end
- return false
- end
- function set_currentsite(site_code)
- if site_code and is_site_valid(site_code) then
- uci:set('currentsite', 'current', 'name', site_code)
- uci:save('currentsite')
- uci:commit('currentsite')
- return true
- end
- return false
- end
- function get_site_by_geo(latitude, longitude)
- os.execute('gunzip -c /lib/gluon/site-select/site-coords.gz > /tmp/site-coords.json')
- local sites = tools.get_config('/tmp/site-coords.json')
- os.remove('/tmp/site-coords.json')
- for _,site in ipairs(sites) do
- if shape.PointWithinShape(site.coords, latitude, longitude) == true then
- return site.site_code
- end
- end
- return "ffho_yho"
- end
- local currentsite = uci:get('currentsite', 'current', 'name')
- local configured = is_site_valid(currentsite)
- if configured == false then
- local latitude = uci:get_first('gluon-node-info', 'location', 'latitude')
- local longitude = uci:get_first('gluon-node-info', 'location', 'longitude')
- if latitude and longitude then
- currentsite = get_site_by_geo(latitude, longitude)
- configured = set_currentsite(currentsite)
- end
- end
- if configured == false then
- local minute = math.random(0, 59)
- local f = io.open('/usr/lib/micron.d/ffho-site-auto-select', 'w')
- f:write(string.format('%i * * * * /usr/sbin/ffho-site-auto-select\n', minute))
- f:close()
- end
|