Download the PHP package snicco/wp-nonce-middleware without Composer
On this page you can find all versions of the php package snicco/wp-nonce-middleware. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package wp-nonce-middleware
WordPress nonce middleware for snicco/http-routing
This middleware for the snicco/http-routing
component will eliminate your WordPress nonce problems once and for all.
Stop validating nonces manually in each controller.
Stop forgetting to validate nonces.
Stop coupling your controller code to your views through nonce actions.
There is a better way.
Installation
Usage
Add the VerifyWPNonce
middleware to your global middleware.
This middleware does the following for every request:
- Unsafe requests (
POST
,PATCH
,DELETE
, etc) will be checked for a valid WordPress nonce in the request body usingwp_verify_nonce
. If no valid nonce is found a401 HTTPException
will be thrown. - For READ requests and instance of
WPNonce
will be added to the view data if the returned response is aViewResponse
.
In your views you can use the WPNonce
instance like so:
Posting to the same location where the form is located:
Posting to a route url or hard-coded url that is different from the current location:
Now forget about WordPress nonces forever. If a request reaches your controller it has a valid nonce.
Contributing
This repository is a read-only split of the development repo of the Snicco project.
This is how you can contribute.
Reporting issues and sending pull requests
Please report issues in the Snicco monorepo.
Security
If you discover a security vulnerability, please follow our disclosure procedure.
All versions of wp-nonce-middleware with dependencies
snicco/better-wp-api Version ^2.0
snicco/http-routing Version ^2.0
snicco/psr7-error-handler Version ^2.0