--[[
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/apps/nextcloud/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:") .. ' https://nextcloud.com/')
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").."*")
o.rmempty = false
o.default = "8082"
o.datatype = "port"
o = s:option(Value, "image_name", translate("Image").."*")
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").."*")
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