You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.5 KiB
Lua
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/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:") .. ' <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
|