2013-09-05 16:02:48 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2013-09-05 16:02:48 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
2014-05-04 00:32:04 +02:00
|
|
|
module.exports = function(RED) {
|
2014-05-29 23:13:21 +02:00
|
|
|
"use strict";
|
2014-06-30 21:43:31 +02:00
|
|
|
var Notify = require("fs.notify");
|
2014-05-04 00:32:04 +02:00
|
|
|
var fs = require("fs");
|
|
|
|
var sep = require("path").sep;
|
2017-02-07 21:32:16 +01:00
|
|
|
var path = require("path");
|
|
|
|
|
|
|
|
var getAllDirs = function (dir, filelist) {
|
|
|
|
filelist = filelist || [];
|
|
|
|
fs.readdirSync(dir).forEach(file => {
|
|
|
|
if (fs.statSync(path.join(dir, file)).isDirectory() ) {
|
|
|
|
filelist.push(path.join(dir, file));
|
|
|
|
getAllDirs(path.join(dir, file), filelist);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return filelist;
|
|
|
|
}
|
2014-05-29 23:13:21 +02:00
|
|
|
|
2014-05-04 00:32:04 +02:00
|
|
|
function WatchNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
2014-05-29 23:13:21 +02:00
|
|
|
|
2017-02-07 21:32:16 +01:00
|
|
|
this.recursive = n.recursive || false;
|
2015-03-31 10:21:11 +02:00
|
|
|
this.files = (n.files || "").split(",");
|
2015-03-16 21:21:05 +01:00
|
|
|
for (var f=0; f < this.files.length; f++) {
|
2014-05-04 00:32:04 +02:00
|
|
|
this.files[f] = this.files[f].trim();
|
|
|
|
}
|
2015-03-31 10:21:11 +02:00
|
|
|
this.p = (this.files.length === 1) ? this.files[0] : JSON.stringify(this.files);
|
2014-05-04 00:32:04 +02:00
|
|
|
var node = this;
|
2014-05-31 20:44:02 +02:00
|
|
|
|
2017-02-07 21:32:16 +01:00
|
|
|
if (node.recursive) {
|
|
|
|
for (var fi in node.files) {
|
|
|
|
if (node.files.hasOwnProperty(fi)) {
|
|
|
|
node.files = node.files.concat(getAllDirs( node.files[fi]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-30 21:43:31 +02:00
|
|
|
var notifications = new Notify(node.files);
|
2014-05-04 00:32:04 +02:00
|
|
|
notifications.on('change', function (file, event, path) {
|
2015-03-16 21:21:05 +01:00
|
|
|
var stat;
|
2014-05-31 20:44:02 +02:00
|
|
|
try {
|
|
|
|
if (fs.statSync(path).isDirectory()) { path = path + sep + file; }
|
2015-03-16 21:21:05 +01:00
|
|
|
stat = fs.statSync(path);
|
2014-05-31 20:44:02 +02:00
|
|
|
} catch(e) { }
|
2015-04-08 22:43:22 +02:00
|
|
|
var type = "none";
|
|
|
|
var msg = { payload:path, topic:node.p, file:file };
|
|
|
|
if (stat) {
|
|
|
|
if (stat.isFile()) { type = "file"; msg.size = stat.size; }
|
|
|
|
else if (stat.isBlockDevice()) { type = "blockdevice"; }
|
|
|
|
else if (stat.isCharacterDevice()) { type = "characterdevice"; }
|
|
|
|
else if (stat.isSocket()) { type = "socket"; }
|
|
|
|
else if (stat.isFIFO()) { type = "fifo"; }
|
2017-02-07 21:32:16 +01:00
|
|
|
else if (stat.isDirectory()) {
|
|
|
|
type = "directory";
|
|
|
|
if (node.recursive) {
|
|
|
|
notifications.add([path]);
|
|
|
|
notifications.add(getAllDirs(path));
|
|
|
|
}
|
|
|
|
}
|
2015-04-08 22:43:22 +02:00
|
|
|
else { type = "n/a"; }
|
|
|
|
}
|
|
|
|
msg.type = type;
|
2014-05-04 00:32:04 +02:00
|
|
|
node.send(msg);
|
|
|
|
});
|
2014-05-29 23:13:21 +02:00
|
|
|
|
2014-05-31 20:44:02 +02:00
|
|
|
notifications.on('error', function (error, path) {
|
2015-03-16 21:21:05 +01:00
|
|
|
var msg = { payload:path };
|
|
|
|
node.error(error,msg);
|
2014-05-31 20:44:02 +02:00
|
|
|
});
|
|
|
|
|
2014-05-04 00:32:04 +02:00
|
|
|
this.close = function() {
|
|
|
|
notifications.close();
|
|
|
|
}
|
2014-01-08 17:44:05 +01:00
|
|
|
}
|
2014-05-04 00:32:04 +02:00
|
|
|
RED.nodes.registerType("watch",WatchNode);
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|