mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
61 lines
2.5 KiB
Lua
61 lines
2.5 KiB
Lua
m = Map("aliyundrive-webdav")
|
|
m.title = translate("AliyunDrive WebDAV")
|
|
m.description = translate("<a href=\"https://github.com/messense/aliyundrive-webdav\" target=\"_blank\">Project GitHub URL</a>")
|
|
|
|
m:section(SimpleSection).template = "aliyundrive-webdav/aliyundrive-webdav_status"
|
|
|
|
e = m:section(TypedSection, "server")
|
|
e.anonymous = true
|
|
|
|
enable = e:option(Flag, "enable", translate("Enable"))
|
|
enable.rmempty = false
|
|
|
|
refresh_token = e:option(Value, "refresh_token", translate("Refresh Token"))
|
|
refresh_token.description = translate("<a href=\"https://github.com/messense/aliyundrive-webdav#%E8%8E%B7%E5%8F%96-refresh_token\" target=\"_blank\">How to get refresh token</a>")
|
|
|
|
root = e:option(Value, "root", translate("Root Directory"))
|
|
root.description = translate("Restrict access to a folder of aliyundrive, defaults to / which means no restrictions")
|
|
root.default = "/"
|
|
|
|
host = e:option(Value, "host", translate("Host"))
|
|
host.default = "0.0.0.0"
|
|
host.datatype = "ipaddr"
|
|
|
|
port = e:option(Value, "port", translate("Port"))
|
|
port.default = "8080"
|
|
port.datatype = "port"
|
|
|
|
tls_cert = e:option(Value, "tls_cert", translate("TLS certificate file path"))
|
|
tls_key = e:option(Value, "tls_key", translate("TLS private key file path"))
|
|
|
|
auth_user = e:option(Value, "auth_user", translate("Username"))
|
|
auth_password = e:option(Value, "auth_password", translate("Password"))
|
|
auth_password.password = true
|
|
|
|
read_buffer_size = e:option(Value, "read_buffer_size", translate("Read Buffer Size"))
|
|
read_buffer_size.default = "10485760"
|
|
read_buffer_size.datatype = "uinteger"
|
|
|
|
cache_size = e:option(Value, "cache_size", translate("Cache Size"))
|
|
cache_size.default = "1000"
|
|
cache_size.datatype = "uinteger"
|
|
|
|
cache_ttl = e:option(Value, "cache_ttl", translate("Cache Expiration Time (seconds)"))
|
|
cache_ttl.default = "600"
|
|
cache_ttl.datatype = "uinteger"
|
|
|
|
no_trash = e:option(Flag, "no_trash", translate("Delete file permanently instead of trashing"))
|
|
no_trash.rmempty = false
|
|
|
|
read_only = e:option(Flag, "read_only", translate("Enable read only mode"))
|
|
read_only.description = translate("Disallow upload, modify and delete file operations")
|
|
read_only.rmempty = false
|
|
|
|
domain_id = e:option(Value, "domain_id", translate("Domain ID"))
|
|
domain_id.description = translate("Input domain_id option will use <a href=\"https://www.aliyun.com/product/storage/pds\" target=\"_blank\">Aliyun PDS</a> instead of <a href=\"https://www.aliyundrive.com\" target=\"_blank\">AliyunDrive</a>")
|
|
|
|
debug = e:option(Flag, "debug", translate("Debug Mode"))
|
|
debug.rmempty = false
|
|
|
|
return m
|