op-packages/luci-app-netspeedtest/htdocs/luci-static/resources/view/netspeedtest/wanspeedtest.js
github-actions[bot] 9f83df92e8 🚀 Sync 2026-03-08 00:54:34
2026-03-08 00:54:34 +08:00

481 lines
20 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright (C) 2019-2026 sirpdboy
// Fixed version - better Ookla result parsing
'use strict';
'require view';
'require poll';
'require dom';
'require fs';
'require uci';
'require ui';
'require form';
var Timeout = 300 * 1000;
var ResultFile = '/tmp/netspeedtest_result';
var SpeedtestScript = '/usr/bin/netspeedtest.sh';
return view.extend({
load() {
return Promise.all([
L.resolveDefault(fs.stat('/usr/bin/ookla-speedtest'), {}),
L.resolveDefault(fs.stat('/usr/bin/speedtest'), {}),
L.resolveDefault(fs.read(ResultFile), null),
L.resolveDefault(fs.stat(ResultFile), {}),
uci.load('netspeedtest')
]);
},
// 检测可用版本
detectVersions: function(res) {
var hasOokla = !!(res[0] && res[0].path);
var hasPython = !!(res[1] && res[1].path);
return {
ookla: hasOokla,
python: hasPython,
available: hasOokla || hasPython
};
},
// 检查是否真正在测试中文件新鲜且内容为Testing
isTesting: function(resultContent, resultMtime) {
if (!resultContent || resultContent.length === 0) return false;
if (resultContent[0].trim() !== 'Testing') return false;
// 检查文件是否在超时时间内
var fileAge = Date.now() - resultMtime;
return fileAge < Timeout;
},
// 解析结果内容
parseResult: function(content) {
if (!content || content.length === 0) {
return { type: 'none', data: null };
}
var firstLine = content[0].trim();
// 检查是否是Testing状态
if (firstLine === 'Testing') {
return { type: 'testing', data: null };
}
// 检查是否是失败状态
if (firstLine === 'Test failed') {
return { type: 'failed', data: null };
}
// 检查是否包含Result URL (Ookla格式)
var resultUrl = null;
for (var i = 0; i < content.length; i++) {
var line = content[i];
if (line.match(/Result URL:/i)) {
var urlMatch = line.match(/https?:\/\/[^\s]+/);
if (urlMatch) {
resultUrl = urlMatch[0];
break;
}
}
}
if (resultUrl) {
return { type: 'url', data: resultUrl };
}
// 检查是否是直接URL (Python格式)
if (firstLine.match(/^https?:\/\//) || firstLine.match(/\.png$/)) {
return { type: 'url', data: firstLine };
}
// 检查是否是速度数据
if (firstLine.match(/Download:/i) || firstLine.match(/Upload:/i)) {
return { type: 'speed', data: content.join('\n') };
}
// 其他情况,可能是完整的速度测试结果
// 检查是否包含Download和Upload信息
var hasDownload = false;
var hasUpload = false;
for (var j = 0; j < content.length; j++) {
if (content[j].match(/Download:/i)) hasDownload = true;
if (content[j].match(/Upload:/i)) hasUpload = true;
}
if (hasDownload && hasUpload) {
return { type: 'speed', data: content.join('\n') };
}
return { type: 'unknown', data: content.join('\n') };
},
poll_status(nodes, res) {
var result_content = res[2] ? res[2].trim().split("\n") : [];
var result_mtime = res[3] ? res[3].mtime * 1000 : 0;
var result_stat = nodes.querySelector('#speedtest_result');
var start_btn = nodes.querySelector('.cbi-button-apply');
// 解析结果
var result = this.parseResult(result_content);
var is_testing = this.isTesting(result_content, result_mtime);
// 更新测试按钮状态
if (start_btn) {
start_btn.disabled = is_testing;
}
// 更新结果状态
if (result_stat) {
if (is_testing) {
result_stat.innerHTML = "<span style='color:green;font-weight:bold;margin-left:20px'>" +
"<img src='/luci-static/resources/icons/loading.svg' height='17' style='vertical-align:middle; margin-right:5px'/> " +
_('Speed testing in progress...') +
"</span>";
return;
}
switch(result.type) {
case 'failed':
result_stat.innerHTML = "<span style='color:red;font-weight:bold;margin-left:20px'>" +
"⚠️ " + _('Test failed. Please check log for details.') +
"</span>";
break;
case 'url':
var imageUrl = result.data;
if (!imageUrl.match(/\.png$/)) {
imageUrl = imageUrl + '.png';
}
// 处理speedtest.net的特殊URL
if (imageUrl.includes('speedtest.net/result/')) {
imageUrl = imageUrl.replace('/result/c/', '/result/');
}
result_stat.innerHTML = "<div style='max-width:500px; margin-left:20px'>" +
"<a href='" + result.data + "' target='_blank'>" +
"<img src='" + result.data + "' style='max-width:100%; border-radius:4px; box-shadow:0 2px 4px rgba(0,0,0,0.1)' " +
"onerror='this.onerror=null; this.src=\"/luci-static/resources/icons/error.png\"'/>" +
"</a><br>" +
"</div>";
break;
case 'speed':
var lines = result.data.split('\n');
var download = '', upload = '', latency = '', packetLoss = '', server = '', isp = '';
lines.forEach(function(line) {
if (line.match(/Download:/i)) download = line;
else if (line.match(/Upload:/i)) upload = line;
else if (line.match(/Latency:/i) || line.match(/Idle Latency:/i)) latency = line;
else if (line.match(/Packet Loss:/i)) packetLoss = line;
else if (line.match(/Server:/i)) server = line;
else if (line.match(/ISP:/i)) isp = line;
});
var html = "<div style='margin-left:20px; padding:10px; background:#f5f5f5; border-radius:4px'>";
html += "<strong>" + _('Test Results:') + "</strong>";
if (server) {
html += "<div style='margin-top:5px; padding:5px; color:#666'>" +
server.trim() + "</div>";
}
if (download) {
html += "<div style='margin-top:10px; padding:8px; background:#e8f5e8; border-radius:4px'>" +
"<span style='font-weight:bold'>⬇️ " + _('Download:') + "</span> " +
"<span style='color:#2e7d32; font-weight:500'>" + download.replace(/Download:/i, '').trim() + "</span>" +
"</div>";
}
if (upload) {
html += "<div style='margin-top:5px; padding:8px; background:#e3f2fd; border-radius:4px'>" +
"<span style='font-weight:bold'>⬆️ " + _('Upload:') + "</span> " +
"<span style='color:#1565c0; font-weight:500'>" + upload.replace(/Upload:/i, '').trim() + "</span>" +
"</div>";
}
if (latency) {
html += "<div style='margin-top:5px; padding:5px; background:#f5f5f5; border-radius:4px'>" +
"<span style='font-weight:bold'>⏱️ " + _('Latency:') + "</span> " +
"<span style='color:#666'>" + latency.replace(/Latency:/i, '').replace(/Idle Latency:/i, '').trim() + "</span>" +
"</div>";
}
if (packetLoss) {
html += "<div style='margin-top:5px; padding:5px; color:#666'>" +
packetLoss.trim() + "</div>";
}
html += "</div>";
result_stat.innerHTML = html;
break;
case 'unknown':
// 未知格式,直接显示
result_stat.innerHTML = "<div style='margin-left:20px; padding:10px; background:#f5f5f5; border-radius:4px'>" +
"<strong>" + _('Test Results:') + "</strong><br>" +
"<pre style='margin:5px 0 0 0; font-family:inherit; white-space:pre-wrap; color:#2e7d32'>" +
escapeHTML(result.data) + "</pre>" +
"</div>";
break;
default:
// 无结果
result_stat.innerHTML = "<span style='color:gray;margin-left:20px'>" +
"<em>" + _('No test results yet. Click "Start Speed Test" to begin.') + "</em>" +
"</span>";
}
}
},
render(res) {
var self = this;
var has_ookla = !!(res[0] && res[0].path);
var has_python = !!(res[1] && res[1].path);
var result_content = res[2] ? res[2].trim().split("\n") : [];
var result_mtime = res[3] ? res[3].mtime * 1000 : 0;
var versions = this.detectVersions(res);
var result = this.parseResult(result_content);
var is_testing = this.isTesting(result_content, result_mtime);
var m, s, o;
m = new form.Map('netspeedtest', _('WAN SpeedTest'));
// 结果显示区域
s = m.section(form.TypedSection, '_result');
s.anonymous = true;
s.render = function(section_id) {
var result_id = 'speedtest_result';
if (is_testing) {
return E('div', { id: result_id, class: 'cbi-section' }, [
E('span', { style: 'color:green;font-weight:bold;margin-left:20px' }, [
E('img', {
src: '/luci-static/resources/icons/loading.svg',
height: '17',
style: 'vertical-align:middle; margin-right:5px'
}),
_('Speed testing in progress...')
])
]);
}
switch(result.type) {
case 'failed':
return E('div', { id: result_id, class: 'cbi-section' }, [
E('span', { style: 'color:red;font-weight:bold;margin-left:20px' }, [
'⚠️ ' + _('Test failed. Please check log for details.')
])
]);
case 'url':
var imageUrl = result.data;
if (!imageUrl.match(/\.png$/)) {
imageUrl = imageUrl + '.png';
}
if (imageUrl.includes('speedtest.net/result/')) {
imageUrl = imageUrl.replace('/result/c/', '/result/');
}
return E('div', { id: result_id, class: 'cbi-section' }, [
E('div', { style: 'max-width:500px; margin-left:20px' }, [
E('a', { href: result.data, target: '_blank' }, [
E('img', {
src: imageUrl,
style: 'max-width:100%; border-radius:4px; box-shadow:0 2px 4px rgba(0,0,0,0.1)'
})
]),
E('br'),
E('small', {}, [
E('a', {
href: result.data,
target: '_blank',
style: 'display:inline-block; margin-top:5px; color:#0066cc'
}, _('View detailed results'))
])
])
]);
case 'speed':
var lines = result.data.split('\n');
var download = '', upload = '', latency = '';
lines.forEach(function(line) {
if (line.match(/Download:/i)) download = line;
else if (line.match(/Upload:/i)) upload = line;
else if (line.match(/Latency:/i) || line.match(/Idle Latency:/i)) latency = line;
});
var children = [
E('strong', {}, _('Test Results:'))
];
if (download) {
children.push(
E('div', {
style: 'margin-top:10px; padding:8px; background:#e8f5e8; border-radius:4px'
}, [
E('span', { style: 'font-weight:bold' }, '⬇️ ' + _('Download:') + ' '),
E('span', { style: 'color:#2e7d32; font-weight:500' }, download.replace(/Download:/i, '').trim())
])
);
}
if (upload) {
children.push(
E('div', {
style: 'margin-top:5px; padding:8px; background:#e3f2fd; border-radius:4px'
}, [
E('span', { style: 'font-weight:bold' }, '⬆️ ' + _('Upload:') + ' '),
E('span', { style: 'color:#1565c0; font-weight:500' }, upload.replace(/Upload:/i, '').trim())
])
);
}
if (latency) {
children.push(
E('div', {
style: 'margin-top:5px; padding:5px; background:#f5f5f5; border-radius:4px'
}, [
E('span', { style: 'font-weight:bold' }, '⏱️ ' + _('Latency:') + ' '),
E('span', { style: 'color:#666' }, latency.replace(/Latency:/i, '').replace(/Idle Latency:/i, '').trim())
])
);
}
return E('div', {
id: result_id,
class: 'cbi-section'
}, [
E('div', { style: 'margin-left:20px; padding:10px; background:#f5f5f5; border-radius:4px' }, children)
]);
case 'unknown':
// 未知格式,直接显示
return E('div', { id: result_id, class: 'cbi-section' }, [
E('div', { style: 'margin-left:20px; padding:10px; background:#f5f5f5; border-radius:4px' }, [
E('strong', {}, _('Test Results:')),
E('br'),
E('pre', {
style: 'margin:5px 0 0 0; font-family:inherit; white-space:pre-wrap; color:#2e7d32'
}, escapeHTML(result.data))
])
]);
default:
// 无结果
return E('div', { id: result_id, class: 'cbi-section' }, [
E('span', { style: 'color:gray;margin-left:20px' }, [
E('em', {}, _('No test results yet. Click "Start Speed Test" to begin.'))
])
]);
}
};
// 配置部分
s = m.section(form.NamedSection, 'config', 'netspeedtest');
s.anonymous = true;
// 版本选择
o = s.option(form.ListValue, 'test_version', _('Select Test Version'));
if (has_ookla) {
o.value('ookla', 'Ookla SpeedTest');
}
if (has_python) {
o.value('python', 'Python speedtest-cli');
}
if (has_ookla) {
o.default = 'ookla';
} else if (has_python) {
o.default = 'python';
}
o.write = function(section_id, formvalue) {
uci.set('netspeedtest', section_id, 'test_version', formvalue);
return uci.save('netspeedtest');
};
// 开始测试按钮
o = s.option(form.Button, 'start', _('Start Speed Test'));
o.inputtitle = _('Click to start speed test');
o.inputstyle = 'apply';
// 只有真正在测试中才禁用按钮
if (is_testing) {
o.readonly = true;
}
o.onclick = function() {
var btn = this;
btn.disabled = true;
// 获取选中的版本
var versionSelect = document.getElementById('widget.cbid.netspeedtest.config.test_version');
if (!versionSelect) {
versionSelect = document.querySelector('select[name="test_version"]');
}
var version = versionSelect ? versionSelect.value : (has_ookla ? 'ookla' : 'python');
// 先写入Testing状态
return fs.write(ResultFile, 'Testing\n')
.then(function() {
// 在后台执行测试脚本
var cmd = 'nohup ' + SpeedtestScript;
if (version) {
cmd += ' --version ' + version;
}
cmd += ' > /dev/null 2>&1 &';
return fs.exec('/bin/sh', ['-c', cmd]);
})
.then(function() {
ui.addNotification(null, E('p', _('Speed test started. Please wait...')), 'info');
})
.catch(function(e) {
console.error('Failed to start test:', e);
ui.addNotification(null, E('p', _('Failed to start speed test: ') + e.message), 'error');
});
return false;
};
return m.render()
.then(L.bind(function(m, nodes) {
nodes.result_mtime = result_mtime; // 保存结果文件修改时间
// 添加轮询 - 每2秒检查一次结果
poll.add(L.bind(function() {
return Promise.all([
L.resolveDefault(fs.stat('/usr/bin/ookla-speedtest'), {}),
L.resolveDefault(fs.stat('/usr/bin/speedtest'), {}),
L.resolveDefault(fs.read(ResultFile), null),
L.resolveDefault(fs.stat(ResultFile), {})
]).then(L.bind(function(res) {
nodes.result_mtime = res[3] ? res[3].mtime * 1000 : 0;
this.poll_status(nodes, res);
}, this));
}, this), 2); // 2秒轮询
return nodes;
}, this, m));
},
handleSaveApply: null,
handleSave: null,
handleReset: null
});
// 辅助函数
function escapeHTML(str) {
if (!str) return '';
return String(str)
.replace(/&/g, '&amp;')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;')
.replace(/"/g, '&quot;')
.replace(/'/g, '&#39;');
}