treewide: declare rpc calls with const
authorSergey Ponomarev <stokito@gmail.com>
Sun, 1 Dec 2024 00:03:42 +0000 (02:03 +0200)
committerPaul Donald <newtwen+github@gmail.com>
Tue, 3 Dec 2024 15:25:21 +0000 (16:25 +0100)
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
34 files changed:
applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js
applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js
applications/luci-app-apinger/htdocs/luci-static/resources/view/apinger/overview.js
applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js
applications/luci-app-cloudflared/htdocs/luci-static/resources/view/cloudflared/config.js
applications/luci-app-example/YAML.md
applications/luci-app-example/htdocs/luci-static/resources/view/example/rpc-jsonmap-tablesection.js
applications/luci-app-example/htdocs/luci-static/resources/view/example/rpc-jsonmap-typedsection.js
applications/luci-app-example/htdocs/luci-static/resources/view/example/rpc.js
applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js
applications/luci-app-frps/htdocs/luci-static/resources/view/frps.js
applications/luci-app-https-dns-proxy/htdocs/luci-static/resources/https-dns-proxy/status.js
applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/overview.js
applications/luci-app-keepalived/htdocs/luci-static/resources/view/status/include/35_keepalived.js
applications/luci-app-ledtrig-usbport/htdocs/luci-static/resources/view/system/led-trigger/usbport.js
applications/luci-app-libreswan/htdocs/luci-static/resources/view/libreswan/overview.js
applications/luci-app-lldpd/htdocs/luci-static/resources/view/lldpd/config.js
applications/luci-app-lldpd/htdocs/luci-static/resources/view/lldpd/status.js
applications/luci-app-mwan3/htdocs/luci-static/resources/view/mwan3/status/overview.js
applications/luci-app-mwan3/htdocs/luci-static/resources/view/status/include/90_mwan3.js
applications/luci-app-natmap/htdocs/luci-static/resources/view/natmap.js
applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js
applications/luci-app-olsr-services/htdocs/luci-static/resources/view/freifunk-services/services.js
applications/luci-app-package-manager/htdocs/luci-static/resources/view/package-manager.js
applications/luci-app-pbr/htdocs/luci-static/resources/pbr/status.js
applications/luci-app-qos/htdocs/luci-static/resources/view/qos/qos.js
applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js
applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js
applications/luci-app-tor/htdocs/luci-static/resources/view/tor/tor-hs.js
applications/luci-app-transmission/htdocs/luci-static/resources/view/transmission.js
applications/luci-app-usteer/htdocs/luci-static/resources/view/usteer/usteer.js
applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js
applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js
applications/luci-app-xfrpc/htdocs/luci-static/resources/view/xfrpc.js

index d89e22895395e0fba2bf21a61862e2984e316b46..1307065eb1e48e51c8360a711b4d11d2e933c890 100644 (file)
@@ -27,31 +27,31 @@ var pkg = {
        },
 };
 
-var getFileUrlFilesizes = rpc.declare({
+const getFileUrlFilesizes = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getFileUrlFilesizes",
        params: ["name", "url"],
 });
 
-var getInitList = rpc.declare({
+const getInitList = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getInitList",
        params: ["name"],
 });
 
-var getInitStatus = rpc.declare({
+const getInitStatus = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getInitStatus",
        params: ["name"],
 });
 
-var getPlatformSupport = rpc.declare({
+const getPlatformSupport = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getPlatformSupport",
        params: ["name"],
 });
 
