Deze plugin is niet getest met de laatste 3 grotere versies van WordPress. Mogelijk wordt het niet meer onderhouden of ondersteund. Ook kunnen er compatibiliteitsproblemen ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.

Alerts via MQQT for WooCommerce

Beschrijving

MQTT Alerts for WooCommerce

Plugin to WooCommerce which sends messages to a shiftr.io MQTT instance on order state changes and for low stock/out of stock nofifications.

The following topics are published to MQTT:
* {topic_prefix}/orders/pending
* {topic_prefix}/orders/on-hold
* {topic_prefix}/orders/processing
* {topic_prefix}/orders/completed
* {topic_prefix}/orders/cancelled
* {topic_prefix}/orders/refunded
* {topic_prefix}/orders/failed
* {topic_prefix}/stock/low
* {topic_prefix}/stock/out
* {topic_prefix}/stats/orders
* {topic_prefix}/stats/stock [COMING SOON]

A message is published to a topic when an order or product transitions to that state. The payload of the message is either the order id or the product_id.

The data transmitted is kept to the bear minimum to limit the data exposure over MQTT. Further information may be retrieved by the end point using the standard WooCommerce API by querying the order or product by id.

The stats topics are published to each time any other message is sent. They contain a JSON payload which for orders is an array of order states with the corresponding totals. Further stats topics are in the to-do list.

MQTT may be used to feed many different devices and services. For example the feed could be consumed by NodeRed, Home Assistant or, of course, an Arduino. Sample Arduino sketches may be found at https://github.com/yknivag/WooNofity-Arduino – more sketches will be added in due course.

Installatie

  1. Upload plugin wc-mqtt-alerts folder to the /wp-content/plugins/ directory.
  2. Activate the plugin using the ‘Plugins’ menu in your WordPress admin panel.
  3. You can adjust the necessary settings using your WordPress admin panel in “MQTTWoo”.
  4. Create a page or a post, customize button settings and insert generated shortcode into the text.

FAQ

Why use MQTT instead of the API

Calls to the API put a load on the server and to make a “real-time” update the API would have to be called at least every 5 minuntes and that would put a substantial load on the server.
The idea behind this plugin is to use MQTT to push an event notification so that the API need only be called when a change is detected.

Why shiftr.io

It’s free and it works well. In essence the plugin posts to a URL using basic authentication and so could be used with any other MQTT broker with an HTTP interface that follows the same pattern. Or your own server.

What is the topic prefix

By default the topic prefix is empty, but it may be set to allow the topics to fit in with an existing MQTT infrastructure.

Beoordelingen

Er zijn geen beoordelingen voor deze plugin.

Bijdragers & ontwikkelaars

“Alerts via MQQT for WooCommerce” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

“Alerts via MQQT for WooCommerce” is vertaald in 1 taal. Dank voor de vertalers voor hun bijdragen.

Vertaal “Alerts via MQQT for WooCommerce” naar jouw taal.

Interesse in ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

0.1.0 – 20th June 2020

  • Initial Release.

0.2.0 – 21st June 2020

  • Corrected typo in readme.
  • Added stats/orders topic.

0.2.1 – 23rd June 2020

  • Changes required following WordPress plugin library submission.

0.2.2 – 26th June 2020

  • Bug Fix – Order Number was not being sent with order alerts.
  • Updated GitHub Link.
  • Added link to Proof Of Concept Ardnuino sketches.

To Do

  • Add stats/stocks topic to report counts of out-of-stock and low-stock items.