mirror of
https://gh.wpcy.net/https://github.com/aspirepress/aspireupdate.git
synced 2026-07-17 09:56:36 +08:00
* Prevent Recursion on certain Host name patterns (#69) --------- Signed-off-by: Namith Jawahar <48271037+namithj@users.noreply.github.com> * Playground ready updating into main (#71) * Update blueprint.json Switching to default theme of 2022 to support minimum WP Playground support for WordPress version as 5.9.9 Signed-off-by: Namith Jawahar <48271037+namithj@users.noreply.github.com> * Switching blueprint.json to 2022 theme Signed-off-by: Alex Sirota <alex@newpathconsulting.com> --------- Signed-off-by: Alex Sirota <alex@newpathconsulting.com> Signed-off-by: Namith Jawahar <48271037+namithj@users.noreply.github.com> * `Add New Plugin`: Remove 'Featured' and 'Favorites' tabs when API rewrite is enabled. (#80) * Add class for overriding plugins screens. * Remove unused tabs when API rewrite is enabled. * `Add New Theme`: Remove 'Favorites' filter tab when API rewrite is enabled. (#82) * Add class for overriding themes screens. * Hide unsupported filters. * Redirect unsupported filters to `theme-install.php`. --------- Signed-off-by: Alex Sirota <alex@newpathconsulting.com> Co-authored-by: Alex Sirota <alex@newpathconsulting.com> * Add PHPUnit. (#87) * Add PHPUnit scaffolding. * Add Composer files for dependencies and test script. * Add `.gitignore`. * Add sample test for `Admin_Settings::get_setting()`. * Add PHP 8.3 to the test matrix. * Add `.cache/*` to `.gitignore`. * Limit testing to PHP 7.4 (minimum) and 8.3 (latest). * `Plugins Screens`: Initialize in `Controller::__construct()`. (#89) * `Workflows`: Fix PHP version and add more workflow triggers. (#92) * Fix PHP version. * Add `push` and `workflow_dispatch` workflow triggers. * `Tests`: Ensure options are not set when tests run. (#95) * Introduce a test constant. * Don't initialize when the tests are running. * Use a new object for testing `Admin_Settings::get_setting()`. * Warning when debug-aspire-update.log doesnt exist (#109) * `Tests`: Add default coverage settings. (#97) * Improve I18N Issues Based on version 0.5 (#104) * Fixes Settings not getting saved when rewrites were turned off (#108) * Add French Translation (#105) * I18n fr fr (#113) * Translations loading fix112 (#114) * Add French translations. * load any available translations with code in the plugin * #110 (#116) Fixes #110 * Add nonce verification and sanitize `$_REQUEST/$_GET` values. (#115) Signed-off-by: Colin Stewart <79332690+costdev@users.noreply.github.com> * Added German Translation (#111) * added German translation * added gitignore for .DS_Store Signed-off-by: Harikrishnan R <harikrishnanr994@gmail.com> * Voltron has landed. (#117) The Voltron has landed. See if you can find where. * `Admin Settings`: Delete all settings when the plugin is uninstalled. (#118) * `Admin Settings`: Add multisite-safe deletion of all settings. * Delete all settings when the plugin is uninstalled. * add multisite support (#102) * accidentally deleted (#124) Fixed typo in code deleted when addressing #102 * Add `.editorconfig`. (#123) * create zip with each new tagged release (#121) * create zip with each new tagged release * update .gitattributes * Cleanup after `.editorconfig` was added to the repository. (#126) * Add coding standard. (#127) * Add Coding Standard. * Add PHPCS cache directory. * Coding Standards: Apply PHPCBF to codebase. * Coding Standards: Add GitHub workflow. --------- Signed-off-by: Alex Sirota <alex@newpathconsulting.com> Co-authored-by: Alex Sirota <alex@newpathconsulting.com> --------- Signed-off-by: Namith Jawahar <48271037+namithj@users.noreply.github.com> Signed-off-by: Alex Sirota <alex@newpathconsulting.com> Signed-off-by: Colin Stewart <79332690+costdev@users.noreply.github.com> Signed-off-by: Harikrishnan R <harikrishnanr994@gmail.com> Co-authored-by: Namith Jawahar <48271037+namithj@users.noreply.github.com> Co-authored-by: Colin Stewart <79332690+costdev@users.noreply.github.com> Co-authored-by: Alex Lion <learnwithalex@gmail.com> Co-authored-by: Sébastien SERRE <sebastien@thivinfo.com> Co-authored-by: Harikrishnan R <harikrishnanr994@gmail.com> Co-authored-by: Andy Fragen <andy@thefragens.com>
96 lines
2.3 KiB
PHP
96 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* The Class for Rewriting the Default API.
|
|
*
|
|
* @package aspire-update
|
|
*/
|
|
|
|
namespace AspireUpdate;
|
|
|
|
/**
|
|
* The Class for Rewriting the Default API.
|
|
*/
|
|
class API_Rewrite {
|
|
/**
|
|
* The default API Host.
|
|
*
|
|
* @var string
|
|
*/
|
|
private $default_host = 'api.wordpress.org';
|
|
|
|
/**
|
|
* The redirected API Host.
|
|
*
|
|
* @var string
|
|
*/
|
|
private $redirected_host;
|
|
|
|
/**
|
|
* Disable SSL.
|
|
*
|
|
* @var boolean
|
|
*/
|
|
private $disable_ssl;
|
|
|
|
/**
|
|
* The Constructor.
|
|
*
|
|
* @param string $redirected_host The host to redirect to.
|
|
* @param boolean $disable_ssl Disable SSL.
|
|
*/
|
|
public function __construct( $redirected_host, $disable_ssl ) {
|
|
if ( 'debug' === $redirected_host ) {
|
|
$this->redirected_host = $this->default_host;
|
|
} else {
|
|
$this->redirected_host = strtolower( $redirected_host );
|
|
}
|
|
$this->disable_ssl = $disable_ssl;
|
|
add_filter( 'pre_http_request', [ $this, 'pre_http_request' ], 10, 3 );
|
|
}
|
|
|
|
/**
|
|
* Rewrite the API End points.
|
|
*
|
|
* @param mixed $response The response for the request.
|
|
* @param array $parsed_args The arguments for the request.
|
|
* @param string $url The URL for the request.
|
|
*
|
|
* @return mixed The response or false.
|
|
*/
|
|
public function pre_http_request( $response, $parsed_args, $url ) {
|
|
if (
|
|
isset( $this->default_host ) &&
|
|
( '' !== $this->default_host ) &&
|
|
isset( $this->redirected_host ) &&
|
|
( '' !== $this->redirected_host )
|
|
) {
|
|
if ( false !== strpos( $url, $this->default_host ) ) {
|
|
Debug::log_string( 'Default API Found: ' . $url );
|
|
Debug::log_request( $parsed_args );
|
|
|
|
if ( $this->default_host !== $this->redirected_host ) {
|
|
if ( $this->disable_ssl ) {
|
|
Debug::log_string( 'SSL Verification Disabled' );
|
|
$parsed_args['sslverify'] = false;
|
|
}
|
|
|
|
$updated_url = str_replace( $this->default_host, $this->redirected_host, $url );
|
|
Debug::log_string( 'API Rerouted to: ' . $updated_url );
|
|
|
|
/**
|
|
* Temporarily Unhook Filter to prevent recursion.
|
|
*/
|
|
remove_filter( 'pre_http_request', [ $this, 'pre_http_request' ] );
|
|
$response = wp_remote_request( $updated_url, $parsed_args );
|
|
add_filter( 'pre_http_request', [ $this, 'pre_http_request' ], 10, 3 );
|
|
|
|
Debug::log_response( $response );
|
|
|
|
return $response;
|
|
|
|
}
|
|
}
|
|
}
|
|
return $response;
|
|
}
|
|
}
|