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
|
-- Copyright 2016-2019 Xingwang Liao <kuoruan@gmail.com>
-- Licensed to the public under the MIT License.
local fs = require "nixio.fs"
local sys = require "luci.sys"
local http = require "luci.http"
local util = require "luci.util"
local uci = require "luci.model.uci".cursor()
module("luci.controller.aria2", package.seeall)
function index()
if not nixio.fs.access("/etc/config/aria2") then
return
end
local e = entry({"admin", "services", "aria2"}, firstchild(), _("Aria2"))
e.dependent = false
e.acl_depends = { "luci-app-aria2" }
entry({"admin", "services", "aria2", "config"},
cbi("aria2/config"), _("Configuration"), 1)
entry({"admin", "services", "aria2", "file"},
form("aria2/files"), _("Files"), 2)
entry({"admin", "services", "aria2", "log"},
firstchild(), _("Log"), 3)
entry({"admin", "services", "aria2", "log", "view"},
template("aria2/log_template"))
entry({"admin", "services", "aria2", "log", "read"},
call("action_log_read"))
entry({"admin", "services", "aria2", "status"},
call("action_status"))
end
function action_status()
local status = {
running = (sys.call("pidof aria2c >/dev/null") == 0)
}
http.prepare_content("application/json")
http.write_json(status)
end
function action_log_read()
local data = { log = "", syslog = "" }
local log_file = uci:get("aria2", "main", "log") or "/var/log/aria2.log"
if fs.access(log_file) then
data.log = util.trim(sys.exec("tail -n 50 %s | sed 'x;1!H;$!d;x'" % log_file))
end
data.syslog = util.trim(sys.exec("logread | grep aria2 | tail -n 50 | sed 'x;1!H;$!d;x'"))
http.prepare_content("application/json")
http.write_json(data)
end
|