OXYGEN #3: Add "back" button to UCI apply/revert/changes pages
[project/luci.git] / modules / admin-mini / luasrc / controller / mini / uci.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11         http://www.apache.org/licenses/LICENSE-2.0
12
13 $Id$
14 ]]--
15 module("luci.controller.mini.uci", package.seeall)
16
17 function index()
18         local i18n = luci.i18n.translate
19         local redir = luci.http.formvalue("redir", true) or 
20           luci.dispatcher.build_url(unpack(luci.dispatcher.context.request))
21         
22         entry({"mini", "uci"}, nil, i18n("config"))
23         entry({"mini", "uci", "changes"}, call("action_changes"), i18n("changes"), 30).query = {redir=redir}
24         entry({"mini", "uci", "revert"}, call("action_revert"), i18n("revert"), 20).query = {redir=redir}
25         entry({"mini", "uci", "saveapply"}, call("action_apply"), i18n("saveapply"), 10).query = {redir=redir}
26 end
27
28 function convert_changes(changes)
29         local util = require "luci.util"
30         
31         local ret
32         for r, tbl in pairs(changes) do
33                 for s, os in pairs(tbl) do
34                         for o, v in pairs(os) do
35                                 ret = (ret and ret.."\n" or "") .. "%s%s.%s%s%s" % {
36                                         v == "" and "-" or "",
37                                         r,
38                                         s,
39                                         o ~= ".type" and "."..o or "",
40                                         v ~= "" and "="..util.pcdata(v) or ""
41                                 }
42                         end
43                 end
44         end
45         return ret
46 end
47
48 function action_changes()
49         local changes = convert_changes(luci.model.uci.cursor():changes())
50         luci.template.render("mini/uci_changes", {changes=changes})
51 end
52
53 function action_apply()
54         local path = luci.dispatcher.context.path
55         local uci = luci.model.uci.cursor()
56         local changes = uci:changes()
57         local reload = {}
58
59         -- Collect files to be applied and commit changes
60         for r, tbl in pairs(changes) do
61                 table.insert(reload, r)
62                 uci:load(r)
63                 uci:commit(r)
64                 uci:unload(r)
65         end
66         
67         local function _reload()
68                 local cmd = uci:apply(reload, true)
69                 return io.popen(cmd)
70         end
71
72         luci.template.render("mini/uci_apply", {changes=convert_changes(changes), reload=_reload})
73 end
74
75
76 function action_revert()
77         local uci = luci.model.uci.cursor()
78         local changes = uci:changes()
79
80         -- Collect files to be reverted
81         for r, tbl in pairs(changes) do
82                 uci:load(r)
83                 uci:revert(r)
84                 uci:unload(r)
85         end
86         
87         luci.template.render("mini/uci_revert", {changes=convert_changes(changes)})
88 end