first commit
This commit is contained in:
37
wp-content/plugins/sitepress-multilingual-cms/vendor/wpml/wp/classes/Nonce.php
vendored
Normal file
37
wp-content/plugins/sitepress-multilingual-cms/vendor/wpml/wp/classes/Nonce.php
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace WPML\LIB\WP;
|
||||
|
||||
use WPML\Collect\Support\Collection;
|
||||
use WPML\Collect\Support\Traits\Macroable;
|
||||
use WPML\FP\Either;
|
||||
use function WPML\FP\curryN;
|
||||
use function WPML\FP\partial;
|
||||
|
||||
/**
|
||||
* @method static callable|Either verify(string ...$action, Collection ...$data) - Curried :: string -> Collection -> Left('Nonce error') | Right(Collection)
|
||||
* @method static callable|Either verifyEndPoint(Collection ...$data) - Curried :: Collection -> Left('Nonce error') | Right(Collection)
|
||||
* @method static callable|string create(string ...$action ) - Curried :: string -> string
|
||||
*/
|
||||
class Nonce {
|
||||
|
||||
use Macroable;
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public static function init() {
|
||||
self::macro( 'verify', curryN( 2, function ( $action, Collection $postData ) {
|
||||
return wp_verify_nonce( $postData->get( 'nonce' ), $action ?: $postData->get( 'endpoint' ) )
|
||||
? Either::right( $postData )
|
||||
: Either::left( 'Nonce error' );
|
||||
} ) );
|
||||
|
||||
self::macro( 'verifyEndPoint', self::verify( '' ) );
|
||||
|
||||
self::macro( 'create', curryN( 1, function( $str ) { return wp_create_nonce( $str ); } ) );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Nonce::init();
|
||||
Reference in New Issue
Block a user