From 7d0553d64d0d6e08cb06004922ba0c778b18e622 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 23:35:40 +0800 Subject: [PATCH] update 2023-12-01 23:35:39 --- luci-app-webvirtcloud/Makefile | 18 ++++ .../luasrc/controller/webvirtcloud.lua | 8 ++ .../luasrc/model/cbi/webvirtcloud/config.lua | 49 ++++++++++ .../luasrc/model/cbi/webvirtcloud/tool.lua | 41 ++++++++ .../luasrc/model/webvirtcloud.lua | 55 +++++++++++ .../luasrc/view/webvirtcloud/status.htm | 31 ++++++ .../luasrc/view/webvirtcloud/tool.htm | 11 +++ .../po/zh-cn/webvirtcloud.po | 48 ++++++++++ luci-app-webvirtcloud/po/zh_Hans | 1 + .../root/etc/config/webvirtcloud | 8 ++ .../root/usr/libexec/istorec/webvirtcloud.sh | 94 +++++++++++++++++++ .../rpcd/acl.d/luci-app-webvirtcloud.json | 11 +++ vmease/Makefile | 4 +- 13 files changed, 377 insertions(+), 2 deletions(-) create mode 100644 luci-app-webvirtcloud/Makefile create mode 100755 luci-app-webvirtcloud/luasrc/controller/webvirtcloud.lua create mode 100644 luci-app-webvirtcloud/luasrc/model/cbi/webvirtcloud/config.lua create mode 100644 luci-app-webvirtcloud/luasrc/model/cbi/webvirtcloud/tool.lua create mode 100644 luci-app-webvirtcloud/luasrc/model/webvirtcloud.lua create mode 100644 luci-app-webvirtcloud/luasrc/view/webvirtcloud/status.htm create mode 100644 luci-app-webvirtcloud/luasrc/view/webvirtcloud/tool.htm create mode 100644 luci-app-webvirtcloud/po/zh-cn/webvirtcloud.po create mode 120000 luci-app-webvirtcloud/po/zh_Hans create mode 100644 luci-app-webvirtcloud/root/etc/config/webvirtcloud create mode 100755 luci-app-webvirtcloud/root/usr/libexec/istorec/webvirtcloud.sh create mode 100644 luci-app-webvirtcloud/root/usr/share/rpcd/acl.d/luci-app-webvirtcloud.json diff --git a/luci-app-webvirtcloud/Makefile b/luci-app-webvirtcloud/Makefile new file mode 100644 index 000000000..d44e1e6e8 --- /dev/null +++ b/luci-app-webvirtcloud/Makefile @@ -0,0 +1,18 @@ + + +include $(TOPDIR)/rules.mk + +PKG_VERSION:=0.3.6-20231201 +PKG_RELEASE:= + +LUCI_TITLE:=LuCI support for webvirtcloud +LUCI_PKGARCH:=all +LUCI_DEPENDS:=+lsblk +docker +dockerd +luci-lib-taskd +vmease + +define Package/luci-app-webvirtcloud/conffiles +/etc/config/webvirtcloud +endef + +include $(TOPDIR)/feeds/luci/luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/luci-app-webvirtcloud/luasrc/controller/webvirtcloud.lua b/luci-app-webvirtcloud/luasrc/controller/webvirtcloud.lua new file mode 100755 index 000000000..643e6143e --- /dev/null +++ b/luci-app-webvirtcloud/luasrc/controller/webvirtcloud.lua @@ -0,0 +1,8 @@ + +module("luci.controller.webvirtcloud", package.seeall) + +function index() + entry({"admin", "services", "webvirtcloud"}, alias("admin", "services", "webvirtcloud", "config"), _("KVM WebVirtCloud"), 30).dependent = true + entry({"admin", "services", "webvirtcloud", "config"}, cbi("webvirtcloud/config"), _("Config"), 10).leaf = true + entry({"admin", "services", "webvirtcloud", "tool"}, form("webvirtcloud/tool"), _("Tool"), 30).leaf = true +end diff --git a/luci-app-webvirtcloud/luasrc/model/cbi/webvirtcloud/config.lua b/luci-app-webvirtcloud/luasrc/model/cbi/webvirtcloud/config.lua new file mode 100644 index 000000000..6d5f7d22b --- /dev/null +++ b/luci-app-webvirtcloud/luasrc/model/cbi/webvirtcloud/config.lua @@ -0,0 +1,49 @@ +--[[ +LuCI - Lua Configuration Interface +]]-- + +local taskd = require "luci.model.tasks" +local webvirtcloud_model = require "luci.model.webvirtcloud" +local m, s, o + +m = taskd.docker_map("webvirtcloud", "webvirtcloud", "/usr/libexec/istorec/webvirtcloud.sh", + translate("KVM WebVirtCloud"), + translate("KVM web manager in iStoreOS using webvirtcloud.") .. " login: admin/admin. " + .. translate("Official website:") .. ' https://webvirt.cloud/') + +s = m:section(SimpleSection, translate("Service Status"), translate("WebVirtCloud status:")) +s:append(Template("webvirtcloud/status")) + +s = m:section(TypedSection, "webvirtcloud", translate("Setup"), translate("The following parameters will only take effect during installation or upgrade:")) +s.addremove=false +s.anonymous=true + +o = s:option(Value, "http_port", translate("HTTP Port").."*") +o.default = "6009" +o.datatype = "port" + +o = s:option(Value, "image_name", translate("Image").."*") +o.rmempty = false +o.datatype = "string" +o:value("linkease/webvirtcloud:latest", "linkease/webvirtcloud:latest") +o:value("linkease/webvirtcloud:0.3.6", "linkease/webvirtcloud:0.3.6") +o.default = "linkease/webvirtcloud:latest" + +local blocks = webvirtcloud_model.blocks() +local home = webvirtcloud_model.home() + +o = s:option(Value, "config_path", translate("Config path").."*") +o.rmempty = false +o.datatype = "string" + +local paths, default_path = webvirtcloud_model.find_paths(blocks, home, "Configs") +for _, val in pairs(paths) do + o:value(val, val) +end +o.default = default_path + +o = s:option(Value, "time_zone", translate("Timezone")) +o.datatype = "string" +o:value("Asia/Shanghai", "Asia/Shanghai") + +return m diff --git a/luci-app-webvirtcloud/luasrc/model/cbi/webvirtcloud/tool.lua b/luci-app-webvirtcloud/luasrc/model/cbi/webvirtcloud/tool.lua new file mode 100644 index 000000000..f88f11c23 --- /dev/null +++ b/luci-app-webvirtcloud/luasrc/model/cbi/webvirtcloud/tool.lua @@ -0,0 +1,41 @@ +--[[ +LuCI - Lua Configuration Interface +]]-- + +local http = require 'luci.http' + +m=SimpleForm("Tools") +m.submit = false +m.reset = false + +s = m:section(SimpleSection) + +o = s:option(Value, "action", translate("Action").."*") +o.rmempty = false +o.datatype = "string" +o:value("gpu-passthrough", "gpu-passthrough") +o.default = "gpu-passthrough" + +local t=Template("webvirtcloud/tool") +m:append(t) + +local btn_do = s:option(Button, "_do") +btn_do.render = function(self, section, scope) + self.inputstyle = "add" + self.title = " " + self.inputtitle = translate("Execute") + Button.render(self, section, scope) +end + +btn_do.write = function(self, section, value) + local action = m:get(section, "action") + if action == "gpu-passthrough" then + local cmd = string.format("/usr/libexec/istorec/webvirtcloud.sh %s", action) + cmd = "/etc/init.d/tasks task_add webvirtcloud " .. luci.util.shellquote(cmd) .. " >/dev/null 2>&1" + os.execute(cmd) + t.show_log_taskid = "webvirtcloud" + end +end + +return m + diff --git a/luci-app-webvirtcloud/luasrc/model/webvirtcloud.lua b/luci-app-webvirtcloud/luasrc/model/webvirtcloud.lua new file mode 100644 index 000000000..121ee34eb --- /dev/null +++ b/luci-app-webvirtcloud/luasrc/model/webvirtcloud.lua @@ -0,0 +1,55 @@ +local util = require "luci.util" +local jsonc = require "luci.jsonc" + +local webvirtcloud = {} + +webvirtcloud.blocks = function() + local f = io.popen("lsblk -s -f -b -o NAME,FSSIZE,MOUNTPOINT --json", "r") + local vals = {} + if f then + local ret = f:read("*all") + f:close() + local obj = jsonc.parse(ret) + for _, val in pairs(obj["blockdevices"]) do + local fsize = val["fssize"] + if fsize ~= nil and string.len(fsize) > 10 and val["mountpoint"] then + -- fsize > 1G + vals[#vals+1] = val["mountpoint"] + end + end + end + return vals +end + +webvirtcloud.home = function() + local uci = require "luci.model.uci".cursor() + local home_dirs = {} + home_dirs["main_dir"] = uci:get_first("quickstart", "main", "main_dir", "/root") + home_dirs["Configs"] = uci:get_first("quickstart", "main", "conf_dir", home_dirs["main_dir"].."/Configs") + home_dirs["Public"] = uci:get_first("quickstart", "main", "pub_dir", home_dirs["main_dir"].."/Public") + home_dirs["Downloads"] = uci:get_first("quickstart", "main", "dl_dir", home_dirs["Public"].."/Downloads") + home_dirs["Caches"] = uci:get_first("quickstart", "main", "tmp_dir", home_dirs["main_dir"].."/Caches") + return home_dirs +end + +webvirtcloud.find_paths = function(blocks, home_dirs, path_name) + local default_path = '' + local configs = {} + + default_path = home_dirs[path_name] .. "/WebVirtCloud" + if #blocks == 0 then + table.insert(configs, default_path) + else + for _, val in pairs(blocks) do + table.insert(configs, val .. "/" .. path_name .. "/WebVirtCloud") + end + local without_conf_dir = "/root/" .. path_name .. "/WebVirtCloud" + if default_path == without_conf_dir then + default_path = configs[1] + end + end + + return configs, default_path +end + +return webvirtcloud diff --git a/luci-app-webvirtcloud/luasrc/view/webvirtcloud/status.htm b/luci-app-webvirtcloud/luasrc/view/webvirtcloud/status.htm new file mode 100644 index 000000000..6eab34d84 --- /dev/null +++ b/luci-app-webvirtcloud/luasrc/view/webvirtcloud/status.htm @@ -0,0 +1,31 @@ +<% +local util = require "luci.util" +local container_status = util.trim(util.exec("/usr/libexec/istorec/webvirtcloud.sh status")) +local container_install = (string.len(container_status) > 0) +local container_running = container_status == "running" +-%> +