From fc01bc88650ddefbcc26bbb7a2dfde2a9d143715 Mon Sep 17 00:00:00 2001 From: SiYao Mo Date: Thu, 24 Jun 2021 00:55:28 +0800 Subject: luci-app-frpc/frps:add service status display reference from luci-app-smartdns Special thanks to Nick Peng Signed-off-by: SiYao Mo --- .../htdocs/luci-static/resources/view/frps.js | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) (limited to 'applications/luci-app-frps/htdocs/luci-static/resources') diff --git a/applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js b/applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js index cb092ce6bb..25f0714d83 100644 --- a/applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js +++ b/applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js @@ -1,6 +1,7 @@ 'use strict'; 'require view'; 'require form'; +'require rpc'; 'require tools.widgets as widgets'; // [Widget, Option, Title, Description, {Param: 'Value'}], @@ -90,12 +91,60 @@ function defOpts(s, opts, params) { } } +var callServiceList = rpc.declare({ + object: 'service', + method: 'list', + params: ['name'], + expect: { '': {} } +}); + +function getServiceStatus() { + return L.resolveDefault(callServiceList('frps'), {}).then(function (res) { + var isRunning = false; + try { + isRunning = res['frps']['instances']['instance1']['running']; + } catch (e) { } + return isRunning; + }); +} + +function renderStatus(isRunning) { + var renderHTML = ""; + var spanTemp = "%s - %s"; + + if (isRunning) { + renderHTML += String.format(spanTemp, 'green', _("frp Server"), _("RUNNING")); + } else { + renderHTML += String.format(spanTemp, 'red', _("frp Server"), _("NOT RUNNING")); + } + + return renderHTML; +} + return view.extend({ render: function() { var m, s, o; m = new form.Map('frps', _('frp Server')); + s = m.section(form.NamedSection, '_status'); + s.anonymous = true; + s.render = function (section_id) { + L.Poll.add(function () { + return L.resolveDefault(getServiceStatus()).then(function(res) { + var view = document.getElementById("service_status"); + view.innerHTML = renderStatus(res); + }); + }); + + return E('div', { class: 'cbi-map' }, + E('div', { class: 'cbi-section'}, [ + E('div', { id: 'service_status' }, + _('Collecting data ...')) + ]) + ); + } + s = m.section(form.NamedSection, 'common', 'conf'); s.dynamic = true; -- cgit v1.2.3