A WordPress plugin for JAMstack deployments

Overview

JAMstack Deployments

A WordPress plugin for JAMstack deployments on Netlify (and other platforms).

Description

This plugin provides a way to fire off a request to a webhook when a post, page or custom post type has been created, udpated or deleted. You're also able to fire off a request manually at the click of a button, or programmatically via a WordPress action.

Screenshots

Settings Screen

Installing the Plugin

Clone the contents of this repository to your WordPress plugins folder and activate the plugin via the installed plugins page.

Configuration

The plugin attempts to trigger builds when you update your content, and has settings that you can use to define what post types & taxonomies should be monitored.

You can access the plugin's settings in WordPress by accessing the 'Settings' panel on the left hand side of the dashboard and then clicking 'Deployments'.

From this screen you can configure the following:

  • Webhook URL - The webhook URL that you have created to trigger a deployment. For more information on webhooks with Netlify visit the Netlify documentation.
  • Webhook Method - This is the required method for the webhook request. The available options are GET or POST. By default the plugin will automatically select POST.
  • Badge Image URL - An optional field to specify the src of a badge, for services that support badges.
  • Badge Link - An optional field to specify the href of a badge, for services that support badges.
  • Post Types - A list of selectable post types that will trigger a Netlify deployment when created, updated or deleted. Note that only selected post types will trigger a deployment.
  • Taxonomies - A list of selectable taxonomies that will trigger a Netlify deployment when created, updated or deleted. Note that only selected taxonomies will trigger a deployment.

If you need more control, there are actions & filters you can use to get the job done.

Post Types

You can choose which posts types should trigger builds from the plugin settings. However, you may require more control, or need to overwrite the settings, you can do so using the jamstack_deployments_post_types filter. By default, this filter contains an array of post types that we monitor. You can add or remove them as required.

For example, if you want to force the plugin to trigger builds for the 'post' post type regardless of the settings, you can do so with the following code:

add_filter('jamstack_deployments_post_types', function ($post_types, $post_id, $post) {
    if (!in_array($post->post_type, $post_types, true)) {
        $post_types[] = 'post';
    }
    return $post_types;
}, 10, 3);

Taxonomies

Like post types, you can choose which taxonmies should trigger builds from the plugin settings. But there may be times you need more control. For this, you can use the jamstack_deployments_taxonomies filter. By default, this filter contains an array of taxonomies that we monitor.

For example, if you want to force the plugin to trigger builds for the 'post_tag' taxonomy regardless of the settings, you can do so with the following code:

add_filter('jamstack_deployments_taxonomies', function ($taxonomies, $term_id, $tax_id) {
    $tax = get_taxonomy($tax_id);
    if (!in_array($tax->name, $taxonomies, true)) {
        $taxonomies[] = 'post_tag';
    }
    return $taxonomies;
}, 10, 3);

Post Statuses

You can use the jamstack_deployments_post_statuses filter to change which post statuses we monitor. The default is to monitor 'publish', 'private' and 'trash'.

Here is an example that adds 'review' to the array of post statuses that we monitor & will trigger builds for.

add_filter('jamstack_deployments_post_statuses', function ($statuses, $post_id, $post) {
    $statuses[] = 'review';
    return $statuses;
}, 10, 3);

Custom Actions

The jamstack_deployments_fire_webhook action can be used to fire the webhook and trigger a build at a custom point that you specify. For example, if you want to fire the webhook when a user registers, then you can use:

add_action('user_register', 'jamstack_deployments_fire_webhook');

Running Code Before & After Webhooks

You can run code directly before or after you fire the webhook using the following actions:

  • Before: jamstack_deployments_before_fire_webhook
  • After: jamstack_deployments_after_fire_webhook

Changing Webhook Request Arguments

You can modify the arguments sent to the wp_remote_safe_* functions using the jamstack_deployments_webhook_request_args filter.

License

GPL-3.0

