mirror of
https://github.com/yhl452493373/frpc-panel.git
synced 2026-04-04 06:17:00 +08:00
334 lines
11 KiB
JavaScript
334 lines
11 KiB
JavaScript
var loadProxyInfo = (function ($) {
|
|
var i18n = {}, currentProxyType, currentTitle;
|
|
//param names in Basic tab
|
|
var basicParamNames = ['name', 'type', 'local_ip', 'local_port', 'custom_domains', 'subdomain', 'remote_port', 'use_encryption', 'use_compression'];
|
|
|
|
/**
|
|
* get proxy info
|
|
* @param lang {{}} language json
|
|
* @param title page title
|
|
* @param proxyType proxy type
|
|
*/
|
|
function loadProxyInfo(lang, title, proxyType) {
|
|
if (lang != null)
|
|
i18n = lang;
|
|
if (title != null)
|
|
currentTitle = title;
|
|
if (proxyType != null)
|
|
currentProxyType = proxyType.toLowerCase();
|
|
$("#title").text(currentTitle);
|
|
$('#content').empty();
|
|
var loading = layui.layer.load();
|
|
|
|
$.getJSON('/proxy/api/config', {
|
|
type: currentProxyType
|
|
}).done(function (result) {
|
|
if (result.success) {
|
|
$('#content').html($('#proxyListTableTemplate').html());
|
|
renderProxyListTable(result.data);
|
|
} else {
|
|
layui.layer.msg(result.message);
|
|
}
|
|
}).always(function () {
|
|
layui.layer.close(loading);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* render proxy list table
|
|
* @param data {Map<string,Map<string,string>>} proxy data
|
|
*/
|
|
function renderProxyListTable(data) {
|
|
var dataList = [];
|
|
for (var key in data) {
|
|
var temp = data[key];
|
|
temp.name = key;
|
|
temp.local_ip = temp.local_ip || '-';
|
|
temp.local_port = temp.local_port || '-';
|
|
temp.use_encryption = temp.use_encryption || false;
|
|
if (currentProxyType === 'http' || currentProxyType === 'https') {
|
|
temp.custom_domains = temp.custom_domains || '-';
|
|
temp.subdomain = temp.subdomain || '-';
|
|
}
|
|
dataList.push(temp);
|
|
}
|
|
|
|
var $section = $('#content > section');
|
|
var cols = [
|
|
{type: 'checkbox'},
|
|
{field: 'name', title: i18n['Name'], sort: true},
|
|
{field: 'type', title: i18n['Type'], width: 110, sort: true},
|
|
{field: 'local_ip', title: i18n['LocalIp'], width: 150, sort: true},
|
|
{field: 'local_port', title: i18n['LocalPort'], width: 120, sort: true},
|
|
];
|
|
|
|
if (currentProxyType === 'tcp' || currentProxyType === 'udp') {
|
|
cols.push({field: 'remote_port', title: i18n['RemotePort'], width: 130, sort: true});
|
|
} else if (currentProxyType === 'http' || currentProxyType === 'https') {
|
|
cols.push({field: 'custom_domains', title: i18n['CustomDomains'], sort: true});
|
|
cols.push({field: 'subdomain', title: i18n['Subdomain'], width: 150, sort: true});
|
|
}
|
|
|
|
cols.push({
|
|
field: 'use_encryption', title: i18n['UseEncryption'], width: 170, templet: function (d) {
|
|
return i18n[d.use_encryption]
|
|
}, sort: true
|
|
});
|
|
cols.push({
|
|
field: 'use_compression', title: i18n['UseCompression'], width: 170, templet: function (d) {
|
|
return i18n[d.use_compression]
|
|
}, sort: true
|
|
});
|
|
cols.push({title: i18n['Operation'], width: 150, toolbar: '#proxyListOperationTemplate'});
|
|
|
|
var proxyListTable = layui.table.render({
|
|
elem: '#proxyListTable',
|
|
height: $section.height(),
|
|
text: {none: i18n['EmptyData']},
|
|
cols: [cols],
|
|
page: {
|
|
layout: navigator.language.indexOf("zh") === -1 ? ['first', 'prev', 'next', 'last'] : ['prev', 'page', 'next', 'skip', 'count', 'limit']
|
|
},
|
|
toolbar: '#proxyListToolbarTemplate',
|
|
defaultToolbar: false,
|
|
data: dataList,
|
|
initSort: {
|
|
field: 'name',
|
|
type: 'asc'
|
|
}
|
|
});
|
|
|
|
window.onresize = function () {
|
|
proxyListTable.resize();
|
|
}
|
|
|
|
bindFormEvent();
|
|
}
|
|
|
|
/**
|
|
* bind event of {{@link layui.form}}
|
|
*/
|
|
function bindFormEvent() {
|
|
layui.table.on('toolbar(proxyListTable)', function (obj) {
|
|
var id = obj.config.id;
|
|
var checkStatus = layui.table.checkStatus(id);
|
|
var data = checkStatus.data;
|
|
|
|
for (var key in data) {
|
|
data[key] = data[key] === '-' ? '' : data[key];
|
|
}
|
|
|
|
switch (obj.event) {
|
|
case 'add':
|
|
proxyPopup({
|
|
type: currentProxyType
|
|
}, false);
|
|
break
|
|
case 'remove':
|
|
batchRemovePopup(data);
|
|
break
|
|
}
|
|
});
|
|
|
|
layui.table.on('tool(proxyListTable)', function (obj) {
|
|
var data = obj.data;
|
|
|
|
for (var key in data) {
|
|
data[key] = data[key] === '-' ? '' : data[key];
|
|
}
|
|
|
|
switch (obj.event) {
|
|
case 'update':
|
|
proxyPopup(data, true);
|
|
break;
|
|
case 'remove':
|
|
batchRemovePopup([data]);
|
|
break;
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* addOrUpdate proxy popup
|
|
* @param data {Map<string,object>} proxy data
|
|
* @param update update flag. true - update, false - add
|
|
*/
|
|
function proxyPopup(data, update) {
|
|
var basicData = {};
|
|
var extraData = [];
|
|
if (data != null) {
|
|
var tempData = $.extend(true, {}, data);
|
|
basicParamNames.forEach(function (basicName) {
|
|
if (data.hasOwnProperty(basicName)) {
|
|
basicData[basicName] = tempData[basicName];
|
|
delete tempData[basicName];
|
|
}
|
|
});
|
|
for (var key in tempData) {
|
|
extraData.push({
|
|
name: key,
|
|
value: tempData[key]
|
|
});
|
|
}
|
|
}
|
|
var html = document.getElementById('addProxyTemplate').innerHTML;
|
|
var content = layui.laytpl(html).render({
|
|
type: currentProxyType,
|
|
extraData: extraData
|
|
});
|
|
layui.layer.open({
|
|
type: 1,
|
|
title: false,
|
|
skin: 'proxy-popup',
|
|
area: ['400px', '400px'],
|
|
content: content,
|
|
btn: [i18n['Confirm'], i18n['Cancel']],
|
|
btn1: function (index) {
|
|
if (layui.form.validate('#addProxyTemplate')) {
|
|
var formData = layui.form.val('addProxyForm');
|
|
var $items = $('#addProxyForm .extra-param-tab-item .extra-param-item');
|
|
$items.each(function () {
|
|
var name = $(this).find('input').first().val();
|
|
var value = $(this).find('input').last().val();
|
|
formData[name] = value;
|
|
});
|
|
|
|
addOrUpdate(formData, index, update);
|
|
}
|
|
},
|
|
btn2: function (index) {
|
|
layui.layer.close(index);
|
|
},
|
|
success: function (layero, index, that) {
|
|
//get and set old name for update form
|
|
var oldNameKey = layero.find('#oldName').attr('name');
|
|
basicData[oldNameKey] = basicData.name;
|
|
layui.form.val('addProxyForm', basicData);
|
|
proxyPopupSuccess();
|
|
}
|
|
});
|
|
}
|
|
|
|
function proxyPopupSuccess() {
|
|
layui.form.render(null, 'addProxyForm');
|
|
layui.form.on('input-affix(addition)', function (obj) {
|
|
var $paramValue = $(obj.elem);
|
|
var $paramName = $paramValue.closest('.layui-form-item').find('input');
|
|
var name = $paramName.first().val();
|
|
var value = $paramValue.val();
|
|
var html = document.getElementById('extraParamAddedTemplate').innerHTML;
|
|
var formItem = layui.laytpl(html).render({
|
|
name: name,
|
|
value: value
|
|
});
|
|
$paramValue.closest('.layui-tab-item').append(formItem);
|
|
$paramName.val('');
|
|
$paramValue.val('');
|
|
|
|
layui.form.render();
|
|
});
|
|
layui.form.on('input-affix(subtraction)', function (obj) {
|
|
var $elem = $(obj.elem);
|
|
$elem.closest('.layui-form-item').remove();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* addOrUpdate proxy action
|
|
* @param data proxy data
|
|
* @param index popup index
|
|
* @param update update flag. true - update, false - add
|
|
*/
|
|
function addOrUpdate(data, index, update) {
|
|
var loading = layui.layer.load();
|
|
var url = '';
|
|
if (update) {
|
|
url = '/update';
|
|
} else {
|
|
url = '/add?type=' + currentProxyType;
|
|
}
|
|
$.ajax({
|
|
url: url,
|
|
type: 'post',
|
|
contentType: 'application/json',
|
|
data: JSON.stringify(data),
|
|
success: function (result) {
|
|
if (result.success) {
|
|
reloadTable();
|
|
layui.layer.close(index);
|
|
layui.layer.msg(i18n['OperateSuccess'], function (index) {
|
|
layui.layer.close(index);
|
|
});
|
|
} else {
|
|
errorMsg(result);
|
|
}
|
|
},
|
|
complete: function () {
|
|
layui.layer.close(loading);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* batch remove proxy popup
|
|
* @param data {[Map<string,string>]} proxy data list
|
|
*/
|
|
function batchRemovePopup(data) {
|
|
if (data.length === 0) {
|
|
layui.layer.msg(i18n['ShouldCheckProxy']);
|
|
return;
|
|
}
|
|
layui.layer.confirm(i18n['ConfirmRemoveProxy'], {
|
|
title: i18n['OperationConfirm'],
|
|
btn: [i18n['Confirm'], i18n['Cancel']]
|
|
}, function (index) {
|
|
var loading = layui.layer.load();
|
|
$.post({
|
|
url: '/remove',
|
|
type: 'post',
|
|
contentType: 'application/json',
|
|
data: JSON.stringify(data),
|
|
success: function (result) {
|
|
if (result.success) {
|
|
reloadTable();
|
|
layui.layer.close(index);
|
|
layui.layer.msg(i18n['OperateSuccess'], function (index) {
|
|
layui.layer.close(index);
|
|
});
|
|
} else {
|
|
errorMsg(result);
|
|
}
|
|
},
|
|
complete: function () {
|
|
layui.layer.close(loading);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* reload proxy table
|
|
*/
|
|
function reloadTable() {
|
|
loadProxyInfo(null, null, null);
|
|
}
|
|
|
|
/**
|
|
* show error message popup
|
|
* @param result
|
|
*/
|
|
function errorMsg(result) {
|
|
var reason = i18n['OtherError'];
|
|
if (result.code === 1)
|
|
reason = i18n['ParamError'];
|
|
else if (result.code === 2)
|
|
reason = i18n['FrpClientError'];
|
|
else if (result.code === 3)
|
|
reason = i18n['ProxyExist'];
|
|
else if (result.code === 4)
|
|
reason = i18n['ProxyNotExist'];
|
|
layui.layer.msg(i18n['OperateFailed'] + ',' + reason)
|
|
}
|
|
|
|
return loadProxyInfo;
|
|
})(layui.$); |