From ee8f42d96593c1c7cfcf2976564ca7ba1d9f5f0a Mon Sep 17 00:00:00 2001 From: ben Date: Wed, 6 Sep 2023 19:37:59 -0400 Subject: [PATCH] first commit --- Makefile | 16 +++ README.md | 0 luasrc/controller/plex.lua | 7 ++ luasrc/model/cbi/plex.lua | 82 ++++++++++++++ luasrc/model/plex.lua | 55 ++++++++++ luasrc/view/plex/status.htm | 31 ++++++ root/etc/config/plex | 6 + root/etc/uci-defaults/luci-app-plex | 11 ++ root/usr/libexec/apps/plex.sh | 109 +++++++++++++++++++ root/usr/share/rpcd/acl.d/luci-app-plex.json | 11 ++ simple-install.sh | 16 +++ 11 files changed, 344 insertions(+) create mode 100644 Makefile create mode 100644 README.md create mode 100755 luasrc/controller/plex.lua create mode 100644 luasrc/model/cbi/plex.lua create mode 100644 luasrc/model/plex.lua create mode 100644 luasrc/view/plex/status.htm create mode 100644 root/etc/config/plex create mode 100644 root/etc/uci-defaults/luci-app-plex create mode 100755 root/usr/libexec/apps/plex.sh create mode 100644 root/usr/share/rpcd/acl.d/luci-app-plex.json create mode 100755 simple-install.sh diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..95ebe0f --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ + + +include $(TOPDIR)/rules.mk + + +LUCI_TITLE:=LuCI support for Plex +LUCI_PKGARCH:=all +LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd +luci-lib-docker + +define Package/luci-app-plex/conffiles +/etc/config/plex +endef + +include $(TOPDIR)/feeds/luci/luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/luasrc/controller/plex.lua b/luasrc/controller/plex.lua new file mode 100755 index 0000000..07b1703 --- /dev/null +++ b/luasrc/controller/plex.lua @@ -0,0 +1,7 @@ + +module("luci.controller.plex", package.seeall) + +function index() + entry({"admin", "apps", "plex"}, alias("admin", "apps", "plex", "config"), _("Plex"), 30).dependent = true + entry({"admin", "apps", "plex", "config"}, cbi("plex")) +end diff --git a/luasrc/model/cbi/plex.lua b/luasrc/model/cbi/plex.lua new file mode 100644 index 0000000..9e816bf --- /dev/null +++ b/luasrc/model/cbi/plex.lua @@ -0,0 +1,82 @@ +--[[ +LuCI - Lua Configuration Interface +]]-- + +local taskd = require "luci.model.tasks" +local docker = require "luci.docker" +local plex_model = require "luci.model.plex" +local m, s, o + +m = taskd.docker_map("plex", "plex", "/usr/libexec/apps/plex.sh", + translate("Plex"), + translate("Plex is an streaming media service and a client–server media player platform, made by Plex, Inc.") + .. translate("Official website:") .. ' https://www.plex.tv/') + +local dk = docker.new({socket_path="/var/run/docker.sock"}) +local dockerd_running = dk:_ping().code == 200 +local docker_info = dockerd_running and dk:info().body or {} +local docker_aspace = 0 +if docker_info.DockerRootDir then + local statvfs = nixio.fs.statvfs(docker_info.DockerRootDir) + docker_aspace = statvfs and (statvfs.bavail * statvfs.bsize) or 0 +end + +s = m:section(SimpleSection, translate("Service Status"), translate("Plex status:")) +s:append(Template("plex/status")) + +s = m:section(TypedSection, "main", translate("Setup"), + (docker_aspace < 2147483648 and + (translate("The free space of Docker is less than 2GB, which may cause the installation to fail.") + .. "
") or "") .. 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 Token"), translatef("Obtain token from %s", "Plex")) +o.datatype = "string" + +o = s:option(Value, "port", translate("Port").."*") +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.default = "linuxserver/plex:latest" +if "x86_64" == docker_info.Architecture then + o:value("plexinc/pms-docker:latest", "plexinc/pms-docker:latest [x86_64]") + o:value("plexinc/pms-docker:1.29.2.6364-6d72b0cf6", "plexinc/pms-docker:1.29.2.6364-6d72b0cf6 [x86_64]") +end +o:value("linuxserver/plex:latest", "linuxserver/plex:latest") +o:value("linuxserver/plex:1.29.2", "linuxserver/plex:1.29.2") + +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"), translatef("Not required, all disk will be mounted under %s", "path=/root/mnt' target='_blank'>/mnt")) +o.datatype = "string" + +o = s:option(Value, "cache_path", translate("Transcode cache path").."*", translate("Please make sure there has enough space")) +o.rmempty = false +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/luasrc/model/plex.lua b/luasrc/model/plex.lua new file mode 100644 index 0000000..b203420 --- /dev/null +++ b/luasrc/model/plex.lua @@ -0,0 +1,55 @@ +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["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 + +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/luasrc/view/plex/status.htm b/luasrc/view/plex/status.htm new file mode 100644 index 0000000..26977b4 --- /dev/null +++ b/luasrc/view/plex/status.htm @@ -0,0 +1,31 @@ +<% +local util = require "luci.util" +local container_status = util.trim(util.exec("/usr/libexec/apps/plex.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/apps/plex.sh port")) + if port == "" then + port="32400" + end +-%> +
+ +
+ + +
+
+<% end %> diff --git a/root/etc/config/plex b/root/etc/config/plex new file mode 100644 index 0000000..6e705be --- /dev/null +++ b/root/etc/config/plex @@ -0,0 +1,6 @@ +config main + option 'hostnet' '0' + option 'claim_token' '' + option 'port' '32400' + option 'config_path' '' + diff --git a/root/etc/uci-defaults/luci-app-plex b/root/etc/uci-defaults/luci-app-plex new file mode 100644 index 0000000..950e1c2 --- /dev/null +++ b/root/etc/uci-defaults/luci-app-plex @@ -0,0 +1,11 @@ +#!/bin/sh + +image_name=`uci get plex.@main[0].image_name 2>/dev/null` + +if [ "$image_name" == "plexinc/pms-docker:latest" -a "`uname -m`" != "x86_64" ]; then + uci -q batch <<-EOF >/dev/null + set plex.@main[0].image_name="" + commit plex +EOF +fi +exit 0 diff --git a/root/usr/libexec/apps/plex.sh b/root/usr/libexec/apps/plex.sh new file mode 100755 index 0000000..5c28143 --- /dev/null +++ b/root/usr/libexec/apps/plex.sh @@ -0,0 +1,109 @@ + #!/bin/sh + + +ACTION=${1} +shift 1 + +do_install() { + local hostnet=`uci get plex.@main[0].hostnet 2>/dev/null` + local claim_token==`uci get plex.@main[0].claim_token 2>/dev/null` + local port=`uci get plex.@main[0].port 2>/dev/null` + local image_name=`uci get plex.@main[0].image_name 2>/dev/null` + local config=`uci get plex.@main[0].config_path 2>/dev/null` + local media=`uci get plex.@main[0].media_path 2>/dev/null` + local cache=`uci get plex.@main[0].cache_path 2>/dev/null` + + if [ -z "$config" ]; then + echo "config path is empty!" + exit 1 + fi + if [ -z "$cache" ]; then + echo "cache path is empty!" + exit 1 + fi + + [ -z "$image_name" ] && image_name="linuxserver/plex:latest" + echo "docker pull ${image_name}" + docker pull ${image_name} + docker rm -f plex + + [ -z "$port" ] && port=32400 + + local cmd="docker run --restart=unless-stopped -d -h PlexServer -v \"$config:/config\" " + + if [ -d /dev/dri ]; then + cmd="$cmd\ + --device /dev/dri:/dev/dri \ + --privileged " + fi + + if [ "$hostnet" = 1 ]; then + cmd="$cmd\ + --dns=127.0.0.1 \ + --network=host " + else + cmd="$cmd\ + --dns=172.17.0.1 \ + -p 3005:3005/tcp \ + -p 8324:8324/tcp \ + -p 32469:32469/tcp \ + -p 32410:32410/udp \ + -p 32412:32412/udp \ + -p 32413:32413/udp \ + -p 32414:32414/udp \ + -p $port:32400 " + fi + + local tz="`uci get system.@system[0].zonename`" + [ -z "$tz" ] || cmd="$cmd -e TZ=$tz" + + [ -z "$claim_token" ] || cmd="$cmd -e \"PLEX_CLAIM=$claim_token\"" + + cmd="$cmd -v \"$cache:/transcode\"" + cmd="$cmd -v \"$cache:/config/Library/Application Support/Plex Media Server/Cache\"" + [ -z "$media" ] || cmd="$cmd -v \"$media:/data\"" + + cmd="$cmd -v /mnt:/mnt" + mountpoint -q /mnt && cmd="$cmd:rslave" + cmd="$cmd --name plex \"$image_name\"" + + echo "$cmd" + eval "$cmd" +} + +usage() { + echo "usage: $0 sub-command" + echo "where sub-command is one of:" + echo " install Install the plex" + echo " upgrade Upgrade the plex" + echo " rm/start/stop/restart Remove/Start/Stop/Restart the plex" + echo " status Plex status" + echo " port Plex port" +} + +case ${ACTION} in + "install") + do_install + ;; + "upgrade") + do_install + ;; + "rm") + docker rm -f plex + ;; + "start" | "stop" | "restart") + docker ${ACTION} plex + ;; + "status") + docker ps --all -f 'name=plex' --format '{{.State}}' + ;; + "port") + local port=`docker ps --all -f 'name=plex' --format '{{.Ports}}' | grep -om1 '0.0.0.0:[0-9]*->32400/tcp' | sed 's/0.0.0.0:\([0-9]*\)->.*/\1/'` + [ -z "$port" ] && port=32400 + echo $port + ;; + *) + usage + exit 1 + ;; +esac diff --git a/root/usr/share/rpcd/acl.d/luci-app-plex.json b/root/usr/share/rpcd/acl.d/luci-app-plex.json new file mode 100644 index 0000000..a37079b --- /dev/null +++ b/root/usr/share/rpcd/acl.d/luci-app-plex.json @@ -0,0 +1,11 @@ +{ + "luci-app-plex": { + "description": "Grant UCI access for luci-app-plex", + "read": { + "uci": [ "plex" ] + }, + "write": { + "uci": [ "plex" ] + } + } +} diff --git a/simple-install.sh b/simple-install.sh new file mode 100755 index 0000000..b0eb224 --- /dev/null +++ b/simple-install.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# run in router +APPNAME=$1 + +if [ -z "${APPNAME}" ]; then + APPNAME=plex +fi + +mkdir -p /usr/lib/lua/luci/view/${APPNAME} +cp ./luasrc/controller/${APPNAME}.lua /usr/lib/lua/luci/controller/ +cp ./luasrc/view/${APPNAME}/* /usr/lib/lua/luci/view/${APPNAME}/ +cp -rf ./luasrc/model/* /usr/lib/lua/luci/model/ +cp -rf ./root/* / +rm -rf /tmp/luci-* +