Interacting with Asterisk from Lua (apps, variables, and functions)
Interaction with is done through a series of predefined objects provided by pbx_lua. The app
table is used to access dialplan applications. Any asterisk application can be accessed and executed as if it were a function attached to the app
table. Dialplan variables and functions are accessed and executed via the channel
table.
Note
Asterisk applications, variables or functions whose names conflict with Lua reserved words or contain special characters must be referenced using the []
operator. For example, Lua 5.2 introduced the goto
control statement which conflicts with the Asterisk goto
dialplan application. So...
Warning
The following will cause pbx_lua.so to fail to load with Lua 5.2 or later because goto
is a reserved word.
Tip
The following will work with all Lua versions...
Dialplan Applications¶
extensions.lua
Any dialplan application can be executed using the app
table. Application names are case insensitive. Arguments are passed to dialplan applications just as arguments are passed to functions in lua. String arguments must be quoted as they are lua strings. Empty arguments may be passed as nil
or as empty strings.
Channel Variables¶
Set a Variable¶
After this the channel variable ${my_variable
} contains the value "my_value".
Read a Variable¶
Any channel variable can be read and set using the channel
table. Local and global lua variables can be used as they normally would and are completely unrelated to channel variables.
Warning
The following construct will NOT work.
value = channel.my_variable -- does not work as expected (value:get() could be used to get the value after this line)
Tip
If the variable name is an Lua reserved word or contains characters that Lua considers special use the []
operator to access them.
Dialplan Functions¶
Write a Dialplan Function¶
Read a Dialplan Function¶
Note the use of the :
operator with the get()
and set()
methods.
Tip
If the function name is an Lua reserved word or contains characters that Lua considers special use the []
operator to access them.
Warning
The following constructs will NOT work.
channel.FAXOPT("modems") = "v17,v27,v29" -- syntax error
value = channel.FAXOPT("modems") -- does not work as expected (value:get() could be used to get the value after this line)
Dialplan function names are case sensitive.