feat: add S3-compatible storage provider (MinIO, Ceph, R2, etc.)
Adds a new 'S3-Compatible Storage' provider that works with any
S3-API-compatible object storage service, including MinIO, Ceph,
Cloudflare R2, Backblaze B2, and others.
Changes:
- New provider class: classes/providers/storage/s3-compatible-provider.php
- Provider key: s3compatible
- Reads user-configured endpoint URL from settings
- Uses path-style URL access (required by most S3-compatible services)
- Supports credentials via AS3CF_S3COMPAT_ACCESS_KEY_ID /
AS3CF_S3COMPAT_SECRET_ACCESS_KEY wp-config.php constants
- Disables AWS-specific features (Block Public Access, Object Ownership)
- New provider SVG icons (s3compatible.svg, -link.svg, -round.svg)
- Registered provider in main plugin class with endpoint setting support
- Updated StorageProviderSubPage to show endpoint URL input for S3-compatible
- Built pro settings bundle with rollup (Svelte 4.2.19)
- Added package.json and updated rollup.config.mjs for pro-only builds
This commit is contained in:
218
vendor/deliciousbrains/api.php
vendored
Normal file
218
vendor/deliciousbrains/api.php
vendored
Normal file
@@ -0,0 +1,218 @@
|
||||
<?php
|
||||
/**
|
||||
* API Wrapper Class
|
||||
*
|
||||
* @package deliciousbrains
|
||||
* @subpackage api
|
||||
* @copyright Copyright (c) 2015, Delicious Brains
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
||||
* @since 0.1
|
||||
*/
|
||||
|
||||
// Exit if accessed directly
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Delicious_Brains_API Class
|
||||
*
|
||||
* This class is a wrapper for the Delicious Brains WooCommerce API
|
||||
*
|
||||
* @since 0.1
|
||||
*/
|
||||
class Delicious_Brains_API {
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $api_url;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $api_base = 'https://api.deliciousbrains.com';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $api_status_url = 'http://s3.amazonaws.com/cdn.deliciousbrains.com/status.json';
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $transient_timeout;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $transient_retry_timeout;
|
||||
|
||||
/**
|
||||
* Initiate API wrapper.
|
||||
*/
|
||||
function __construct() {
|
||||
$this->transient_timeout = HOUR_IN_SECONDS * 12;
|
||||
$this->transient_retry_timeout = HOUR_IN_SECONDS * 2;
|
||||
|
||||
if ( defined( 'DBRAINS_API_BASE' ) ) {
|
||||
$this->api_base = DBRAINS_API_BASE;
|
||||
}
|
||||
|
||||
$this->api_url = $this->api_base . '/?wc-api=delicious-brains';
|
||||
}
|
||||
|
||||
/**
|
||||
* Default request arguments passed to an HTTP request
|
||||
*
|
||||
* @return array
|
||||
*
|
||||
* @see wp_remote_request() For more information on the available arguments.
|
||||
*/
|
||||
protected function get_default_request_args() {
|
||||
return array(
|
||||
'timeout' => 10,
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Wrapper for wp_remote_get
|
||||
*
|
||||
* @param string $url
|
||||
* @param array $args
|
||||
*
|
||||
* @return array|WP_Error
|
||||
*/
|
||||
public function get( $url, $args = array() ) {
|
||||
$defaults = $this->get_default_request_args();
|
||||
|
||||
$args = array_merge( $defaults, $args );
|
||||
|
||||
$response = wp_remote_get( $url, $args );
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate the API URL
|
||||
*
|
||||
* @param string $request
|
||||
* @param array $args
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_url( $request, $args = array() ) {
|
||||
return $this->api_url;
|
||||
}
|
||||
|
||||
/**
|
||||
* Main function for communicating with the Delicious Brains API.
|
||||
*
|
||||
* @param string $request
|
||||
* @param array $args
|
||||
*
|
||||
* @return string|bool
|
||||
*/
|
||||
public function api_request( $request, $args = array() ) {
|
||||
$url = $this->get_url( $request, $args );
|
||||
$response = $this->get( $url );
|
||||
|
||||
if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$response = wp_remote_retrieve_body( $response );
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check the support access for a license key
|
||||
*
|
||||
* @param string $licence_key
|
||||
* @param string $site_url
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function check_support_access( $licence_key = '', $site_url = '' ) {
|
||||
$args = array(
|
||||
'licence_key' => $licence_key,
|
||||
'site_url' => $site_url,
|
||||
);
|
||||
|
||||
$response = $this->api_request( 'check_support_access', $args );
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* Activate a license key for an install
|
||||
*
|
||||
* @param string $licence_key
|
||||
* @param string $site_url
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function activate_licence( $licence_key = '', $site_url = '' ) {
|
||||
$args = array(
|
||||
'licence_key' => $licence_key,
|
||||
'site_url' => $site_url,
|
||||
);
|
||||
|
||||
$response = $this->api_request( 'activate_licence', $args );
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* Reactivate an install for a license key
|
||||
*
|
||||
* @param string $licence_key
|
||||
* @param string $site_url
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function reactivate_licence( $licence_key = '', $site_url = '' ) {
|
||||
$args = array(
|
||||
'licence_key' => $licence_key,
|
||||
'site_url' => $site_url,
|
||||
);
|
||||
|
||||
$response = $this->api_request( 'reactivate_licence', $args );
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the upgrade data for plugin and addons
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function get_upgrade_data() {
|
||||
$response = $this->api_request( 'upgrade_data' );
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get changelog contents for the given plugin slug.
|
||||
*
|
||||
* @param string $slug
|
||||
* @param bool $beta
|
||||
*
|
||||
* @return bool|string
|
||||
*/
|
||||
public function get_changelog( $slug, $beta = false ) {
|
||||
if ( true === $beta ) {
|
||||
$slug .= '-beta';
|
||||
}
|
||||
|
||||
$args = array(
|
||||
'slug' => $slug,
|
||||
);
|
||||
|
||||
$response = $this->api_request( 'changelog', $args );
|
||||
|
||||
return $response;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user