-var _setInitAction = rpc.declare({
+const _setInitAction = rpc.declare({
        object: "luci." + pkg.Name,
        method: "setInitAction",
        params: ["name", "action"],
index 25fde440753759d204d0bf11fc3e2d7a3c4f0a7a..c31aa7c4972969639af5445622feeb5e61a2b861 100644 (file)
@@ -8,7 +8,7 @@
 'require validation';
 'require view';
 
-var callServiceList = rpc.declare({
+const callServiceList = rpc.declare({
        object: 'service',
        method: 'list',
        params: ['name'],
index de74be676d1cfb7bae5f18e41e8f6febe4a65554..215eeb8ab8b7b3a5e718ba7c8fd5c69d3973c8e1 100644 (file)
@@ -4,7 +4,7 @@
 'require form';
 'require poll';
 
-var callApingerStatus = rpc.declare({
+const callApingerStatus = rpc.declare({
        object: 'apinger',
        method: 'status',
        expect: {  },
index 110b241be96b3f748f2b91d0dccc8ed8d44af174..08856611d8e969c49c6c83c682d76b6c5e7a4936 100644 (file)
@@ -9,17 +9,17 @@
 'require dom';
 'require fs';
 
-let callPackagelist = rpc.declare({
+const callPackagelist = rpc.declare({
        object: 'rpc-sys',
        method: 'packagelist',
 });
 
-let callSystemBoard = rpc.declare({
+const callSystemBoard = rpc.declare({
        object: 'system',
        method: 'board',
 });
 
-let callUpgradeStart = rpc.declare({
+const callUpgradeStart = rpc.declare({
        object: 'rpc-sys',
        method: 'upgrade_start',
        params: ['keep'],
index 4ae395f054a98d47b8fc4a681d5fe20675862c51..b945228b1e720379b0b4f706dde9d6f729e6f120 100644 (file)
@@ -8,7 +8,7 @@
 'require rpc';
 'require view';
 
-var callServiceList = rpc.declare({
+const callServiceList = rpc.declare({
        object: 'service',
        method: 'list',
        params: ['name'],
index a97048a4d2defe8b50be03f07e12513062f55cb4..30b756d20c94e8ba935c29745cf544ff1681791a 100644 (file)
@@ -63,7 +63,7 @@ These are the changes you need in the `rpc.js` file.
 Declare the RPC call
 
 ```js
-var load_sample_yaml = rpc.declare({
+const load_sample_yaml = rpc.declare({
     object: 'luci.example',
     method: 'get_yaml_file_sample'
 });
index 4a009782e400cbc1869622edca7ae6468ed6e7d3..c1ab6060109ca0882f1c9f282543a9e23e4792c4 100644 (file)
@@ -15,7 +15,7 @@ in that directory will be the value for the object key in the declared map.
 Permissions to make these calls must be granted in /usr/share/rpcd/acl.d
 via a file named the same as the application package name (luci-app-example)
 */
-var load_sample2 = rpc.declare({
+const load_sample2 = rpc.declare({
        object: 'luci.example',
        method: 'get_sample2'
 });
index 58958054acd1c1d6df762f41a7722a1107254260..5196f6645d9da308b15019485c9311c6dd91a069 100644 (file)
@@ -15,7 +15,7 @@ in that directory will be the value for the object key in the declared map.
 Permissions to make these calls must be granted in /usr/share/rpcd/acl.d
 via a file named the same as the application package name (luci-app-example)
 */
-var load_sample2 = rpc.declare({
+const load_sample2 = rpc.declare({
        object: 'luci.example',
        method: 'get_sample2'
 });
index cf5885b5a2bde0340fee0363510361b31461c003..d04e1e66dbbedb52ddf2e90ad263c45bce7f8335 100644 (file)
@@ -15,13 +15,13 @@ in that directory will be the value for the object key in the declared map.
 Permissions to make these calls must be granted in /usr/share/rpcd/acl.d
 via a file named the same as the application package name (luci-app-example)
 */
-var load_sample1 = rpc.declare({
+const load_sample1 = rpc.declare({
        object: 'luci.example',
        method: 'get_sample1'
 });
 // Out of the box, this one will be blocked by the framework because there is
 // no ACL granting permission.
-var load_sample3 = rpc.declare({
+const load_sample3 = rpc.declare({
        object: 'luci.example',
        method: 'get_sample3'
 });
index a0fb34beb6f0ad5cd46aa7a1eccd90dec0c8b343..c3207e517ff8a207d299d111e82c175c34ff119e 100644 (file)
@@ -138,7 +138,7 @@ function defOpts(s, opts, params) {
        }
 }
 
-var callServiceList = rpc.declare({
+const callServiceList = rpc.declare({
        object: 'service',
        method: 'list',
        params: ['name'],
index 27136134f46f3d4ca181cb34eea3c75716f21350..6b408cb303907594ce06abf26dd79e51aa0eece2 100644 (file)
@@ -91,7 +91,7 @@ function defOpts(s, opts, params) {
        }
 }
 
-var callServiceList = rpc.declare({
+const callServiceList = rpc.declare({
        object: 'service',
        method: 'list',
        params: ['name'],
index 37675c5b8320cf09a68b496fb907e6ade9140b97..4705390d4990fa7a4751ee08ec9639fd4972295f 100644 (file)
@@ -43,37 +43,37 @@ var pkg = {
        },
 };
 
-var getInitList = rpc.declare({
+const getInitList = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getInitList",
        params: ["name"],
 });
 
-var getInitStatus = rpc.declare({
+const getInitStatus = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getInitStatus",
        params: ["name"],
 });
 
-var getPlatformSupport = rpc.declare({
+const getPlatformSupport = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getPlatformSupport",
        params: ["name"],
 });
 
-var getProviders = rpc.declare({
+const getProviders = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getProviders",
        params: ["name"],
 });
 
-var getRuntime = rpc.declare({
+const getRuntime = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getRuntime",
        params: ["name"],
 });
 
-var _setInitAction = rpc.declare({
+const _setInitAction = rpc.declare({
        object: "luci." + pkg.Name,
        method: "setInitAction",
        params: ["name", "action"],
index 7126d5938de62eeac8066d12bb158c346db09af1..943d9ac732dbacaede1c60cb4170c29c227b4893 100644 (file)
@@ -5,7 +5,7 @@
 'require rpc';
 'require poll';
 
-var callKeepalivedStatus = rpc.declare({
+const callKeepalivedStatus = rpc.declare({
        object: 'keepalived',
        method: 'dump',
        expect: {  },
index 4f47d149803256b274c295dfe49a9a9ff2d5e985..cf870ece927db35745fe2e98bcea5ef44419bb82 100644 (file)
@@ -3,7 +3,7 @@
 'require uci';
 'require rpc';
 
-var callKeepalivedStatus = rpc.declare({
+const callKeepalivedStatus = rpc.declare({
        object: 'keepalived',
        method: 'dump',
        expect: {  },
index 7491b712369952471b6001b608675f07d22d633e..8e05c30bb4aeaf4e3ee0356a1597a9ebdb0d6f83 100644 (file)
@@ -4,7 +4,7 @@
 'require uci';
 'require form';
 
-var callUSB = rpc.declare({
+const callUSB = rpc.declare({
        object: 'luci',
        method: 'getUSBDevices',
        expect: { 'ports': [] }
index 399e55af97f9a2945403158f1842d5f7cea541e1..970b85872a79c29d6e6981a4cff84aa030ce8f47 100644 (file)
@@ -4,7 +4,7 @@
 'require form';
 'require poll';
 
-var callLibreswanStatus = rpc.declare({
+const callLibreswanStatus = rpc.declare({
        object: 'libreswan',
        method: 'status',
        expect: {  },
index a0f3bd12657e415e4aaf14fc3e493fbebf4176c1..32f18035bcb019a0c5174582691e28b63da7cb84 100644 (file)
@@ -13,7 +13,7 @@
 'require uci';
 'require tools.widgets as widgets';
 
-var callInitList = rpc.declare({
+const callInitList = rpc.declare({
        object: 'luci',
        method: 'getInitList',
        params: [ 'name' ],
@@ -25,7 +25,7 @@ var callInitList = rpc.declare({
        }
 });
 
-var callInitAction = rpc.declare({
+const callInitAction = rpc.declare({
        object: 'luci',
        method: 'setInitAction',
        params: [ 'name', 'action' ],
index 05d8f6e2a282b2df8ef037fc7274af8b187039e6..d087653b53555e4b9de8eb6b817bac490099d361 100644 (file)
@@ -12,7 +12,7 @@
 'require dom';
 'require poll';
 
-var callLLDPStatus = rpc.declare({
+const callLLDPStatus = rpc.declare({
        object: 'luci.lldpd',
        method: 'getStatus',
        expect: {}
index c60ac7afa268b8dc4a03dd680ea5161e36e1f7a2..a0261544d7b7c20c149cfd0b15a34850acf17319 100644 (file)
@@ -3,7 +3,7 @@
 'require view';
 'require rpc';
 
-var callMwan3Status = rpc.declare({
+const callMwan3Status = rpc.declare({
        object: 'mwan3',
        method: 'status',
        expect: {  },
index 0fc11550e9d309b878245906ba36e6749e0b85aa..c5b1cb4c0b139d9b346c537755281820c9f45cbb 100644 (file)
@@ -2,7 +2,7 @@
 'require baseclass';
 'require rpc';
 
-var callMwan3Status = rpc.declare({
+const callMwan3Status = rpc.declare({
        object: 'mwan3',
        method: 'status',
        expect: {  },
index e837fbf2a9df7be385392ffa4dd017ff9fd4a9b6..49349437adf7a8782ba5122ea40d4a7fdd05257f 100644 (file)
@@ -5,7 +5,7 @@
 'require view';
 'require tools.widgets as widgets';
 
-var callServiceList = rpc.declare({
+const callServiceList = rpc.declare({
        object: 'service',
        method: 'list',
        params: ['name'],
index dcb2c4e707d8eb6bd74fd9d6e57860311f9834bf..650ee460a428fb9503b3625c921f052cad219c16 100644 (file)
@@ -7,7 +7,7 @@
 'require rpc';
 'require dom';
 
-var callNetworkRrdnsLookup = rpc.declare({
+const callNetworkRrdnsLookup = rpc.declare({
        object: 'network.rrdns',
        method: 'lookup',
        params: [ 'addrs', 'timeout', 'limit' ],
index 57bd83d93fe9dcf68f2ed0de901c0d7c8b60cdf6..74800dfc772e540e54ad2151bf8af3e63e1fcc52 100644 (file)
@@ -3,13 +3,13 @@
 'require view';
 'require poll';
 
-var getOlsrd4Services = rpc.declare({
+const getOlsrd4Services = rpc.declare({
     object: 'olsr-services',
     method: 'services4',
     expect: {}
 });
 
-var getOlsrd6Services = rpc.declare({
+const getOlsrd6Services = rpc.declare({
     object: 'olsr-services',
     method: 'services6',
     expect: {}
index d79ee985c9d51c3955739ad649bd274446d1476c..007d202c2424ecda23d1f710a708a05aa00a8bd6 100644 (file)
@@ -87,7 +87,7 @@ var css = '                                                           \
 
 var isReadonlyView = !L.hasViewPermission() || null;
 
-var callMountPoints = rpc.declare({
+const callMountPoints = rpc.declare({
        object: 'luci',
        method: 'getMountPoints',
        expect: { result: [] }
index 09f746eaa94366bdf7202a1349495027b3e469de..19c66ab58dfce09d9caea9f4327c0b899289158c 100644 (file)
@@ -32,37 +32,37 @@ var pkg = {
        },
 };
 
-var getGateways = rpc.declare({
+const getGateways = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getGateways",
        params: ["name"],
 });
 
-var getInitList = rpc.declare({
+const getInitList = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getInitList",
        params: ["name"],
 });
 
-var getInitStatus = rpc.declare({
+const getInitStatus = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getInitStatus",
        params: ["name"],
 });
 
-var getInterfaces = rpc.declare({
+const getInterfaces = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getInterfaces",
        params: ["name"],
 });
 
-var getPlatformSupport = rpc.declare({
+const getPlatformSupport = rpc.declare({
        object: "luci." + pkg.Name,
        method: "getPlatformSupport",
        params: ["name"],
 });
 
-var _setInitAction = rpc.declare({
+const _setInitAction = rpc.declare({
        object: "luci." + pkg.Name,
        method: "setInitAction",
        params: ["name", "action"],
index 7fe08484d4f770cb6f8bac113e9c043dfafa8637..4f679c0564003a80b8fdbb4ebf6ff786c62c78b6 100644 (file)
@@ -5,7 +5,7 @@
 'require tools.widgets as widgets';
 'require view';
 
-var callHostHints = rpc.declare({
+const callHostHints = rpc.declare({
        object: 'luci-rpc',
        method: 'getHostHints',
        expect: { '': {} }
index 191e57e58d35120201b9cba612a5264e91d8ed2e..37f63fcc6a29a90c12f304b8b20551fdaed67eab 100644 (file)
@@ -27,7 +27,7 @@
 'require ui';
 
 var conf = 'smartdns';
-var callServiceList = rpc.declare({
+const callServiceList = rpc.declare({
        object: 'service',
        method: 'list',
        params: ['name'],
index a89c61f7b82fbaf465c01da7aac9d39d8afaf9f1..8688cc4134ad0755fa61e78ff89d8536feec3a28 100644 (file)
@@ -6,7 +6,7 @@
 'require uci';
 'require view';
 
-var getCompileTimeOptions = rpc.declare({
+const getCompileTimeOptions = rpc.declare({
        object: 'luci.squid',
        method: 'getCompileTimeOptions',
        expect: { options: [] }
index ef8368ec1c51cba809b90ecd841108e8136e6359..8007fe518caea86d25007c225c18fd6e80c56fb5 100644 (file)
@@ -4,7 +4,7 @@
 'require rpc';
 'require uci';
 
-var callTorHsList = rpc.declare({
+const callTorHsList = rpc.declare({
        object: 'tor-hs-rpc',
        method: 'list-hs',
 });
index 0ba84a9b522e87c95b2b8dc8c73f361231244220..87583b912286edfbfbe5592751f594709e78dd3d 100644 (file)
@@ -6,7 +6,7 @@
 'require form';
 'require tools.widgets as widgets';
 
-var callServiceList = rpc.declare({
+const callServiceList = rpc.declare({
        object: 'service',
        method: 'list',
        params: [ 'name' ],
index 77d9152ecd1d7368a6364738a74ae1766e86fc60..bc5ebce8ab953dad36b4ae7d5d473cb4022b66ea 100644 (file)
@@ -170,7 +170,7 @@ function collectWlanAPInfos(compactconnectioninfo_table_entries, wlanAPInfos) {
        }
 };
 
-var callNetworkRrdnsLookup = rpc.declare({
+const callNetworkRrdnsLookup = rpc.declare({
        object: 'network.rrdns',
        method: 'lookup',
        params: [ 'addrs', 'timeout', 'limit' ],
index 577d0eee397e706de2502a11c475eab146557789..27dece54140275c881a1bd747888f7dd42180751 100644 (file)
@@ -5,7 +5,7 @@
 'require uci';
 'require view';
 
-var callServiceList = rpc.declare({
+const callServiceList = rpc.declare({
        object: 'service',
        method: 'list',
        params: ['name'],
index 7113c4119e070c94894de76c8fa9fdc2d52800ba..d546309f0e8cab63f5217e4bde1384738b35b27a 100644 (file)
@@ -11,7 +11,7 @@
 var RefreshIfaces = "";
 var RefreshTabs = ['s', 't', '5', 'h', 'd', 'm', 'y'];
 
-var callServiceList = rpc.declare({
+const callServiceList = rpc.declare({
        object: 'service',
        method: 'list',
        params: [ 'name' ],
index 97154f045fb93f04afede4c87e4804d78d160fbc..a523dc2548ca339dd9c53fbd4156f9ddf91799dd 100644 (file)
@@ -5,7 +5,7 @@
 'require rpc';
 'require tools.widgets as widgets';
 
-var callServiceList = rpc.declare({
+const callServiceList = rpc.declare({
        object: 'service',
        method: 'list',
        params: ['name'],