summaryrefslogtreecommitdiffstats
path: root/clamav-model.lua
blob: 370c4b39d4fb6ea23cef0a2ae61cfda032d87979 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
local mymodule = {}

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

-- Set variables
local processname = "clamd"
local packagename = "clamav"
local filelist = {"/etc/clamav/clamd.conf", "/etc/clamav/freshclam.conf"}

local path = "PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin "

-- ################################################################################
-- 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, "ClamAV Status")
end

function mymodule.getstatusdetails()
	return cfe({ type="longtext", value="", label="ClamAV Status Details" })
end

function mymodule.getfilelist()
	local listed_files = {}

	for i,name in ipairs(filelist) do
		local filedetails = posix.stat(name) or {}
		filedetails.filename = name
		table.insert(listed_files, filedetails) 
	end

	return cfe({ type="structure", value=listed_files, label="ClamAV File List" })
end

function mymodule.getfiledetails(self, clientdata)
	return modelfunctions.getfiledetails(clientdata.filename, filelist)
end

function mymodule.updatefiledetails(self, filedetails)
	return modelfunctions.setfiledetails(self, filedetails, filelist)
end

function mymodule.get_logfile(self, clientdata)
	local files = {}
	local config = format.parse_configfile(fs.read_file(filelist[1]) or "")
	local logfilepath = config.LogFile
	if logfilepath then
		files[#files+1] = {filename=logfilepath}
	end
	if config.LogSyslog then
		files[#files+1] = {facility=config.LogFacility or "LOG_LOCAL6", grep="clamd"}
	end
	config = format.parse_configfile(fs.read_file(filelist[2]) or "")
	logfilepath = config.UpdateLogFile
	if logfilepath then
		files[#files+1] = {filename=logfilepath}
	end
	if config.LogSyslog then
		files[#files+1] = {facility=config.LogFacility or "LOG_LOCAL6", grep="freshclam"}
	end

	return cfe({ type="structure", value=files, label="ClamAV logfiles" })
end

return mymodule