Introduce plugin hook to verified agents with non-recovery cores

Introduce plugin hook to agent message data, should the plugin need to interact (without additional bandwidth used from those without plugins enabled)
This commit is contained in:
Ryan Blenis 2019-10-28 17:27:59 -04:00
parent b06763ab30
commit e249dc32da
1 changed files with 6 additions and 0 deletions

View File

@ -980,6 +980,9 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
}
});
}
if (parent.parent.pluginHandler != null) {
parent.parent.pluginHandler.callHook('hook_agentCoreIsStable', obj, parent);
}
}
// Get the web certificate private key hash for the specified domain
@ -1298,6 +1301,9 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
break;
}
}
if (parent.parent.pluginHandler != null) {
parent.parent.pluginHandler.callHook('hook_processAgentData', command, obj, parent);
}
}
}