5b744e1ccc4c67a108bac6520dd3d970ca5cc596
[project/luci.git] / applications / luci-splash / luasrc / model / cbi / splash / splashtext.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 Copyright 2010 Manuel Munz <freifunk@somakoma.de>
7
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12         http://www.apache.org/licenses/LICENSE-2.0
13 ]]--
14
15 local fs = require "nixio.fs"
16 luci.i18n.loadc("splash")
17
18 local splashtextfile = "/usr/lib/luci-splash/splashtext.html" 
19
20 f = SimpleForm("splashtext", translate("Edit Splash text"),
21         translate("You can enter your own text that is displayed to clients here.<br />" ..
22         "It is possible to use the following markers: " ..
23         "###COMMUNITY###, ###COMMUNITY_URL###, ###CONTACTURL###, ###LEASETIME###, ###LIMIT### and ###ACCEPT###."))
24
25 t = f:field(TextValue, "text")
26 t.rmempty = true
27 t.rows = 30
28 function t.cfgvalue()
29         return fs.readfile(splashtextfile) or ""
30 end
31
32 function f.handle(self, state, data)
33         if state == FORM_VALID then
34                 if data.text then
35                         fs.writefile(splashtextfile, data.text:gsub("\r\n", "\n"))
36                 else
37                         fs.unlink(splashtextfile)
38                 end
39         end
40         return true
41 end
42
43 return f