diff --git a/applications/luci-app-plex/Makefile b/applications/luci-app-plex/Makefile new file mode 100644 index 0000000..851ae7c --- /dev/null +++ b/applications/luci-app-plex/Makefile @@ -0,0 +1,18 @@ + + +include $(TOPDIR)/rules.mk + +PKG_VERSION:=1.0.0-20221106 +PKG_RELEASE:= + +LUCI_TITLE:=LuCI support for Plex +LUCI_PKGARCH:=all +LUCI_DEPENDS:=+docker +luci-lib-taskd + +define Package/luci-app-plex/conffiles +/etc/config/plex +endef + +include $(TOPDIR)/feeds/luci/luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-plex/luasrc/controller/plex.lua b/applications/luci-app-plex/luasrc/controller/plex.lua new file mode 100755 index 0000000..0eea159 --- /dev/null +++ b/applications/luci-app-plex/luasrc/controller/plex.lua @@ -0,0 +1,7 @@ + +module("luci.controller.plex", package.seeall) + +function index() + entry({"admin", "services", "plex"}, alias("admin", "services", "plex", "config"), _("Plex"), 30).dependent = true + entry({"admin", "services", "plex", "config"}, cbi("plex")) +end diff --git a/applications/luci-app-plex/luasrc/model/cbi/plex.lua b/applications/luci-app-plex/luasrc/model/cbi/plex.lua new file mode 100644 index 0000000..de78cee --- /dev/null +++ b/applications/luci-app-plex/luasrc/model/cbi/plex.lua @@ -0,0 +1,65 @@ +--[[ +LuCI - Lua Configuration Interface +]]-- + +local taskd = require "luci.model.tasks" +local plex_model = require "luci.model.plex" +local m, s, o + +m = taskd.docker_map("plex", "plex", "/usr/libexec/istorec/plex.sh", + translate("Plex"), + translate("Plex is an elegant solution to organise all your web applications.") + .. translate("Official website:") .. ' https://www.plex.tv/') + +s = m:section(SimpleSection, translate("Service Status"), translate("Plex status:")) +s:append(Template("plex/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(Flag, "hostnet", translate("Host network"), translate("Plex running in host network, for DLNA application, port is always 32400 if enabled")) +o.default = 0 +o.rmempty = false + +o = s:option(Value, "claim_token", translate("Plex Claim")) +o.datatype = "string" + +o = s:option(Value, "port", translate("Port").."*") +o.rmempty = false +o.default = "32400" +o.datatype = "port" +o:depends("hostnet", 0) + +o = s:option(Value, "image_name", translate("Image").."*") +o.rmempty = false +o.datatype = "string" +o:value("plexinc/pms-docker:latest", "plexinc/pms-docker:latest") +o:value("plexinc/pms-docker:1.29.1.6316-f4cdfea9c", "plexinc/pms-docker:1.29.1.6316-f4cdfea9c") +o.default = "plexinc/pms-docker:latest" + +local blocks = plex_model.blocks() +local home = plex_model.home() + +o = s:option(Value, "config_path", translate("Config path").."*") +o.rmempty = false +o.datatype = "string" + +local paths, default_path = plex_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, "media_path", translate("Media path")) +o.datatype = "string" + +o = s:option(Value, "cache_path", translate("Transcode cache path"), translate("Default use 'transcodes' in 'config path' if not set, please make sure there has enough space")) +o.datatype = "string" +local paths, default_path = plex_model.find_paths(blocks, home, "Caches") +for _, val in pairs(paths) do + o:value(val, val) +end +o.default = default_path + +return m diff --git a/applications/luci-app-plex/luasrc/model/plex.lua b/applications/luci-app-plex/luasrc/model/plex.lua new file mode 100644 index 0000000..b693b68 --- /dev/null +++ b/applications/luci-app-plex/luasrc/model/plex.lua @@ -0,0 +1,54 @@ +local util = require "luci.util" +local jsonc = require "luci.jsonc" + +local plex = {} + +plex.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 + +plex.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 + +plex.find_paths = function(blocks, home_dirs, path_name) + local default_path = '' + local configs = {} + + default_path = home_dirs[path_name] .. "/Plex" + if #blocks == 0 then + table.insert(configs, default_path) + else + for _, val in pairs(blocks) do + table.insert(configs, val .. "/" .. path_name .. "/Plex") + end + local without_conf_dir = "/root/" .. path_name .. "/Plex" + if default_path == without_conf_dir then + default_path = configs[1] + end + end + + return configs, default_path +end + +return plex diff --git a/applications/luci-app-plex/luasrc/view/plex/status.htm b/applications/luci-app-plex/luasrc/view/plex/status.htm new file mode 100644 index 0000000..b5afa1b --- /dev/null +++ b/applications/luci-app-plex/luasrc/view/plex/status.htm @@ -0,0 +1,31 @@ +<% +local util = require "luci.util" +local container_status = util.trim(util.exec("/usr/libexec/istorec/plex.sh status")) +local container_install = (string.len(container_status) > 0) +local container_running = container_status == "running" +-%> +