support emby
This commit is contained in:
parent
b24f2d1e37
commit
04214e0e39
18
applications/luci-app-emby/Makefile
Normal file
18
applications/luci-app-emby/Makefile
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_VERSION:=1.0.0-20221106
|
||||||
|
PKG_RELEASE:=
|
||||||
|
|
||||||
|
LUCI_TITLE:=LuCI support for Emby
|
||||||
|
LUCI_PKGARCH:=all
|
||||||
|
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||||
|
|
||||||
|
define Package/luci-app-emby/conffiles
|
||||||
|
/etc/config/emby
|
||||||
|
endef
|
||||||
|
|
||||||
|
include $(TOPDIR)/feeds/luci/luci.mk
|
||||||
|
|
||||||
|
# call BuildPackage - OpenWrt buildroot signature
|
7
applications/luci-app-emby/luasrc/controller/emby.lua
Executable file
7
applications/luci-app-emby/luasrc/controller/emby.lua
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
|
||||||
|
module("luci.controller.emby", package.seeall)
|
||||||
|
|
||||||
|
function index()
|
||||||
|
entry({"admin", "services", "emby"}, alias("admin", "services", "emby", "config"), _("Emby"), 30).dependent = true
|
||||||
|
entry({"admin", "services", "emby", "config"}, cbi("emby"))
|
||||||
|
end
|
63
applications/luci-app-emby/luasrc/model/cbi/emby.lua
Normal file
63
applications/luci-app-emby/luasrc/model/cbi/emby.lua
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
--[[
|
||||||
|
LuCI - Lua Configuration Interface
|
||||||
|
]]--
|
||||||
|
|
||||||
|
local taskd = require "luci.model.tasks"
|
||||||
|
local emby_model = require "luci.model.emby"
|
||||||
|
local m, s, o
|
||||||
|
|
||||||
|
m = taskd.docker_map("emby", "emby", "/usr/libexec/istorec/emby.sh",
|
||||||
|
translate("Emby"),
|
||||||
|
translate("Emby brings together your personal videos, music, photos, and live television.")
|
||||||
|
.. translate("Official website:") .. ' <a href=\"https://emby.media/\" target=\"_blank\">https://emby.media/</a>')
|
||||||
|
|
||||||
|
s = m:section(SimpleSection, translate("Service Status"), translate("Emby status:"))
|
||||||
|
s:append(Template("emby/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("Emby running in host network, for DLNA application, port is always 8096 if enabled"))
|
||||||
|
o.default = 0
|
||||||
|
o.rmempty = false
|
||||||
|
|
||||||
|
o = s:option(Value, "http_port", translate("HTTP Port").."<b>*</b>")
|
||||||
|
o.rmempty = false
|
||||||
|
o.default = "8096"
|
||||||
|
o.datatype = "http_port"
|
||||||
|
o:depends("hostnet", 0)
|
||||||
|
|
||||||
|
o = s:option(Value, "image_name", translate("Image").."<b>*</b>")
|
||||||
|
o.rmempty = false
|
||||||
|
o.datatype = "string"
|
||||||
|
o:value("emby/embyserver", "emby/embyserver")
|
||||||
|
o:value("emby/embyserver_arm32v7", "emby/embyserver_arm32v7")
|
||||||
|
o:value("emby/embyserver_arm64v8", "emby/embyserver_arm64v8")
|
||||||
|
o.default = "emby/embyserver"
|
||||||
|
|
||||||
|
local blocks = emby_model.blocks()
|
||||||
|
local home = emby_model.home()
|
||||||
|
|
||||||
|
o = s:option(Value, "config_path", translate("Config path").."<b>*</b>")
|
||||||
|
o.rmempty = false
|
||||||
|
o.datatype = "string"
|
||||||
|
|
||||||
|
local paths, default_path = emby_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 = emby_model.find_paths(blocks, home, "Caches")
|
||||||
|
for _, val in pairs(paths) do
|
||||||
|
o:value(val, val)
|
||||||
|
end
|
||||||
|
o.default = default_path
|
||||||
|
|
||||||
|
return m
|
54
applications/luci-app-emby/luasrc/model/emby.lua
Normal file
54
applications/luci-app-emby/luasrc/model/emby.lua
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
local util = require "luci.util"
|
||||||
|
local jsonc = require "luci.jsonc"
|
||||||
|
|
||||||
|
local emby = {}
|
||||||
|
|
||||||
|
emby.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
|
||||||
|
|
||||||
|
emby.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
|
||||||
|
|
||||||
|
emby.find_paths = function(blocks, home_dirs, path_name)
|
||||||
|
local default_path = ''
|
||||||
|
local configs = {}
|
||||||
|
|
||||||
|
default_path = home_dirs[path_name] .. "/Emby"
|
||||||
|
if #blocks == 0 then
|
||||||
|
table.insert(configs, default_path)
|
||||||
|
else
|
||||||
|
for _, val in pairs(blocks) do
|
||||||
|
table.insert(configs, val .. "/" .. path_name .. "/Emby")
|
||||||
|
end
|
||||||
|
local without_conf_dir = "/root/" .. path_name .. "/Emby"
|
||||||
|
if default_path == without_conf_dir then
|
||||||
|
default_path = configs[1]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return configs, default_path
|
||||||
|
end
|
||||||
|
|
||||||
|
return emby
|
31
applications/luci-app-emby/luasrc/view/emby/status.htm
Normal file
31
applications/luci-app-emby/luasrc/view/emby/status.htm
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<%
|
||||||
|
local util = require "luci.util"
|
||||||
|
local container_status = util.trim(util.exec("/usr/libexec/istorec/emby.sh status"))
|
||||||
|
local container_install = (string.len(container_status) > 0)
|
||||||
|
local container_running = container_status == "running"
|
||||||
|
-%>
|
||||||
|
<div class="cbi-value">
|
||||||
|
<label class="cbi-value-title"><%:Status%></label>
|
||||||
|
<div class="cbi-value-field">
|
||||||
|
<% if container_running then %>
|
||||||
|
<button class="cbi-button cbi-button-success" disabled="true"><%:Emby is running%></button>
|
||||||
|
<% else %>
|
||||||
|
<button class="cbi-button cbi-button-negative" disabled="true"><%:Emby is not running%></button>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<%
|
||||||
|
if container_running then
|
||||||
|
local port=util.trim(util.exec("/usr/libexec/istorec/emby.sh port"))
|
||||||
|
if port == "" then
|
||||||
|
port="32400"
|
||||||
|
end
|
||||||
|
-%>
|
||||||
|
<div class="cbi-value cbi-value-last">
|
||||||
|
<label class="cbi-value-title"> </label>
|
||||||
|
<div class="cbi-value-field">
|
||||||
|
|
||||||
|
<input type="button" class="btn cbi-button cbi-button-apply" name="start" value="<%:Open Emby%>" onclick="window.open('http://'+location.hostname+':<%=port%>/web/', '_blank')">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
38
applications/luci-app-emby/po/zh-cn/emby.po
Normal file
38
applications/luci-app-emby/po/zh-cn/emby.po
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||||
|
|
||||||
|
msgid "Official website:"
|
||||||
|
msgstr "官方网站:"
|
||||||
|
|
||||||
|
msgid "Emby brings together your personal videos, music, photos, and live television."
|
||||||
|
msgstr "Emby 是一个多媒体串流平台。"
|
||||||
|
|
||||||
|
msgid "Config path"
|
||||||
|
msgstr "配置文件路径"
|
||||||
|
|
||||||
|
msgid "HTTP Port"
|
||||||
|
msgstr "HTTP 端口"
|
||||||
|
|
||||||
|
msgid "Service Status"
|
||||||
|
msgstr "服务状态"
|
||||||
|
|
||||||
|
msgid "Emby status:"
|
||||||
|
msgstr "Emby 的状态信息如下:"
|
||||||
|
|
||||||
|
msgid "Setup"
|
||||||
|
msgstr "安装配置"
|
||||||
|
|
||||||
|
msgid "The following parameters will only take effect during installation or upgrade:"
|
||||||
|
msgstr "以下参数只在安装或者升级时才会生效:"
|
||||||
|
|
||||||
|
msgid "Status"
|
||||||
|
msgstr "状态"
|
||||||
|
|
||||||
|
msgid "Emby is running"
|
||||||
|
msgstr "Emby 运行中"
|
||||||
|
|
||||||
|
msgid "Emby is not running"
|
||||||
|
msgstr "Emby 未运行"
|
||||||
|
|
||||||
|
msgid "Open Emby"
|
||||||
|
msgstr "打开 Emby"
|
6
applications/luci-app-emby/root/etc/config/emby
Normal file
6
applications/luci-app-emby/root/etc/config/emby
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
config main
|
||||||
|
option 'hostnet' '0'
|
||||||
|
option 'http_port' '8096'
|
||||||
|
option 'image_name' 'emby/embyserver:latest'
|
||||||
|
option 'config_path' ''
|
||||||
|
|
92
applications/luci-app-emby/root/usr/libexec/istorec/emby.sh
Executable file
92
applications/luci-app-emby/root/usr/libexec/istorec/emby.sh
Executable file
@ -0,0 +1,92 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Author Xiaobao(xiaobao@linkease.com)
|
||||||
|
|
||||||
|
ACTION=${1}
|
||||||
|
shift 1
|
||||||
|
|
||||||
|
do_install() {
|
||||||
|
local hostnet=`uci get emby.@main[0].hostnet 2>/dev/null`
|
||||||
|
local http_port=`uci get emby.@main[0].http_port 2>/dev/null`
|
||||||
|
local image_name=`uci get emby.@main[0].image_name 2>/dev/null`
|
||||||
|
local config=`uci get emby.@main[0].config_path 2>/dev/null`
|
||||||
|
local media=`uci get emby.@main[0].media_path 2>/dev/null`
|
||||||
|
local cache=`uci get emby.@main[0].cache_path 2>/dev/null`
|
||||||
|
|
||||||
|
[ -z "$image_name" ] && image_name="embyinc/pms-docker:latest"
|
||||||
|
echo "docker pull ${image_name}"
|
||||||
|
docker pull ${image_name}
|
||||||
|
docker rm -f emby
|
||||||
|
|
||||||
|
if [ -z "$config" ]; then
|
||||||
|
echo "config path is empty!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
[ -z "$http_port" ] && http_port=8096
|
||||||
|
|
||||||
|
local cmd="docker run --restart=unless-stopped -d -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 $http_port:8096 "
|
||||||
|
fi
|
||||||
|
|
||||||
|
local tz="`cat /tmp/TZ`"
|
||||||
|
[ -z "$tz" ] || cmd="$cmd -e TZ=$tz"
|
||||||
|
|
||||||
|
[ -z "$cache" ] || cmd="$cmd -v \"$cache:/config/cache\""
|
||||||
|
[ -z "$media" ] || cmd="$cmd -v \"$media:/data\""
|
||||||
|
|
||||||
|
cmd="$cmd -v /mnt:/mnt"
|
||||||
|
mountpoint -q /mnt && cmd="$cmd:rslave"
|
||||||
|
cmd="$cmd --name emby \"$image_name\""
|
||||||
|
|
||||||
|
echo "$cmd"
|
||||||
|
eval "$cmd"
|
||||||
|
}
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
echo "usage: $0 sub-command"
|
||||||
|
echo "where sub-command is one of:"
|
||||||
|
echo " install Install the emby"
|
||||||
|
echo " upgrade Upgrade the emby"
|
||||||
|
echo " rm/start/stop/restart Remove/Start/Stop/Restart the emby"
|
||||||
|
echo " status Plex status"
|
||||||
|
echo " port Plex port"
|
||||||
|
}
|
||||||
|
|
||||||
|
case ${ACTION} in
|
||||||
|
"install")
|
||||||
|
do_install
|
||||||
|
;;
|
||||||
|
"upgrade")
|
||||||
|
do_install
|
||||||
|
;;
|
||||||
|
"rm")
|
||||||
|
docker rm -f emby
|
||||||
|
;;
|
||||||
|
"start" | "stop" | "restart")
|
||||||
|
docker ${ACTION} emby
|
||||||
|
;;
|
||||||
|
"status")
|
||||||
|
docker ps --all -f 'name=emby' --format '{{.State}}'
|
||||||
|
;;
|
||||||
|
"port")
|
||||||
|
docker ps --all -f 'name=jellyfin' --format '{{.Ports}}' | grep -om1 '0.0.0.0:[0-9]*' | sed 's/0.0.0.0://'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
usage
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
Loading…
x
Reference in New Issue
Block a user