ntopng/scripts/lua/traffic_extraction.lua
2018-11-14 12:00:15 +01:00

44 lines
1.1 KiB
Lua

--
-- (C) 2013-18 - ntop.org
--
dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
local json = require("dkjson")
local recording_utils = require "recording_utils"
sendHTTPContentTypeHeader('application/json')
local res = {}
if not recording_utils.isAvailable() then
res.error = i18n("traffic_recording.not_granted")
else
if _POST["epoch_begin"] == nil or _POST["epoch_end"] == nil then
res.error = i18n("traffic_recording.missing_parameters")
else
interface.select(ifname)
local ifstats = interface.getStats()
local filter = _POST["bpf_filter"]
local time_from = tonumber(_POST["epoch_begin"])
local time_to = tonumber(_POST["epoch_end"])
local chart_url = _POST["url"]
local params = {
time_from = time_from,
time_to = time_to,
filter = filter,
chart_url = chart_url,
}
local job_info = recording_utils.scheduleExtraction(ifstats.id, params)
res.id = job_info.id
end
res.csrf = ntop.getRandomCSRFValue()
end
print(json.encode(res))