WP chatbot
A simple Wordpress plugin to connect to your favourite chatbot platform.
Works with
...and any other platform that has a REST-based JSON API
Roadmap
This plugin is under active development. Current plan is to keep it in GitHub for the foreseeable future.
There is a GitHub project to track high level features.
How to use
- Download a release as zip
- Open up the zip and rename the included folder to
wp-chatbot
(remove the -#.#.# version number) - Upload to your Wordpress instance.
- Activate the plugin and head on over to Settings -> WP chatbot
- Include
[wp-chatbot]
shortcode wherever you want (currently only supported once per page)
Getting automatic updates
This plugin can be updated directly from GitHub, in the Wordpress UI, using the Wordpress plugin GitHub Updater.
Settings
There are some base settings that need to be set. In basic terms, the purpose of these settings is to build the API request that is being used to connect with you chatbot API of choice. It maps the request and pulls data from the response.
The request
- API url
- The endpoint of the chatbot platform
- Request method
- GET (most well tested) and POST
- Number of request parameters
- How many params need to be part of the request
- The request params and their value
- Each request parameter will require a param-value pair (two input boxes).
- E.g. when doing a GET call, then the param and value will be appended to the API url like
APIURL?param=value
. Use this to build a proper request to the chatbot platform. Special param values can be used. Se below. - Number of request headers
- The number of specific headers that need to be part of the request.
- These are HTTP Headers
- The request headers and their values
- Works in a similar way as the request params, but will be included in the HTTP request header.
The response
The returned data from the external API must be JSON formatted data (as of now). There is only one option for the response, which is a JSONpath used to extract the data.
- Response JSONpath
- WP Chatbot will extract messages from the returned JSON structure using JSONpath.
E.g. for api.ai, such a path can be
$.result.fulfillment.messages[*].speech
- WP Chatbot will extract messages from the returned JSON structure using JSONpath.
E.g. for api.ai, such a path can be
Special param values
- WP_CHATBOT_INPUT_MSG
- Will pass the input message into the parameter
- WP_CHATBOT_CONV
- Will pass a uniquely created string for the current user session. String is 40 chars and stored in
$_SESSION
- Will pass a uniquely created string for the current user session. String is 40 chars and stored in
- WP_CHATBOT_USER
- Will pass a uniquely created string for the current user. String is 40 chars and stored in
$_COOKIE
- Will pass a uniquely created string for the current user. String is 40 chars and stored in
Warning
This plugin is still in development, and are still missing important error handling, validation of input and sanetizing of options. This will be fixed, just keep an eye on the Github Issues.
Contribute
Fork, branch, pull request
Contributors
Release Notes
- 0.1.1 - bug fixes
- api.ai encoding
- allow unsafe urls
Wordpress Coding Standards
phpcs -p -s -v -n . --standard=codesniffer.ruleset.xml --extensions=php --ignore=./assets/,index.php > sniffer.log
phpcbf -p -s -v -n . --no-patch --standard=codesniffer.ruleset.xml --extensions=php --ignore=./assets/,index.php