summaryrefslogtreecommitdiffstats
path: root/vlc-model.lua
blob: 561e22c563dc51389464ca26d3efdae719955fd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
local mymodule = {}

-- Load libraries
modelfunctions = require("modelfunctions")
fs = require("acf.fs")

-- ################################################################################
-- SET VARIABLES
local packagename="vlc-daemon"
local processname="vlc"
local configfile = "/etc/conf.d/"..tostring(processname)
local logfile = "/var/log/vlc/vlc.log"

function mymodule.set_processname(p)
	processname = p
	configfile = "/etc/conf.d/"..tostring(processname)
end


-- ################################################################################
-- LOCAL FUNCTIONS


-- ################################################################################
-- PUBLIC FUNCTIONS

function mymodule.get_startstop(self, clientdata)
        return modelfunctions.get_startstop(processname)
end

function mymodule.startstop_service(self, startstop, action)
        return modelfunctions.startstop_service(startstop, action)
end

function mymodule.getstatus()
	return modelfunctions.getstatus(processname, packagename, tostring(processname).." Status")
end

function mymodule.getconfigfile()
	-- FIXME Validate
	return modelfunctions.getfiledetails(configfile)
end

function mymodule.get_logfile(self, clientdata)
	local retval = cfe({ type="group", value={}, label="Log File Configuration" })
	retval.value.filename = cfe({value=logfile, label="File name"})
	local path
	if fs.is_file(configfile) then
		for line in string.gmatch(fs.read_file(configfile) or "", "(.-)\n") do
			path=string.match(line,"^VLC_OPTS.*--logfile%s+(%S+)") or path
		end
	end
	if path then retval.value.filename.value = path end
	return retval
end

function mymodule.setconfigfile(self, filedetails)
	-- FIXME Validate
	return modelfunctions.setfiledetails(self, filedetails, {configfile})
end

function mymodule.getleases()
	return modelfunctions.getfiledetails(leasefile)
end

return mymodule