luci/modules/admin-core/src/controller/admin/uci.lua

61 lines
1.4 KiB
Lua
Raw Normal View History

2008-04-11 18:24:25 +00:00
module("ffluci.controller.admin.uci", package.seeall)
require("ffluci.util")
require("ffluci.sys")
-- This function has a higher priority than the admin_uci/apply template
function action_apply()
local changes = ffluci.model.uci.changes()
local output = ""
if changes then
local com = {}
local run = {}
2008-04-11 18:24:25 +00:00
-- Collect files to be applied and commit changes
2008-04-11 18:24:25 +00:00
for i, line in ipairs(ffluci.util.split(changes)) do
local r = line:match("^-?([^.]+)")
if r then
com[r] = true
if ffluci.config.uci_oncommit and ffluci.config.uci_oncommit[r] then
run[ffluci.config.uci_oncommit[r]] = true
end
2008-04-11 18:24:25 +00:00
end
end
-- Apply
for config, i in pairs(com) do
ffluci.model.uci.commit(config)
end
2008-04-11 18:24:25 +00:00
-- Search for post-commit commands
for cmd, i in pairs(run) do
output = output .. cmd .. ":" .. ffluci.sys.exec(cmd) .. "\n"
2008-04-11 18:24:25 +00:00
end
end
ffluci.template.render("admin_uci/apply", {changes=changes, output=output})
end
function action_revert()
local changes = ffluci.model.uci.changes()
if changes then
local revert = {}
-- Collect files to be reverted
for i, line in ipairs(ffluci.util.split(changes)) do
local r = line:match("^-?([^.]+)")
if r then
revert[r] = true
end
end
-- Revert them
for k, v in pairs(revert) do
ffluci.model.uci.revert(k)
end
end
ffluci.template.render("admin_uci/revert", {changes=changes})
end