• This repository has been archived on 26/Feb/2022
  • Stars
    star
    253
  • Rank 160,366 (Top 4 %)
  • Language
    PHP
  • License
    GNU Lesser Genera...
  • Created over 6 years ago
  • Updated almost 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A WordPress plugin for JAMstack deployments

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

More Repositories

1

google-sheets-hugo-bookmarks

Collection of bookmarks stored in Google Sheets, powered by Hugo
JavaScript
15
star
2

inspector

Standalone YoastSEO.js content assessments!
JavaScript
7
star
3

groundwork

Groundwork is a lightweight, responsive, BEM inspired, CSS grid.
CSS
5
star
4

carbon

πŸ“ A static site generator.
TypeScript
5
star
5

markdown.css

Make HTML look a bit like Markdown
HTML
5
star
6

pickle

Extend the shelf life of PageSpeed Insights reports πŸ₯’
JavaScript
4
star
7

css-custom-properties-grid

A very simple, configurable, responsive grid with CSS custom properties & flexbox.
HTML
4
star
8

pagespeed

Gain webpage performance insights with Google PageSpeed Insights.
PHP
3
star
9

wp-plugin-boilerplate

A WordPres plugin boilerplate
PHP
2
star
10

custodian

A library for building APIs with AWS Lambda & API Gateway.
TypeScript
2
star
11

phaser-starter

πŸ•Ή A Phaser starter for Game Jams
JavaScript
2
star
12

wheretoskate

Order ice rinks in the UK by distance
HTML
2
star
13

contrast

Check your color palette for accessible combinations
TypeScript
2
star
14

alpha

πŸ¦„
TypeScript
2
star
15

erc20-cookiecoin

An Ethereum ERC20 token to represent 1m cookies
Solidity
1
star
16

swift-angular-theme

Angular powered WordPress Theme (WIP)
PHP
1
star
17

configuration

My personal configurations for various tools & packages
JavaScript
1
star
18

wp-pizza-placeholders

Automatic pizza placeholders from img.pizza
PHP
1
star
19

buzz

πŸ“ A Larahack (hackathon) project. A twitter clone. Β―\_(ツ)_/Β―
PHP
1
star
20

www

My personal website
HTML
1
star
21

vue-time-progressbar

Vue component to visualise the number of minutes between two time periods
JavaScript
1
star
22

piano

I'm learning to play the piano
TypeScript
1
star
23

words

[WIP] Wordle clone, but easier
TypeScript
1
star
24

aas

As a Service
1
star
25

lmob-18

πŸ¦‡ Entry for LMOB Game Jam #18
JavaScript
1
star
26

osx-copyfrom

An overcomplicated compare & copy function for OSX
Shell
1
star
27

javascript-starter

A basic starter template for JavaScript repositories.
JavaScript
1
star