op-packages/luci-app-nextcloud/luasrc/model/cbi/nextcloud.lua
github-actions[bot] 32600acc60 🌴 Sync 2026-03-05 23:51:42
2026-03-05 23:51:42 +08:00

46 lines
1.5 KiB
Lua

--[[
LuCI - Lua Configuration Interface
]]--
local taskd = require "luci.model.tasks"
local nextcloud_model = require "luci.model.nextcloud"
local m, s, o
m = taskd.docker_map("nextcloud", "nextcloud", "/usr/libexec/istorec/nextcloud.sh",
translate("Nextcloud"),
translate("A safe home for all your data. Access & share your files, calendars, contacts, mail & more from any device, on your terms.")
.. translate("Official website:") .. ' <a href=\"https://nextcloud.com/\" target=\"_blank\">https://nextcloud.com/</a>')
s = m:section(SimpleSection, translate("Service Status"), translate("Nextcloud status:"))
s:append(Template("nextcloud/status"))
s = m:section(TypedSection, "nextcloud", translate("Setup"), translate("The following parameters will only take effect during installation or upgrade:"))
s.addremove=false
s.anonymous=true
o = s:option(Value, "port", translate("Port").."<b>*</b>")
o.rmempty = false
o.default = "8082"
o.datatype = "port"
o = s:option(Value, "image_name", translate("Image").."<b>*</b>")
o.rmempty = false
o.datatype = "string"
o:value("nextcloud", "nextcloud")
o.default = "nextcloud"
local blocks = nextcloud_model.blocks()
local home = nextcloud_model.home()
o = s:option(Value, "config_path", translate("Config path").."<b>*</b>")
o.rmempty = false
o.datatype = "string"
local paths, default_path = nextcloud_model.find_paths(blocks, home, "Configs")
for _, val in pairs(paths) do
o:value(val, val)
end
o.default = default_path
return m