diff --git a/applications/luci-app-lanraragi/Makefile b/applications/luci-app-lanraragi/Makefile new file mode 100644 index 0000000..e027c82 --- /dev/null +++ b/applications/luci-app-lanraragi/Makefile @@ -0,0 +1,18 @@ + + +include $(TOPDIR)/rules.mk + +PKG_VERSION:=1.0.0-20221106 +PKG_RELEASE:= + +LUCI_TITLE:=LuCI support for LANraragi +LUCI_PKGARCH:=all +LUCI_DEPENDS:=+docker +luci-lib-taskd + +define Package/luci-app-lanraragi/conffiles +/etc/config/lanraragi +endef + +include $(TOPDIR)/feeds/luci/luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-lanraragi/luasrc/controller/lanraragi.lua b/applications/luci-app-lanraragi/luasrc/controller/lanraragi.lua new file mode 100755 index 0000000..aca8546 --- /dev/null +++ b/applications/luci-app-lanraragi/luasrc/controller/lanraragi.lua @@ -0,0 +1,7 @@ + +module("luci.controller.lanraragi", package.seeall) + +function index() + entry({"admin", "services", "lanraragi"}, alias("admin", "services", "lanraragi", "config"), _("LANraragi"), 30).dependent = true + entry({"admin", "services", "lanraragi", "config"}, cbi("lanraragi")) +end diff --git a/applications/luci-app-lanraragi/luasrc/model/cbi/lanraragi.lua b/applications/luci-app-lanraragi/luasrc/model/cbi/lanraragi.lua new file mode 100644 index 0000000..883b16c --- /dev/null +++ b/applications/luci-app-lanraragi/luasrc/model/cbi/lanraragi.lua @@ -0,0 +1,54 @@ +--[[ +LuCI - Lua Configuration Interface +]]-- + +local taskd = require "luci.model.tasks" +local lanraragi_model = require "luci.model.lanraragi" +local m, s, o + +m = taskd.docker_map("lanraragi", "lanraragi", "/usr/libexec/istorec/lanraragi.sh", + translate("LANraragi"), + translate("LANraragi is Open source server for archival of comics/manga.") + .. translate("Official website:") .. ' https://github.com/Difegue/LANraragi') + +s = m:section(SimpleSection, translate("Service Status"), translate("LANraragi status:")) +s:append(Template("lanraragi/status")) + +s = m:section(TypedSection, "main", 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.rmempty = false +o.default = "3000" +o.datatype = "string" + +o = s:option(Value, "image_name", translate("Image").."*") +o.rmempty = false +o.datatype = "string" +o:value("difegue/lanraragi", "difegue/lanraragi") +o.default = "difegue/lanraragi" + +local blocks = lanraragi_model.blocks() +local home = lanraragi_model.home() + +o = s:option(Value, "config_path", translate("Config path").."*") +o.rmempty = false +o.datatype = "string" + +local paths, default_path = lanraragi_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, "content_path", translate("Content path").."*") +o.rmempty = false +o.datatype = "string" +local paths, default_path = lanraragi_model.find_paths(blocks, home, "Downloads") +for _, val in pairs(paths) do + o:value(val, val) +end +o.default = default_path + +return m diff --git a/applications/luci-app-lanraragi/luasrc/model/lanraragi.lua b/applications/luci-app-lanraragi/luasrc/model/lanraragi.lua new file mode 100644 index 0000000..2682aa6 --- /dev/null +++ b/applications/luci-app-lanraragi/luasrc/model/lanraragi.lua @@ -0,0 +1,54 @@ +local util = require "luci.util" +local jsonc = require "luci.jsonc" + +local lanraragi = {} + +lanraragi.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 + +lanraragi.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["Downloads"] = uci:get_first("quickstart", "main", "dl_dir", home_dirs["main_dir"].."/Downloads") + home_dirs["Caches"] = uci:get_first("quickstart", "main", "tmp_dir", home_dirs["main_dir"].."/Caches") + return home_dirs +end + +lanraragi.find_paths = function(blocks, home_dirs, path_name) + local default_path = '' + local configs = {} + + default_path = home_dirs[path_name] .. "/LANraragi" + if #blocks == 0 then + table.insert(configs, default_path) + else + for _, val in pairs(blocks) do + table.insert(configs, val .. "/" .. path_name .. "/LANraragi") + end + local without_conf_dir = "/root/" .. path_name .. "/LANraragi" + if default_path == without_conf_dir then + default_path = configs[1] + end + end + + return configs, default_path +end + +return lanraragi diff --git a/applications/luci-app-lanraragi/luasrc/view/lanraragi/status.htm b/applications/luci-app-lanraragi/luasrc/view/lanraragi/status.htm new file mode 100644 index 0000000..28ebc2a --- /dev/null +++ b/applications/luci-app-lanraragi/luasrc/view/lanraragi/status.htm @@ -0,0 +1,31 @@ +<% +local util = require "luci.util" +local container_status = util.trim(util.exec("/usr/libexec/istorec/lanraragi.sh status")) +local container_install = (string.len(container_status) > 0) +local container_running = container_status == "running" +-%> +
+ +
+ <% if container_running then %> + + <% else %> + + <% end %> +
+
+<% +if container_running then + local port=util.trim(util.exec("/usr/libexec/istorec/lanraragi.sh port")) + if port == "" then + port="3000" + end +-%> +
+ +
+ + +
+
+<% end %> diff --git a/applications/luci-app-lanraragi/po/zh-cn/lanraragi.po b/applications/luci-app-lanraragi/po/zh-cn/lanraragi.po new file mode 100644 index 0000000..31a9c49 --- /dev/null +++ b/applications/luci-app-lanraragi/po/zh-cn/lanraragi.po @@ -0,0 +1,41 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +msgid "Official website:" +msgstr "官方网站:" + +msgid "LANraragi is Open source server for archival of comics/manga." +msgstr "LANraragi 是一个开源的电子书、漫画管理平台。" + +msgid "Config path" +msgstr "配置文件路径" + +msgid "Content path" +msgstr "资源路径" + +msgid "HTTP Port" +msgstr "HTTP 端口" + +msgid "Service Status" +msgstr "服务状态" + +msgid "LANraragi status:" +msgstr "LANraragi 的状态信息如下:" + +msgid "Setup" +msgstr "安装配置" + +msgid "The following parameters will only take effect during installation or upgrade:" +msgstr "以下参数只在安装或者升级时才会生效:" + +msgid "Status" +msgstr "状态" + +msgid "LANraragi is running" +msgstr "LANraragi 运行中" + +msgid "LANraragi is not running" +msgstr "LANraragi 未运行" + +msgid "Open LANraragi" +msgstr "打开 LANraragi" diff --git a/applications/luci-app-lanraragi/root/etc/config/lanraragi b/applications/luci-app-lanraragi/root/etc/config/lanraragi new file mode 100644 index 0000000..3352796 --- /dev/null +++ b/applications/luci-app-lanraragi/root/etc/config/lanraragi @@ -0,0 +1,6 @@ +config main + option 'http_port' '3000' + option 'image_name' 'difegue/lanraragi' + option 'config_path' '' + option 'content_path' '' + diff --git a/applications/luci-app-lanraragi/root/usr/libexec/istorec/lanraragi.sh b/applications/luci-app-lanraragi/root/usr/libexec/istorec/lanraragi.sh new file mode 100755 index 0000000..0b4ef14 --- /dev/null +++ b/applications/luci-app-lanraragi/root/usr/libexec/istorec/lanraragi.sh @@ -0,0 +1,75 @@ +#!/bin/sh +# Author Xiaobao(xiaobao@linkease.com) + +ACTION=${1} +shift 1 + +do_install() { + local http_port=`uci get lanraragi.@main[0].http_port 2>/dev/null` + local image_name=`uci get lanraragi.@main[0].image_name 2>/dev/null` + local config=`uci get lanraragi.@main[0].config_path 2>/dev/null` + local content=`uci get lanraragi.@main[0].content_path 2>/dev/null` + + [ -z "$image_name" ] && image_name="difegue/lanraragi" + echo "docker pull ${image_name}" + docker pull ${image_name} + docker rm -f lanraragi + + if [ -z "$config" ]; then + echo "config path is empty!" + exit 1 + fi + + [ -z "$http_port" ] && http_port=3000 + + local cmd="docker run --restart=unless-stopped -d \ + -v \"$config:/home/koyomi/lanraragi/database\" \ + -v \"$content:/home/koyomi/lanraragi/content\" \ + --dns=172.17.0.1 \ + -p $http_port:3000 " + + local tz="`cat /tmp/TZ`" + [ -z "$tz" ] || cmd="$cmd -e TZ=$tz" + + cmd="$cmd -v /mnt:/mnt" + mountpoint -q /mnt && cmd="$cmd:rslave" + cmd="$cmd --name lanraragi \"$image_name\"" + + echo "$cmd" + eval "$cmd" +} + +usage() { + echo "usage: $0 sub-command" + echo "where sub-command is one of:" + echo " install Install the lanraragi" + echo " upgrade Upgrade the lanraragi" + echo " rm/start/stop/restart Remove/Start/Stop/Restart the lanraragi" + echo " status LANraragi status" + echo " port LANraragi port" +} + +case ${ACTION} in + "install") + do_install + ;; + "upgrade") + do_install + ;; + "rm") + docker rm -f lanraragi + ;; + "start" | "stop" | "restart") + docker ${ACTION} lanraragi + ;; + "status") + docker ps --all -f 'name=lanraragi' --format '{{.State}}' + ;; + "port") + docker ps --all -f 'name=lanraragi' --format '{{.Ports}}' | grep -om1 '0.0.0.0:[0-9]*' | sed 's/0.0.0.0://' + ;; + *) + usage + exit 1 + ;; +esac