korditpteltd / kd-cakephp-webhooks
KORDIT CakePHP Webhook Plugin
Installs: 366
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 2
Open Issues: 0
Type:cakephp-plugin
Requires
- cakephp/cakephp: >3.1.0
This package is auto-updated.
Last update: 2024-10-29 05:53:26 UTC
README
Plugin containing the vanilla javascript file for the triggering of webhook events implemented on the application level. Plugin also contain the Table file, SQL structure and the default controller for retrieval of webhook table information for execution.
Requirements
- CakePHP 3.1+
Installation
- Edit
composer.json
file by adding the following lines:
"repositories":[ { "type": "git", "url": "git@github.com:mohamednizar/kd-cakephp-webhooks.git" } ]
- Example
composer.json
after adding required lines:
{ "name": "korditpteltd/openemis-phpoe", "description": "KORDIT OpenEMIS CORE", "homepage": "https://demo.openemis.org/core", "type": "project", "license": "GPL-2.0", "require": { "php": ">=5.4.16", "cakephp/cakephp": "3.2.6" }, "scripts": { "post-install-cmd": "App\\Console\\Installer::postInstall", "post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump" }, "minimum-stability": "dev", "prefer-stable": true, "repositories":[ { "type": "git", "url": "git@github.com:mohamednizar/kd-cakephp-webhooks.git" } ] }
composer require korditpteltd/kd-cakephp-webhooks "*"
Usage
In your app's config/bootstrap.php
add:
// In config/bootstrap.php Plugin::load('Webhook', ['autoload' => true, 'route' => true]);
or using cake's console:
bin/cake plugin load -r --autoload Webhook
Configuration:
You will need to insert the event entries into the webhooks and webhook_events table
webhooks table
webhook_events table
Using JavaScript Webhook
In the ctp file you may have the following event implemented:
// load the javascript file from the plugin $this->Html->script('Webhook.webhook'); // Webhook url link to the webhook controller $webhookListUrl = [ 'plugin' => 'Webhook', 'controller' => 'Webhooks', 'action' => 'listWebhooks' ]; // You may replace \'logout\', with your event name for example \'login\' echo $this->Html->link('Logout Link', 'http://someurl.com/logout', ['onclick' => 'Webhook.triggerEvent(\''.Router::url($webhookListUrl).'\', [\'logout\']);']);
Using Backend CakePHP Client Service with Shell
$Webhooks = TableRegistry::get('Webhook.Webhooks'); // Setting the 'username' parameter will replace the url with the username that you have specified $Webhooks->triggerShell('logout', ['username' => $username]);