Comments
  • Site update triggers two builds

    Site update triggers two builds

    Currently my settings are set to trigger builds ONLY for new / updated posts. Now whenever a post is published or updated, TWO builds are triggered. They run in sequence and both have full, successful build logs. Using Wordpress 5.3.2.

    opened by cdcasey 10
  • Add notification to show a deployment was triggered

    Add notification to show a deployment was triggered

    When you manually trigger a deployment, there's no visual feedback to let you know that a deployment was triggered. We should really have a little status bar, like the ones you get when you save a post, just to say "A deployment was triggered." or similar.

    opened by crgeary 7
  • What to do with future publications

    What to do with future publications

    So when you write a post and set the publication in the future, only on save a trigger will be sent, right?

    How would one go about to also trigger a deploy when the publication date hits

    Thanks so much

    opened by laurenskling 6
  • Unclear instructions

    Unclear instructions

    The plugin is clear on how to use and where to obtain all the info to set it up.

    I am unclear on what do I need to do on the netlify side to make publishing work as expected.

    If you give me some pointers I can amend the plugin readme and make pull request.

    question wontfix 
    opened by jimmyfm 4
  • Deploy button reloads page instead of POSTing to build hook

    Deploy button reloads page instead of POSTing to build hook

    Started to run into an issue yesterday where pressing the Deploy Website button would reload the page instead of making a POST request to the configured build hook URL.

    After some investigation, it seemed that the affected sites had been auto-upgraded to WordPress 5.5.x (mainly from 5.3.x), and according to this article, there have been some major changes in how WP includes jQuery Migrate starting with this version.

    The WP team has released a workaround plugin, and installing this on our sites seems to allow the Deploy button to work as expected again. However, they've stated that this is only supposed to be a solution until WP 5.6, when things will change again, and plugins should ideally make updates so they don't depend on jQuery Migrate.

    This is where I reach the limit of my knowledge - how possible is it to make such an update for this plugin?

    opened by bengal75 3
  • Feature: Trigger deploy from editing ACF options page

    Feature: Trigger deploy from editing ACF options page

    We're using this plugin on a few sites that have some configuration via an ACF options page, and would like to be able to trigger a deploy when editing said options pages.

    Does this sound like something that fits the scope of the project?

    opened by breadadams 3
  • `[]` characters get escaped and removed in the URL

    `[]` characters get escaped and removed in the URL

    I'm using your plugin to call my Gitlab pipeline;

    In the docs, they state you can add variables as so: https://gitlab.com/api/v4/projects/PROJECT/ref/REF_NAME/trigger/pipeline?token=TOKEN&variables[RUN_NIGHTLY_BUILD]=true

    When I write the url like this in the Build Hook URL, the first time [ and ] they will get rewritten to %5B and %5D, the time you save that they will be removed from the string. So my URL string is broken.

    Any idea how we can allow for this characters in this (or these) field(s)?

    opened by laurenskling 3
  • Manual GitHub Action for Cloudflare Pages

    Manual GitHub Action for Cloudflare Pages

    Pleas include this example for all oAuth apps that work only by pushing on main branch

    Require: GITHUB_TOKEN (Login and goto https://github.com/settings/tokens)

    In WP:

    function jamstack_deployments_webhook_request_args_callback( $args ) {
        
    	$args['headers'] = array(
    	  'Authorization' => 'token GITHUB_TOKEN',
    	);
    	
    	$args['body'] = '{"event_type": "externall-deploy", "client_payload": {}}';
    
        return $args;
    }
    add_filter( 'jamstack_deployments_webhook_request_args', 'jamstack_deployments_webhook_request_args_callback' );
    

    In Github Action Workflow:

    name: Public workflow
    
    on:
      repository_dispatch:
        types: [externall-deploy]
    
    jobs:
      build:
        runs-on: ubuntu-latest
        steps:
        - uses: actions/checkout@v2
          with:
            persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
            fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
        - name: Commit files
          run: |
            git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
            git config --local user.name "github-actions[bot]"
            git commit -m "Push to Cloudflare" -a --allow-empty
        - name: Push changes
          uses: ad-m/github-push-action@master
          with:
            github_token: ${{ secrets.GITHUB_TOKEN }}
            branch: ${{ github.ref }}
    
    opened by Triloworld 2
  • Remove up arrow icon FOUC (admin bar)

    Remove up arrow icon FOUC (admin bar)

    When the site first loads, the css that sets this value isn't available. As a result the initial 512x512 svg loads causing a large arrow icon to briefly appear on each payload (logged in users, of course).

    Let's set the w/h properties at the svg level to prevent this.

    opened by jacobarriola 2
  • How to use this plugin for an existing remote wordpress site?

    How to use this plugin for an existing remote wordpress site?

    Hello, I am a beginner of using Netlify and I was hoping this plugin would deploy my existing WordPress site into Netlify.

    What I did was I created a blank Github repository and expecting that this plugin will migrate my site into there. Am I right?

    After that I clicked on the "Test Deployment" button I don't see anything weird, but the Github repository I mentioned has no changes. Have I done anything wrong?

    opened by lt-shy-john 2
  • Add option to support local or disable ssl verifying when using custom hooks

    Add option to support local or disable ssl verifying when using custom hooks

    Hi, thanks a lot for this awesome plugin. I'm using this plugin to develop my gatsby web on local and test server. At the moment, I have to add the below code to WebhookTrigger.php so this plugin can trigger my custom hook. Is there anyway you can add an option so we can use custom or local hook api without adding extra code to the plugin ?.

    At the beginning I did not know about this code so I thought this plugin is not working :(.

    add_filter( 'http_request_args', function( $args ) {
       $args['reject_unsafe_urls'] = false;
       return $args;
    } );
    add_filter('http_request_reject_unsafe_urls','__return_false');
    add_filter( 'https_local_ssl_verify', '__return_false' );
    add_filter( 'https_ssl_verify', '__return_false' );
    
    opened by davistran86 2
  • Add code example for custom request args

    Add code example for custom request args

    I recently needed to modify the request arguments to be able to trigger a GitHub Actions workflow with the plugin, and noticed that there's no code example for this in the README – so I added one.

    opened by wh1zk1d 0
  • multiple deployments

    multiple deployments

    So one of my projects depending on this awesome plugin is now using a test deployment to check changes before going live. It would be super powerful and useful if the Wordpress could have 2 (or more) buttons: Deploy to X, Deploy to Y.

    Would this be something we could achieve?

    opened by laurenskling 8
  • Send a payload with POST requests

    Send a payload with POST requests

    Allow POST requests to include a JSON payload. These requests contain a small amount of information about the action that was taken on the WordPress site.

    For example, a post/page update might include:

    {
      "action": "post_status_transition",
      "data": {
        "id": 1,
        "status": "publish"
      }
    }
    

    Solves #40

    opened by crgeary 1
  • Possible to add a payload of the changed post ID

    Possible to add a payload of the changed post ID

    We're thinking of using this plugin to push an update to a search index in Algolia. Currently from my tests this plugin just publishes a webhook that's empty.

    Is it possible to add the post ID somehow to the payload?

    opened by altryne 2
  • Feature/GitHub workflow dispatch

    Feature/GitHub workflow dispatch

    I don't know if you want to extend your plugin to also support to run workflows in Github Actions. But I needed it and extended your plugin accordingly. Probably it should also be straightforward to extend it to trigger Gitlab pipelines, I will probably be adding that somewhere in the next month.

    opened by pepijn-vanvlaanderen 0
A WordPress plugin to suspend WordPress sites automagically. Simple and lightweight, no annoying ads and fancy settings.

Suspend WP A WordPress plugin to suspend WordPress sites automagically. Simple and lightweight, no annoying ads and fancy settings. ?? Demo (coming so

Waren Gonzaga 3 Nov 15, 2021
WordPress plugin that lets you use Discourse as the community engine for a WordPress blog

WP Discourse Note: the wp-discourse plugin requires >= PHP-5.4.0. The WP Discourse plugin acts as an interface between your WordPress site and your Di

Discourse 497 Dec 10, 2022
Simple WordPress plugin to learn how to understand WordPress Crons and the Action Scheduler library.

Simple WordPress plugin to learn how to understand WordPress Crons and the Action Scheduler library. Import Jamendo playlists with tracks in WordPress posts.

Pierre Saikali 3 Dec 7, 2022
This WordPress Plugin Boilerplate is meant for you to develop your own plugin on.

WordPress Plugin Boilerplate This plugin boilerplate is meant for you to develop your own plugin on. Support & collaboration Features OOP plugin core

richardev 2 May 10, 2022
A custom WordPress nav walker class to fully implement the Twitter Bootstrap 4.0+ navigation style (v3-branch available for Bootstrap 3) in a custom theme using the WordPress built in menu manager.

WP Bootstrap Navwalker This code in the main repo branch is undergoing a big shakeup to bring it in line with recent standards and to merge and test t

WP Bootstrap 3.3k Jan 5, 2023
A curated list of Awesome WordPress Theme, Plugins and Framework development Resources and WordPress Communities.

Awesome WordPress A curated list of Awesome WordPress Theme, Plugins and Framework development Resources and WordPress Communities. Inspired by bayand

Dropndot Limited 91 Dec 26, 2022
Twenty Twenty-Two, the default WordPress theme that will launch with WordPress 5.9.

Twenty Twenty-Two Welcome to the development repository for the default theme that will launch with WordPress 5.9. About Twenty Twenty-Two is designed

null 414 Nov 28, 2022
Easy handle APlayer on WordPress. A shortcode for WordPress to using APlayer.

Description Easy handle APlayer on WordPress. A shortcode for WordPress to using APlayer. Support [audio] tag, compatible with AMP. Requirement WordPr

Karl Chen 24 Nov 3, 2022
WordPress & TypeScript. Simple starter template for WordPress projects

WordPress & TypeScript. Simple starter template for WordPress projects that want to use TypeScript in combination with @wordpress/scripts

Make it WorkPress 11 Sep 27, 2022
A PHP client for Wordpress websites that closely implement the XML-RPC WordPress API

Wordpress XML-RPC PHP Client A PHP client for Wordpress websites that closely implement the XML-RPC WordPress API Created by Hieu Le MIT licensed. Cur

Hieu Le 112 Nov 10, 2022
🚀WordPress Plugin Boilerplate using modern web techs like TypeScript, SASS, and so on... on top of a local development environment with Docker and predefined GitLab CI for continous integration and deployment!

WP React Starter: WordPress React Boilerplate DEPRECATED: WP React Starter was a "research project" of devowl.io for the development of our WordPress

devowl.io GmbH 344 Jan 1, 2023
a wordpress plugin that improves wpgraphql usage together with wpml

WPGraphQL WPML Extension Contributors: rburgst Stable tag: 1.0.6 Tested up to: 5.6.1 Requires at least: 4.9 Requires PHP: 7.0 Requires WPGraphQL: 0.8.

null 42 Dec 15, 2022
WordPress Plugin for Magic

Login by Magic This plugin replaces the standard WordPress login form with one powered by Magic that enables passwordless email magic link login. Plea

Magic 5 Aug 29, 2022
❓ A WordPress plugin to display your site's environment type in the admin bar

Where A WordPress plugin to display your site's environment type in the admin bar. Available Filters where_env_should_add_env_type - Defaults to true

Brad Parbs 7 Mar 29, 2022
Wordpress Plugin for displaying content from Notion

notion-content Description Wordpress Plugin for displaying content from Notion using the Notion API. This plugin assumes you have some knowledge of No

Patrick Chang 53 Dec 28, 2022
WordPress plugin that allows admin to force logout all users

User Login Control User Login Control is a WordPress plugin allows you to logout user(s) from their account or to see the last activity of your offlin

null 4 Sep 6, 2022
WordPress plugin people can use to embed to their website: a Mintbase NEAR NFT and Mintbase NEAR store

mintbase-embed WordPress plugin people can use to embed to their website: a Mintbase NEAR NFT and Mintbase NEAR store This is demo plugin that allows

null 3 Oct 1, 2021
WPCloudDeploy is a WordPress plugin that allows you to easily deploy servers at major cloud-server providers and then install apps

WPCloudDeploy is a WordPress plugin that allows you to easily deploy servers at major cloud-server providers and then install apps

WPCloudDeploy 41 Dec 24, 2022
Ormapker is a wordpress plugin to embbed a multilocations map easily.

ORMAPKER Ormapker is a wordpress plugin to embbed a multilocations map easily. License This plugin is released under the GNU General Public License Ve

Said Gamih 1 Aug 10, 2022