You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
653 B
Lua

1 year ago
module("luci.controller.qbittorrent", package.seeall)
function index()
entry({"admin", "nas"}, firstchild(), _("NAS") , 45).dependent = false
if not nixio.fs.access("/etc/config/qbittorrent") then
return
end
local page = entry({"admin", "nas", "qbittorrent"}, cbi("qbittorrent"), _("qBittorrent"))
page.order = 10
page.dependent = true
page.acl_depends = { "luci-app-qbittorrent" }
entry({"admin","nas","qbittorrent","status"},call("act_status")).leaf=true
end
function act_status()
local e={}
e.running=luci.sys.call("pgrep qbittorrent-nox >/dev/null")==0
luci.http.prepare_content("application/json")
luci.http.write_json(e)
end