|
|
4 tahun lalu | |
|---|---|---|
| .. | ||
| etc | 5 tahun lalu | |
| include | 4 tahun lalu | |
| priv | 5 tahun lalu | |
| src | 4 tahun lalu | |
| test | 4 tahun lalu | |
| .gitignore | 5 tahun lalu | |
| README.md | 4 tahun lalu | |
| examples.lua | 5 tahun lalu | |
| rebar.config | 5 tahun lalu | |
This plugin makes it possible to write hooks in lua scripts.
Lua virtual machine is implemented by luerl which supports Lua 5.2. Following features may not work properly:
__metatableFor the supported functions, please refer to luerl's project page.
Lua scripts are stored in 'data/scripts' directory, and will be loaded automatically. If a script is changed during runtime, it should be reloaded to take effect.
Each lua script could export several functions binding with emqx hooks, triggered by message publish, topic subscribe, client connect, etc. Different lua scripts may export same type function, binding with a same event. But their order being triggered is not guaranteed.
To start this plugin, run following command:
bin/emqx_ctl plugins load emqx_lua_hook
Suppose your emqx is installed in /emqx, and the lua script directory should be /emqx/data/scripts.
Make a new file called "test.lua" and put following code into this file:
function on_message_publish(clientid, username, topic, payload, qos, retain)
return topic, "hello", qos, retain
end
function register_hook()
return "on_message_publish"
end
Execute following command to start emq-lua-hook and load scripts in 'data/scripts' directory.
/emqx/bin/emqx_ctl plugins load emqx_lua_hook
Now let's take a look at what will happend.
If there are "test1.lua", "test2.lua" and "test3.lua" in /emqx/data/scripts, all these files will be loaded once emq-lua-hook get started.
If test2.lua has been changed, restart emq-lua-hook to reload all scripts, or execute following command to reload test2.lua only:
/emqx/bin/emqx_ctl luahook reload test2.lua
You can find all example codes in the examples.lua file.
function on_client_connected(clientId, userName, returncode)
return 0
end
This API is called after a mqtt client has establish a connection with broker.
Needless
function on_client_disconnected(clientId, username, error)
return
end
This API is called after a mqtt client has disconnected.
Needless
function on_client_subscribe(clientId, username, topic)
-- do your job here
if some_condition then
return new_topic
else
return false
end
end
This API is called before mqtt engine process client's subscribe command. It is possible to change topic or cancel it.
function on_client_unsubscribe(clientId, username, topic)
-- do your job here
if some_condition then
return new_topic
else
return false
end
end
This API is called before mqtt engine process client's unsubscribe command. It is possible to change topic or cancel it.
function on_session_subscribed(ClientId, Username, Topic)
return
end
This API is called after a subscription has been done.
Needless
function on_session_unsubscribed(clientid, username, topic)
return
end
This API is called after a unsubscription has been done.
Needless
function on_message_delivered(clientid, username, topic, payload, qos, retain)
-- do your job here
return topic, payload, qos, retain
end
This API is called after a message has been pushed to mqtt clients.
Needless
function on_message_acked(clientId, username, topic, payload, qos, retain)
return
end
This API is called after a message has been acknowledged.
Needless
function on_message_publish(clientid, username, topic, payload, qos, retain)
-- do your job here
if some_condition then
return new_topic, new_payload, new_qos, new_retain
else
return false
end
end
This API is called before publishing message into mqtt engine. It's possible to change message or cancel publish in this API.
function register_hook()
return "hook_name"
end
-- Or register multiple callbacks
function register_hook()
return "hook_name1", "hook_name2", ... , "hook_nameX"
end
This API exports hook(s) implemented in its lua script.
emqx_ctl luahook load script_name
This command will load lua file "script_name" in 'data/scripts' directory, into emqx hook.
emqx_ctl luahook unload script_name
This command will unload lua file "script_name" out of emqx hook.
emqx_ctl luahook reload script_name
This command will reload lua file "script_name" in 'data/scripts'. It is useful if a lua script has been modified and apply it immediately.
emqx_ctl luahook enable script_name
This command will rename lua file "script_name.x" to "script_name", and load it immediately.
emqx_ctl luahook disable script_name
This command will unload this script, and rename lua file "script_name" to "script_name.x", which will not be loaded during next boot.
Apache License Version 2.0
EMQX Team.