mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
interface.runLiveExtraction API to extract traffic with a direct download, live_traffic_extraction.lua endpoint
This commit is contained in:
parent
b5b8c99beb
commit
c849fde491
4 changed files with 216 additions and 45 deletions
41
scripts/lua/live_traffic_extraction.lua
Normal file
41
scripts/lua/live_traffic_extraction.lua
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
--
|
||||
-- (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"
|
||||
|
||||
local function send_error(msg)
|
||||
sendHTTPContentTypeHeader('application/json')
|
||||
local res = {}
|
||||
res.error = msg
|
||||
print(json.encode(res))
|
||||
end
|
||||
|
||||
if not recording_utils.isAvailable() then
|
||||
send_error(i18n("traffic_recording.not_granted"))
|
||||
else
|
||||
if _GET["epoch_begin"] == nil or _GET["epoch_end"] == nil then
|
||||
send_error(i18n("traffic_recording.missing_parameters"))
|
||||
else
|
||||
interface.select(ifname)
|
||||
|
||||
local filter = _GET["bpf_filter"]
|
||||
local time_from = tonumber(_GET["epoch_begin"])
|
||||
local time_to = tonumber(_GET["epoch_end"])
|
||||
|
||||
if filter == nil then
|
||||
filter = ""
|
||||
end
|
||||
|
||||
local fname = time_from.."-"..time_to..".pcap"
|
||||
sendHTTPContentTypeHeader('application/vnd.tcpdump.pcap', 'attachment; filename="'..fname..'"')
|
||||
|
||||
interface.runLiveExtraction(time_from, time_to, filter)
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue