ndppd: importing ndppd package in openwrt-routing feed
[feed/routing.git] / luci-app-bmx6 / files / usr / lib / lua / luci / model / cbi / bmx6 / advanced.lua
1 --[[
2 Copyright (C) 2011 Pau Escrich <pau@dabax.net>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, write to the Free Software Foundation, Inc.,
16 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 The full GNU General Public License is included in this distribution in
19 the file called "COPYING".
20 --]]
21
22 m = Map("bmx6", "bmx6")
23
24 local bmx6json = require("luci.model.bmx6json")
25 local util = require("luci.util")
26 local http = require("luci.http")
27 local sys = require("luci.sys")
28
29 local options = bmx6json.get("options")
30 if options == nil or options.OPTIONS == nil then
31 m.message = "bmx6-json plugin is not running or some mistake in luci-bmx6 configuration, check /etc/config/luci-bmx6"
32 options = {}
33 else
34 options = options.OPTIONS
35 end
36
37 local general = m:section(NamedSection,"general","general","General Options")
38
39 local name = ""
40 local help = ""
41 local value = nil
42 local _,o
43
44 for _,o in ipairs(options) do
45 if o.name ~= nil and o.CHILD_OPTIONS == nil and o.configurable == 1 then
46 help = ""
47 name = o.name
48
49 if o.help ~= nil then
50 help = bmx6json.text2html(o.help)
51 end
52
53 if o.syntax ~= nil then
54 help = help .. "<br/><strong>Syntax: </strong>" .. bmx6json.text2html(o.syntax)
55 end
56
57 if o.def ~= nil then
58 help = help .. "<strong> Default: </strong>" .. o.def
59 end
60
61 value = general:option(Value,name,name,help)
62
63 end
64 end
65
66 function m.on_commit(self,map)
67 local err = sys.call('bmx6 -c --configReload > /tmp/bmx6-luci.err.tmp')
68 if err ~= 0 then
69 m.message = sys.exec("cat /tmp/bmx6-luci.err.tmp")
70 end
71 end
72
73 return m
74