luci-app-frpc: add plugin options 5935/head
authorLiangbin Lian <jjm2473@gmail.com>
Tue, 16 Aug 2022 06:03:09 +0000 (14:03 +0800)
committerLiangbin Lian <jjm2473@gmail.com>
Wed, 17 Aug 2022 13:36:52 +0000 (21:36 +0800)
Signed-off-by: Liangbin Lian <jjm2473@gmail.com>
applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js
applications/luci-app-frpc/po/templates/frpc.pot
applications/luci-app-frpc/po/zh_Hans/frpc.po

index 84eb9f86557f527198f5b183b908ef55a32fac86..0999ba0294e4122879354e79d602ee3878060170 100644 (file)
@@ -72,6 +72,16 @@ var stcpProxyConf = [
        [form.Value, 'sk', _('Sk')],
 ];
 
+var pluginConf = [
+       [form.ListValue, 'plugin', _('Plugin'), undefined, {values: ['', 'http_proxy', 'socks5', 'unix_domain_socket'], rmempty: true}],
+       [form.Value, 'plugin_http_user', _('HTTP user'), undefined, {depends: {plugin: 'http_proxy'}}],
+       [form.Value, 'plugin_http_passwd', _('HTTP password'), undefined, {depends: {plugin: 'http_proxy'}}],
+       [form.Value, 'plugin_user', _('SOCKS5 user'), undefined, {depends: {plugin: 'socks5'}}],
+       [form.Value, 'plugin_passwd', _('SOCKS5 password'), undefined, {depends: {plugin: 'socks5'}}],
+       [form.Value, 'plugin_unix_path', _('Unix domain socket path'), undefined, {depends: {plugin: 'unix_domain_socket'}, optional: false, rmempty: false,
+               datatype: 'file', placeholder: '/var/run/docker.sock', default: '/var/run/docker.sock'}],
+];
+
 function setParams(o, params) {
        if (!params) return;
        for (var key in params) {
@@ -207,6 +217,7 @@ return view.extend({
 
                s.tab('general', _('General Settings'));
                s.tab('http', _('HTTP Settings'));
+               s.tab('plugin', _('Plugin Settings'));
 
                s.option(form.Value, 'name', _('Proxy name')).modalonly = false;
                s.option(form.Value, 'type', _('Proxy type')).modalonly = false;
@@ -235,6 +246,9 @@ return view.extend({
                // STCP and XTCP
                defTabOpts(s, 'general', stcpProxyConf, {modalonly: true, depends: [{type: 'stcp'}, {type: 'xtcp'}]});
 
+               // Plugin
+               defTabOpts(s, 'plugin', pluginConf, {modalonly: true});
+
                return m.render();
        }
 });
index 87e72ffe7123c6eec90149b5fee8a27a87aff4fe..938dea5729819b51ca6bed4e252f4d4d9529eb65 100644 (file)
@@ -410,3 +410,18 @@ msgstr ""
 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3
 msgid "frp Client"
 msgstr ""
+
+msgid "Plugin Settings"
+msgstr ""
+
+msgid "Plugin"
+msgstr ""
+
+msgid "SOCKS5 user"
+msgstr ""
+
+msgid "SOCKS5 password"
+msgstr ""
+
+msgid "Unix domain socket path"
+msgstr ""
index 61e94001d4df379a92d5ab7130dcc732e6125d8a..e876bcccd4ecd24186925f0d9d5f4252c02e109f 100644 (file)
@@ -454,5 +454,20 @@ msgstr ""
 msgid "frp Client"
 msgstr "frp 客户端"
 
+msgid "Plugin Settings"
+msgstr "插件设置"
+
+msgid "Plugin"
+msgstr "插件"
+
+msgid "SOCKS5 user"
+msgstr "SOCKS5 用户"
+
+msgid "SOCKS5 password"
+msgstr "SOCKS5 密码"
+
+msgid "Unix domain socket path"
+msgstr "Unix 域套接字路径"
+
 #~ msgid "Name can not be \"common\""
 #~ msgstr "名称不能\"common\""