luci-mod-system: startup.js: use common fs.js class
authorJo-Philipp Wich <jo@mein.io>
Wed, 2 Oct 2019 17:58:09 +0000 (19:58 +0200)
committerJo-Philipp Wich <jo@mein.io>
Mon, 7 Oct 2019 09:53:39 +0000 (11:53 +0200)
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js

index 77f61d607a5570b6c55608b943ad24778595397c..07eede2f07ca86fc88348ce883d341644dac7360 100644 (file)
@@ -1,5 +1,6 @@
 'use strict';
 'require rpc';
+'require fs';
 
 return L.view.extend({
        callInitList: rpc.declare({
@@ -15,22 +16,9 @@ return L.view.extend({
                expect: { result: false }
        }),
 
-       callFileRead: rpc.declare({
-               object: 'file',
-               method: 'read',
-               params: [ 'path' ],
-               expect: { data: '' }
-       }),
-
-       callFileWrite: rpc.declare({
-               object: 'file',
-               method: 'write',
-               params: [ 'path', 'data' ]
-       }),
-
        load: function() {
                return Promise.all([
-                       this.callFileRead('/etc/rc.local'),
+                       L.resolveDefault(fs.read('/etc/rc.local'), ''),
                        this.callInitList()
                ]);
        },
@@ -58,14 +46,11 @@ return L.view.extend({
        handleRcLocalSave: function(ev) {
                var value = (document.querySelector('textarea').value || '').trim().replace(/\r\n/g, '\n') + '\n';
 
-               return this.callFileWrite('/etc/rc.local', value).then(function(rc) {
-                       if (rc != 0)
-                               throw rpc.getStatusText(rc);
-
+               return fs.write('/etc/rc.local', value).then(function() {
                        document.querySelector('textarea').value = value;
                        L.ui.addNotification(null, E('p', _('Contents have been saved.')), 'info');
                }).catch(function(e) {
-                       L.ui.addNotification(null, E('p', _('Unable to save contents: %s').format(e)));
+                       L.ui.addNotification(null, E('p', _('Unable to save contents: %s').format(e.message)));
                });
        },