luci-app-radicale: remove map.title hack
[project/luci.git] / applications / luci-app-radicale / luasrc / controller / radicale.lua
1 -- Copyright 2014 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
2 -- Licensed under the Apache License, Version 2.0
3
4 module("luci.controller.radicale", package.seeall)
5
6 local NX    = require("nixio")
7 local NXFS  = require("nixio.fs")
8 local DISP  = require "luci.dispatcher"
9 local HTTP  = require("luci.http")
10 local I18N = require("luci.i18n")       -- not globally avalible here
11 local UTIL  = require("luci.util")
12 local SYS   = require("luci.sys")
13
14 function index()
15         entry( {"admin", "services", "radicale"}, alias("admin", "services", "radicale", "edit"), _("CalDAV/CardDAV"), 58)
16         entry( {"admin", "services", "radicale", "edit"}, cbi("radicale") ).leaf = true
17         entry( {"admin", "services", "radicale", "logview"}, call("_logread") ).leaf = true
18         entry( {"admin", "services", "radicale", "startstop"}, post("_startstop") ).leaf = true
19         entry( {"admin", "services", "radicale", "status"}, call("_status") ).leaf = true
20 end
21
22 -- called by XHR.get from detail_logview.htm
23 function _logread()
24         -- read application settings
25         local uci     = UCI.cursor()
26         local logfile = uci:get("radicale", "radicale", "logfile") or "/var/log/radicale"
27         uci:unload("radicale")
28
29         local ldata=NXFS.readfile(logfile)
30         if not ldata or #ldata == 0 then
31                 ldata="_nodata_"
32         end
33         HTTP.write(ldata)
34 end
35
36 -- called by XHR.get from detail_startstop.htm
37 function _startstop()
38         local pid = get_pid()
39         if pid > 0 then
40                 SYS.call("/etc/init.d/radicale stop")
41                 NX.nanosleep(1)         -- sleep a second
42                 if NX.kill(pid, 0) then -- still running
43                         NX.kill(pid, 9) -- send SIGKILL
44                 end
45                 pid = 0
46         else
47                 SYS.call("/etc/init.d/radicale start")
48                 NX.nanosleep(1)         -- sleep a second
49                 pid = get_pid()
50                 if pid > 0 and not NX.kill(pid, 0) then
51                         pid = 0         -- process did not start
52                 end
53         end
54         HTTP.write(tostring(pid))       -- HTTP needs string not number
55 end
56
57 -- called by XHR.poll from detail_startstop.htm
58 function _status()
59         local pid = get_pid()
60         HTTP.write(tostring(pid))       -- HTTP needs string not number
61 end
62
63 -- Application / Service specific information functions ########################
64 function luci_app_name()
65         return  "luci-app-radicale"
66 end
67
68 function service_name()
69         return  "radicale"
70 end
71 function service_required()
72         return  "0.10-1"
73 end
74 function service_installed()
75         local v = ipkg_ver_installed("radicale-py2")
76         if not v or #v == 0 then v = ipkg_ver_installed("radicale-py3") end
77         if not v or #v == 0 then v = "0" end
78         return v
79 end
80 function service_ok()
81         return  ipkg_ver_compare(service_installed(),">=",service_required())
82 end
83
84 function app_title_main()
85         return  [[<a href="javascript:alert(']]
86                         .. I18N.translate("Version Information")
87                         .. [[\n\n]] .. luci_app_name()
88                         .. [[\n\t]] .. I18N.translate("Version") .. [[:\t]]
89                                 .. (ipkg_ver_installed(luci_app_name()) == ""
90                                         and I18N.translate("NOT installed")
91                                         or ipkg_ver_installed(luci_app_name()) )
92                         .. [[\n\n]] .. service_name() .. [[ ]] .. I18N.translate("required") .. [[:]]
93                         .. [[\n\t]] .. I18N.translate("Version") .. [[:\t]]
94                                 .. service_required() .. [[ ]] .. I18N.translate("or higher")
95                         .. [[\n\n]] .. service_name() .. [[ ]] .. I18N.translate("installed") .. [[:]]
96                         .. [[\n\t]] .. I18N.translate("Version") .. [[:\t]]
97                                 .. (service_installed() == "0"
98                                         and I18N.translate("NOT installed")
99                                         or service_installed())
100                         .. [[\n\n]]
101                 .. [[')">]]
102                 .. I18N.translate("Radicale CalDAV/CardDAV Server")
103                 .. [[</a>]]
104 end
105 function app_title_back()
106         return  [[<a href="]]
107                         .. DISP.build_url("admin", "services", "radicale")
108                 .. [[">]]
109                 .. I18N.translate("Radicale CalDAV/CardDAV Server")
110                 .. [[</a>]]
111 end
112 function app_description()
113         return  I18N.translate("The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) server solution.") .. [[<br />]]
114              .. I18N.translate("Calendars and address books are available for both local and remote access, possibly limited through authentication policies.") .. [[<br />]]
115              .. I18N.translate("They can be viewed and edited by calendar and contact clients on mobile phones or computers.")
116 end
117
118 -- other multiused functions ###################################################
119
120 --return pid of running process
121 function get_pid()
122         return tonumber(SYS.exec([[ps | grep "[p]ython.*[r]adicale" 2>/dev/null | awk '{print $1}']])) or 0
123 end
124
125 -- compare versions using "<=" "<" ">" ">=" "=" "<<" ">>"
126 function ipkg_ver_compare(ver1, comp, ver2)
127         if not ver1 or not ver2
128         or not comp or not (#comp > 0) then return nil end
129         -- correct compare string
130         if comp == "<>" or comp == "><" or comp == "!=" or comp == "~=" then comp = "~="
131         elseif comp == "<=" or comp == "<" or comp == "=<" then comp = "<="
132         elseif comp == ">=" or comp == ">" or comp == "=>" then comp = ">="
133         elseif comp == "="  or comp == "==" then comp = "=="
134         elseif comp == "<<" then comp = "<"
135         elseif comp == ">>" then comp = ">"
136         else return nil end
137
138         local av1 = UTIL.split(ver1, "[%.%-]", nil, true)
139         local av2 = UTIL.split(ver2, "[%.%-]", nil, true)
140
141         for i = 1, math.max(table.getn(av1),table.getn(av2)), 1  do
142                 local s1 = av1[i] or ""
143                 local s2 = av2[i] or ""
144
145                 -- first "not equal" found return true
146                 if comp == "~=" and (s1 ~= s2) then return true end
147                 -- first "lower" found return true
148                 if (comp == "<" or comp == "<=") and (s1 < s2) then return true end
149                 -- first "greater" found return true
150                 if (comp == ">" or comp == ">=") and (s1 > s2) then return true end
151                 -- not equal then return false
152                 if (s1 ~= s2) then return false end
153         end
154
155         -- all equal and not compare greater or lower then true
156         return not (comp == "<" or comp == ">")
157 end
158
159 -- read version information for given package if installed
160 function ipkg_ver_installed(pkg)
161         local version = ""
162         local control = io.open("/usr/lib/opkg/info/%s.control" % pkg, "r")
163         if control then
164                 local ln
165                 repeat
166                         ln = control:read("*l")
167                         if ln and ln:match("^Version: ") then
168                                 version = ln:gsub("^Version: ", "")
169                                 break
170                         end
171                 until not ln
172                 control:close()
173         end
174         return version
175 end
176
177 -- replacement of build-in Flag.parse of cbi.lua
178 -- modified to mark section as changed if value changes
179 -- current parse did not do this, but it is done AbstaractValue.parse()
180 function flag_parse(self, section)
181         local fexists = self.map:formvalue(
182                 luci.cbi.FEXIST_PREFIX .. self.config .. "." .. section .. "." .. self.option)
183
184         if fexists then
185                 local fvalue = self:formvalue(section) and self.enabled or self.disabled
186                 local cvalue = self:cfgvalue(section)
187                 if fvalue ~= self.default or (not self.optional and not self.rmempty) then
188                         self:write(section, fvalue)
189                 else
190                         self:remove(section)
191                 end
192                 if (fvalue ~= cvalue) then self.section.changed = true end
193         else
194                 self:remove(section)
195                 self.section.changed = true
196         end
197 end