Stack plugin
Stack Plugin is a set of additions made to a Wazo stack to add a new functionality. It the safest and preffered way to extend the functionalities of a Wazo stack. There are many extension point in Wazo, all of them can be used in combination to add complete features.
What can be done with a plugin?
Wazo plugins allow a third party to add almost anything to Wazo. Most of our services have extension points that can be used together to create a complete feature as a plugin.
Here's a non exhaustive list of what can be done with plugins
- Add configuration files to wazo services in /etc/*/conf.d/
- Add configuration files and dialplan files to Asterisk
- Reload services to complete the installation
- Extend wazo services using the available extension points
- wazo-auth
- wazo-calld
- wazo-dird
- wazo-confd
- wazo-confgend
 
Creating a plugin
A plugin has the following structure:
📁 wazo
├── plugin.yml
└── rules
plugin.yml
The plugin.yml file contains all the metadata of plugin. It should contains the following fields:
| Plugin Field | Description | 
|---|---|
| description | The description of the plugin | 
| name | The name of the plugin | 
| namespace | An identifier for the author of the plugin | 
| version | The version of the plugin | 
| plugin_format_version | The version of the plugin specification implemented by this plugin. | 
| depends | Other plugins which this plugin depends on | 
| debian_depends | Debian packages which this plugin depends on | 
Example:
name: foobar
namespace: foocorp
version: 0.0.1
description: This plugin adds some foo to your Wazo
plugin_format_version: 1
depends:
  - name: foobaz
    namespace: foocorp
  - name: admin-ui-context
    namespace: official
debian_depends:
  - golang-go
rules
The rules file is an executable that will accept the following commands
- build
- package
- install
- uninstall
- postrm
Plugin Format Version
0: default
A plugin in version 0 should implement the following requirements:
- an executable name wazo/rulesthat returns0on success for the following commands:- build
- package
- install
- uninstall
 
1: recommended
Version 1 adds support for the postrm instruction in the rules file.
Rules Commands
- build: This command is used to compile or generate files that will be included in the package.
- package: This command is used to copy all files required by the plugin in the- <pkgdir>directory.- 
pkgdirenvironment variable holds the prefix that will be used to build the package. If the plugin needs to install a file in/etc/foo/bardo the following commandsmkdir -p ${pkgdir}/etc/foo
 cp bar ${pkgdir}/etc/foo/bar
 
- 
- install: This command is used at the end of the installation to execute instructions that are usually not related to the file system. It will be used as the postinst of the generated debian package.
- uninstall: This command is used before the debian package is removed. It will be used as the prerm of the generated debian package.
- postrm(added in version 1): This- postrmcommand is used at the end of the debian package removal. It will be used as the postrm of the generated debian package.
Dependencies
There are 2 kinds of dependencies that can be added on a plugin, depends and debian_depends.
depends
The depends section of the plugin.yml file contains dependencies that are other plugins built
for wazo-plugind. Those dependencies should be already installed or available on the market.
There's no version requirements for this kind of dependencies, they are used to make plugin installation less of a hassle.
When installing a plugin if a dependency is already satisfied, the package will not be upgraded.
Example:
Given a plugin "A" depending on plugin "B".
Given "B" is already installed in an older version.
When installing "A".
Then "B" will not be upgraded.
depends also generate an entry in the debian_depends section.
debian_depends
The debian_depends section of the plugin.yml file contains dependencies that will be added to
the debian control file. This means that the debian packages listed here will be installed during
the plugin installation. This also means that removing that dependency from the system will also
remove all plugins depending on it.