summaryrefslogtreecommitdiffstats
path: root/weblog-model.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-09-16 13:40:35 +0000
committerTed Trask <ttrask01@yahoo.com>2009-09-16 13:40:35 +0000
commit9fe058d4b6aaedf085b72322b4d54b48fb6d5df5 (patch)
treeec1b85a36ad34a81ec7f97579ee319fccb5fe4b7 /weblog-model.lua
parent0c3e15063708f6218288ee5a30de090900655e0f (diff)
downloadacf-weblog-9fe058d4b6aaedf085b72322b4d54b48fb6d5df5.tar.bz2
acf-weblog-9fe058d4b6aaedf085b72322b4d54b48fb6d5df5.tar.xz
Added support for .gz log files, bumped to 0.4.2v0.4.2
Diffstat (limited to 'weblog-model.lua')
-rw-r--r--weblog-model.lua16
1 files changed, 13 insertions, 3 deletions
diff --git a/weblog-model.lua b/weblog-model.lua
index 6ebc766..ec4929e 100644
--- a/weblog-model.lua
+++ b/weblog-model.lua
@@ -604,11 +604,21 @@ local getlogfile = function(source, cookiesfile, logfile)
local filecontent
if source.method == "http" or source.method == "https" then
local cmd = "wget -O - --no-check-certificate --load-cookies "..cookiesfile.." --post-data 'name="..logfile.."' '"..source.method.."://"..source.source.."/cgi-bin/acf/alpine-baselayout/logfiles/download' 2>/dev/null"
+ if string.find(logfile, "%.gz$") then
+ cmd = cmd.." | gunzip -c"
+ end
local f = io.popen(cmd)
filecontent = f:read("*a")
f:close()
elseif source.method == "local" then
- filecontent = fs.read_file(logfile)
+ if string.find(logfile, "%.gz$") then
+ local cmd = "gunzip -c "..logfile
+ local f = io.popen(cmd)
+ filecontent = f:read("*a")
+ f:close()
+ else
+ filecontent = fs.read_file(logfile)
+ end
end
return filecontent
end
@@ -825,7 +835,7 @@ function importlogs()
if connecttosource(source, cookiesfile) then
local files = getlogcandidates(source, cookiesfile)
for j,file in ipairs(files) do
- if string.match(file, "dansguardian/access%.log%.") then
+ if string.match(file, "dansguardian/access%.log[%.%-]") then
count = count + 1
logme("Processing " .. file )
logme("Getting " .. file )
@@ -834,7 +844,7 @@ function importlogs()
importdglog(logentries, source.sourcename)
logme("Deleting " .. file )
deletelogfile(source, cookiesfile, file)
- elseif string.match(file, "squid/access%.log%.") then
+ elseif string.match(file, "squid/access%.log[%.%-]") then
count = count + 1
logme("Processing " .. file )
logme("Getting " .. file )