initial commit

This commit is contained in:
2021-12-10 12:03:04 +00:00
commit c46c7ddbf0
3643 changed files with 582794 additions and 0 deletions

View File

@ -0,0 +1,69 @@
/**
* External dependencies
*/
import apiFetch, { APIFetchOptions } from '@wordpress/api-fetch';
/**
* Internal dependencies
*/
import { LAST_CART_UPDATE_TIMESTAMP_KEY } from '../data/cart/constants';
/**
* Checks if this request is a POST to the wc/store/cart endpoint.
*/
const isCartUpdatePostRequest = ( options: APIFetchOptions ) => {
const url = options.url || options.path || '';
const method = options.method || 'GET';
// Return false if there is no endpoint provided, or the request is not a POST request.
if ( ! url || method !== 'POST' ) {
return false;
}
const cartRegExp = /wc\/store\/cart\//;
const batchRegExp = /wc\/store\/batch/;
const isCart = cartRegExp.exec( url ) !== null;
const isBatch = batchRegExp.exec( url ) !== null;
if ( isCart ) {
return true;
}
if ( isBatch ) {
const requests = options?.data?.requests || [];
return requests.some( ( request: { path: string } ) => {
const requestUrl = request.path || '';
return cartRegExp.exec( requestUrl ) !== null;
} );
}
return false;
};
/**
* Middleware which saves the time that the cart was last modified in
* the browser's Local Storage
*
* @param {Object} options Fetch options.
* @param {Function} next The next middleware or fetchHandler to call.
*
* @return {*} The evaluated result of the remaining middleware chain.
*/
const cartUpdateMiddleware = (
options: APIFetchOptions,
/* eslint-disable @typescript-eslint/no-explicit-any */
next: ( arg0: APIFetchOptions, arg1: any ) => any
) => {
if ( isCartUpdatePostRequest( options ) ) {
window.localStorage.setItem(
LAST_CART_UPDATE_TIMESTAMP_KEY,
( Date.now() / 1000 ).toString()
);
}
return next( options, next );
};
apiFetch.use( cartUpdateMiddleware );

View File

@ -0,0 +1,5 @@
/**
* Internal dependencies
*/
import './store-api-nonce';
import './cart-update';

View File

@ -0,0 +1,122 @@
/**
* External dependencies
*/
import apiFetch from '@wordpress/api-fetch';
// Stores the current nonce for the middleware.
let currentNonce = '';
let currentTimestamp = 0;
try {
const storedNonceValue = window.localStorage.getItem( 'storeApiNonce' );
const storedNonce = storedNonceValue ? JSON.parse( storedNonceValue ) : {};
currentNonce = storedNonce?.nonce || '';
currentTimestamp = storedNonce?.timestamp || 0;
} catch {
// We can ignore an error from JSON parse.
}
/**
* Returns whether or not this is a wc/store API request.
*
* @param {Object} options Fetch options.
*
* @return {boolean} Returns true if this is a store request.
*/
const isStoreApiRequest = ( options ) => {
const url = options.url || options.path;
if ( ! url || ! options.method || options.method === 'GET' ) {
return false;
}
return /wc\/store\//.exec( url ) !== null;
};
/**
* Set the current nonce from a header object.
*
* @param {Object} headers Headers object.
*/
const setNonce = ( headers ) => {
const nonce =
typeof headers?.get === 'function'
? headers.get( 'X-WC-Store-API-Nonce' )
: headers[ 'X-WC-Store-API-Nonce' ];
const timestamp =
typeof headers?.get === 'function'
? headers.get( 'X-WC-Store-API-Nonce-Timestamp' )
: headers[ 'X-WC-Store-API-Nonce-Timestamp' ];
if ( nonce ) {
updateNonce( nonce, timestamp );
}
};
/**
* Updates the stored nonce within localStorage so it is persisted between page loads.
*
* @param {string} nonce Incoming nonce string.
* @param {number} timestamp Timestamp from server of nonce.
*/
const updateNonce = ( nonce, timestamp ) => {
// If the "new" nonce matches the current nonce, we don't need to update.
if ( nonce === currentNonce ) {
return;
}
// Only update the nonce if newer. It might be coming from cache.
if ( currentTimestamp && timestamp < currentTimestamp ) {
return;
}
currentNonce = nonce;
currentTimestamp = timestamp || Date.now() / 1000; // Convert ms to seconds to match php time()
// Update the persisted values.
window.localStorage.setItem(
'storeApiNonce',
JSON.stringify( {
nonce: currentNonce,
timestamp: currentTimestamp,
} )
);
};
const appendNonceHeader = ( request ) => {
const headers = request.headers || {};
request.headers = {
...headers,
'X-WC-Store-API-Nonce': currentNonce,
};
return request;
};
/**
* Nonce middleware which appends the current nonce to store API requests.
*
* @param {Object} options Fetch options.
* @param {Function} next The next middleware or fetchHandler to call.
* @return {*} The evaluated result of the remaining middleware chain.
*/
const storeNonceMiddleware = ( options, next ) => {
if ( isStoreApiRequest( options ) ) {
options = appendNonceHeader( options );
// Add nonce to sub-requests
if ( Array.isArray( options?.data?.requests ) ) {
options.data.requests = options.data.requests.map(
appendNonceHeader
);
}
}
return next( options, next );
};
apiFetch.use( storeNonceMiddleware );
apiFetch.setNonce = setNonce;
updateNonce(
// @ts-ignore wcBlocksMiddlewareConfig is window global cache for the initial nonce initialized from hydration.
wcBlocksMiddlewareConfig.storeApiNonce,
// @ts-ignore wcBlocksMiddlewareConfig is window global cache for the initial nonce initialized from hydration.
wcBlocksMiddlewareConfig.storeApiNonceTimestamp
);