mirror of
https://github.com/openwrt/luci.git
synced 2025-12-22 01:44:35 +04:00
luci-app-travelmate: sync with update 2.2.1-4
Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
@@ -138,21 +138,18 @@ function handleSectionsVal(action, section_id, option, value) {
|
|||||||
if (t_sections[i].device === w_device && t_sections[i].ssid === w_ssid && t_sections[i].bssid === w_bssid) {
|
if (t_sections[i].device === w_device && t_sections[i].ssid === w_ssid && t_sections[i].bssid === w_bssid) {
|
||||||
if (action === 'get') {
|
if (action === 'get') {
|
||||||
return t_sections[i][option];
|
return t_sections[i][option];
|
||||||
}
|
} else if (action === 'set') {
|
||||||
else if (action === 'set') {
|
|
||||||
if (option === 'enabled') {
|
if (option === 'enabled') {
|
||||||
oldValue = t_sections[i][option];
|
oldValue = t_sections[i][option];
|
||||||
if (oldValue !== value && value === '0') {
|
if (oldValue !== value && value === '0') {
|
||||||
date = new Date(new Date().getTime() - new Date().getTimezoneOffset() * 60 * 1000).toISOString().substr(0, 19).replace(/-/g, '.').replace('T', '-');
|
date = new Date(new Date().getTime() - new Date().getTimezoneOffset() * 60 * 1000).toISOString().substr(0, 19).replace(/-/g, '.').replace('T', '-');
|
||||||
uci.set('travelmate', t_sections[i]['.name'], 'con_end', date);
|
uci.set('travelmate', t_sections[i]['.name'], 'con_end', date);
|
||||||
}
|
} else if (oldValue !== value && value === '1') {
|
||||||
else if (oldValue !== value && value === '1') {
|
|
||||||
uci.unset('travelmate', t_sections[i]['.name'], 'con_end');
|
uci.unset('travelmate', t_sections[i]['.name'], 'con_end');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return uci.set('travelmate', t_sections[i]['.name'], option, value);
|
return uci.set('travelmate', t_sections[i]['.name'], option, value);
|
||||||
}
|
} else if (action === 'del') {
|
||||||
else if (action === 'del') {
|
|
||||||
return uci.unset('travelmate', t_sections[i]['.name'], option);
|
return uci.unset('travelmate', t_sections[i]['.name'], option);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -166,12 +163,11 @@ function handleStatus() {
|
|||||||
poll.add(function () {
|
poll.add(function () {
|
||||||
L.resolveDefault(fs.stat('/var/state/travelmate.refresh'), null).then(function (res) {
|
L.resolveDefault(fs.stat('/var/state/travelmate.refresh'), null).then(function (res) {
|
||||||
if (res) {
|
if (res) {
|
||||||
L.resolveDefault(fs.read('/var/state/travelmate.refresh'), null).then(async function (res) {
|
return L.resolveDefault(fs.read_direct('/var/state/travelmate.refresh'), null).then(async function (res) {
|
||||||
fs.remove('/var/state/travelmate.refresh');
|
fs.remove('/var/state/travelmate.refresh');
|
||||||
if (res && res === 'ui_reload') {
|
if (res && res === 'ui_reload') {
|
||||||
location.reload();
|
location.reload();
|
||||||
}
|
} else if (res && res === 'cfg_reload') {
|
||||||
else if (res && res === 'cfg_reload') {
|
|
||||||
if (document.readyState === 'complete') {
|
if (document.readyState === 'complete') {
|
||||||
uci.unload('wireless');
|
uci.unload('wireless');
|
||||||
uci.unload('travelmate');
|
uci.unload('travelmate');
|
||||||
@@ -193,7 +189,7 @@ function handleStatus() {
|
|||||||
});
|
});
|
||||||
return L.resolveDefault(fs.stat('/tmp/trm_runtime.json'), null).then(function (res) {
|
return L.resolveDefault(fs.stat('/tmp/trm_runtime.json'), null).then(function (res) {
|
||||||
if (res) {
|
if (res) {
|
||||||
L.resolveDefault(fs.read('/tmp/trm_runtime.json'), null).then(function (res) {
|
return L.resolveDefault(fs.read_direct('/tmp/trm_runtime.json'), null).then(function (res) {
|
||||||
if (res) {
|
if (res) {
|
||||||
let info = JSON.parse(res);
|
let info = JSON.parse(res);
|
||||||
if (info) {
|
if (info) {
|
||||||
@@ -207,8 +203,7 @@ function handleStatus() {
|
|||||||
for (let i = 1; i < uplinkId.length - 1; i++) {
|
for (let i = 1; i < uplinkId.length - 1; i++) {
|
||||||
if (!t_ssid) {
|
if (!t_ssid) {
|
||||||
t_ssid = uplinkId[i];
|
t_ssid = uplinkId[i];
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
t_ssid = t_ssid + '/' + uplinkId[i];
|
t_ssid = t_ssid + '/' + uplinkId[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -217,8 +212,7 @@ function handleStatus() {
|
|||||||
oldUplinkView[0].removeAttribute('style');
|
oldUplinkView[0].removeAttribute('style');
|
||||||
oldUplinkView[0].removeAttribute('name', 'uplinkStation');
|
oldUplinkView[0].removeAttribute('name', 'uplinkStation');
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
uplinkColor = (vpnStatus === "✔" ? 'rgb(68, 170, 68)' : 'rgb(51, 119, 204)');
|
uplinkColor = (vpnStatus === "✔" ? 'rgb(68, 170, 68)' : 'rgb(51, 119, 204)');
|
||||||
for (let i = 0; i < w_sections.length; i++) {
|
for (let i = 0; i < w_sections.length; i++) {
|
||||||
newUplinkView = document.getElementById('cbi-wireless-' + w_sections[i]['.name']);
|
newUplinkView = document.getElementById('cbi-wireless-' + w_sections[i]['.name']);
|
||||||
@@ -226,14 +220,12 @@ function handleStatus() {
|
|||||||
if (oldUplinkView.length === 0 && newUplinkView) {
|
if (oldUplinkView.length === 0 && newUplinkView) {
|
||||||
newUplinkView.setAttribute('name', 'uplinkStation');
|
newUplinkView.setAttribute('name', 'uplinkStation');
|
||||||
newUplinkView.setAttribute('style', 'text-align: left !important; color: ' + uplinkColor + ' !important;font-weight: bold !important;');
|
newUplinkView.setAttribute('style', 'text-align: left !important; color: ' + uplinkColor + ' !important;font-weight: bold !important;');
|
||||||
}
|
} else if (oldUplinkView.length > 0 && newUplinkView && oldUplinkView[0].getAttribute('id') !== newUplinkView.getAttribute('id')) {
|
||||||
else if (oldUplinkView.length > 0 && newUplinkView && oldUplinkView[0].getAttribute('id') !== newUplinkView.getAttribute('id')) {
|
|
||||||
oldUplinkView[0].removeAttribute('style');
|
oldUplinkView[0].removeAttribute('style');
|
||||||
oldUplinkView[0].removeAttribute('name', 'uplinkStation');
|
oldUplinkView[0].removeAttribute('name', 'uplinkStation');
|
||||||
newUplinkView.setAttribute('name', 'uplinkStation');
|
newUplinkView.setAttribute('name', 'uplinkStation');
|
||||||
newUplinkView.setAttribute('style', 'text-align: left !important; color: ' + uplinkColor + ' !important;font-weight: bold !important;');
|
newUplinkView.setAttribute('style', 'text-align: left !important; color: ' + uplinkColor + ' !important;font-weight: bold !important;');
|
||||||
}
|
} else if (newUplinkView && newUplinkView.style.color != uplinkColor) {
|
||||||
else if (newUplinkView && newUplinkView.style.color != uplinkColor) {
|
|
||||||
newUplinkView.setAttribute('style', 'text-align: left !important; color: ' + uplinkColor + ' !important;font-weight: bold !important;');
|
newUplinkView.setAttribute('style', 'text-align: left !important; color: ' + uplinkColor + ' !important;font-weight: bold !important;');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -776,6 +768,8 @@ return view.extend({
|
|||||||
}, _('Dismiss')),
|
}, _('Dismiss')),
|
||||||
E('button', {
|
E('button', {
|
||||||
'class': 'cbi-button cbi-button-positive important',
|
'class': 'cbi-button cbi-button-positive important',
|
||||||
|
'id': 'scan-btn',
|
||||||
|
'disabled': 'disabled',
|
||||||
'click': L.bind(this.handleScan, this, radio)
|
'click': L.bind(this.handleScan, this, radio)
|
||||||
}, _('Repeat Scan'))
|
}, _('Repeat Scan'))
|
||||||
])
|
])
|
||||||
@@ -784,22 +778,22 @@ return view.extend({
|
|||||||
md.style.maxWidth = '90%';
|
md.style.maxWidth = '90%';
|
||||||
md.style.maxHeight = 'none';
|
md.style.maxHeight = 'none';
|
||||||
|
|
||||||
return L.resolveDefault(fs.exec('/etc/init.d/travelmate', ['scan', radio]), null)
|
return L.resolveDefault(fs.exec_direct('/etc/init.d/travelmate', ['scan', radio]))
|
||||||
.then(L.bind(function () {
|
.then(L.bind(function () {
|
||||||
return L.resolveDefault(fs.read('/var/run/travelmate.scan'), '')
|
return L.resolveDefault(fs.read_direct('/var/run/travelmate.scan'), '')
|
||||||
.then(L.bind(function (res) {
|
.then(L.bind(function (res) {
|
||||||
let lines, strength, channel, bssid, wpa, rsn, cipher, auth = [], ssid, rows = [];
|
let lines, strength, channel, bssid, wpa, rsn, cipher, auth = [], ssid, rows = [];
|
||||||
if (res) {
|
if (res) {
|
||||||
lines = res.split('\n');
|
lines = res.split('\n');
|
||||||
for (let i = 0; i < lines.length; i++) {
|
for (let i = 0; i < lines.length; i++) {
|
||||||
if (lines[i].match(/^\s*\d+/)) {
|
if (lines[i].match(/^\s*\d+/)) {
|
||||||
strength = lines[i].slice(0,3).trim();
|
strength = lines[i].slice(0, 3).trim();
|
||||||
channel = lines[i].slice(3,7).trim();
|
channel = lines[i].slice(3, 7).trim();
|
||||||
bssid = lines[i].slice(7,25).trim();
|
bssid = lines[i].slice(7, 25).trim();
|
||||||
rsn = lines[i].slice(26,27).trim();
|
rsn = lines[i].slice(26, 27).trim();
|
||||||
wpa = lines[i].slice(28,29).trim();
|
wpa = lines[i].slice(28, 29).trim();
|
||||||
cipher = lines[i].slice(29,40).trim();
|
cipher = lines[i].slice(29, 40).trim();
|
||||||
auth = lines[i].slice(40,71).trim().split(',');
|
auth = lines[i].slice(40, 71).trim().split(',');
|
||||||
ssid = lines[i].slice(71).trim();
|
ssid = lines[i].slice(71).trim();
|
||||||
let tbl_ssid = ssid;
|
let tbl_ssid = ssid;
|
||||||
if (ssid === "") {
|
if (ssid === "") {
|
||||||
@@ -869,17 +863,18 @@ return view.extend({
|
|||||||
E('button', {
|
E('button', {
|
||||||
'class': 'cbi-button cbi-button-action',
|
'class': 'cbi-button cbi-button-action',
|
||||||
'click': ui.createHandlerFn(this, 'handleAdd', radio, iface, ssid, bssid, encryption)
|
'click': ui.createHandlerFn(this, 'handleAdd', radio, iface, ssid, bssid, encryption)
|
||||||
}, _('Add Uplink...')))
|
}, _('Add Uplink...'))
|
||||||
|
)
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
rows.push([
|
rows.push([
|
||||||
'Empty resultset'
|
'Empty resultset'
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
cbi_update_table(table, rows);
|
cbi_update_table(table, rows);
|
||||||
|
document.getElementById('scan-btn').disabled = false;
|
||||||
poll.start();
|
poll.start();
|
||||||
}, this));
|
}, this));
|
||||||
}, this));
|
}, this));
|
||||||
@@ -912,8 +907,7 @@ return view.extend({
|
|||||||
if (ssid === "hidden") {
|
if (ssid === "hidden") {
|
||||||
o2 = s2.option(form.Value, 'ssid', _('SSID (hidden)'));
|
o2 = s2.option(form.Value, 'ssid', _('SSID (hidden)'));
|
||||||
o2.placeholder = 'hidden SSID';
|
o2.placeholder = 'hidden SSID';
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
o2 = s2.option(form.Value, 'ssid', _('SSID'));
|
o2 = s2.option(form.Value, 'ssid', _('SSID'));
|
||||||
o2.default = ssid;
|
o2.default = ssid;
|
||||||
}
|
}
|
||||||
@@ -923,8 +917,7 @@ return view.extend({
|
|||||||
o2 = s2.option(form.Flag, 'ignore_bssid', _('Ignore BSSID'));
|
o2 = s2.option(form.Flag, 'ignore_bssid', _('Ignore BSSID'));
|
||||||
if (ssid === "hidden") {
|
if (ssid === "hidden") {
|
||||||
o2.default = '0';
|
o2.default = '0';
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
o2.default = '1';
|
o2.default = '1';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1082,8 +1075,7 @@ return view.extend({
|
|||||||
if (!ssid || ((encryption.includes('psk') || encryption.includes('wpa') || encryption.includes('sae')) && !password)) {
|
if (!ssid || ((encryption.includes('psk') || encryption.includes('wpa') || encryption.includes('sae')) && !password)) {
|
||||||
if (!ssid) {
|
if (!ssid) {
|
||||||
ui.addNotification(null, E('p', 'Empty SSID, the uplink station could not be saved.'), 'error');
|
ui.addNotification(null, E('p', 'Empty SSID, the uplink station could not be saved.'), 'error');
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
ui.addNotification(null, E('p', 'Empty Password, the uplink station could not be saved.'), 'error');
|
ui.addNotification(null, E('p', 'Empty Password, the uplink station could not be saved.'), 'error');
|
||||||
}
|
}
|
||||||
return ui.hideModal();
|
return ui.hideModal();
|
||||||
|
|||||||
Reference in New Issue
Block a user