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
79 lines
2.6 KiB
PHP
79 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace DeliciousBrains\WP_Offload_Media\Aws3\Aws\Crypto;
|
|
|
|
use DeliciousBrains\WP_Offload_Media\Aws3\Aws\Exception\CryptoException;
|
|
use DeliciousBrains\WP_Offload_Media\Aws3\GuzzleHttp\Psr7;
|
|
use DeliciousBrains\WP_Offload_Media\Aws3\GuzzleHttp\Psr7\StreamDecoratorTrait;
|
|
use DeliciousBrains\WP_Offload_Media\Aws3\Psr\Http\Message\StreamInterface;
|
|
use DeliciousBrains\WP_Offload_Media\Aws3\Aws\Crypto\Polyfill\AesGcm;
|
|
use DeliciousBrains\WP_Offload_Media\Aws3\Aws\Crypto\Polyfill\Key;
|
|
/**
|
|
* @internal Represents a stream of data to be gcm decrypted.
|
|
*/
|
|
class AesGcmDecryptingStream implements AesStreamInterface
|
|
{
|
|
use StreamDecoratorTrait;
|
|
private $aad;
|
|
private $initializationVector;
|
|
private $key;
|
|
private $keySize;
|
|
private $cipherText;
|
|
private $tag;
|
|
private $tagLength;
|
|
/**
|
|
* @var StreamInterface
|
|
*/
|
|
private $stream;
|
|
/**
|
|
* @param StreamInterface $cipherText
|
|
* @param string $key
|
|
* @param string $initializationVector
|
|
* @param string $tag
|
|
* @param string $aad
|
|
* @param int $tagLength
|
|
* @param int $keySize
|
|
*/
|
|
public function __construct(StreamInterface $cipherText, $key, $initializationVector, $tag, $aad = '', $tagLength = 128, $keySize = 256)
|
|
{
|
|
$this->cipherText = $cipherText;
|
|
$this->key = $key;
|
|
$this->initializationVector = $initializationVector;
|
|
$this->tag = $tag;
|
|
$this->aad = $aad;
|
|
$this->tagLength = $tagLength;
|
|
$this->keySize = $keySize;
|
|
// unsetting the property forces the first access to go through
|
|
// __get().
|
|
unset($this->stream);
|
|
}
|
|
public function getOpenSslName()
|
|
{
|
|
return "aes-{$this->keySize}-gcm";
|
|
}
|
|
public function getAesName()
|
|
{
|
|
return 'AES/GCM/NoPadding';
|
|
}
|
|
public function getCurrentIv()
|
|
{
|
|
return $this->initializationVector;
|
|
}
|
|
public function createStream()
|
|
{
|
|
if (\version_compare(\PHP_VERSION, '7.1', '<')) {
|
|
return Psr7\Utils::streamFor(AesGcm::decrypt((string) $this->cipherText, $this->initializationVector, new Key($this->key), $this->aad, $this->tag, $this->keySize));
|
|
} else {
|
|
$result = \openssl_decrypt((string) $this->cipherText, $this->getOpenSslName(), $this->key, \OPENSSL_RAW_DATA, $this->initializationVector, $this->tag, $this->aad);
|
|
if ($result === \false) {
|
|
throw new CryptoException('The requested object could not be' . ' decrypted due to an invalid authentication tag.');
|
|
}
|
|
return Psr7\Utils::streamFor($result);
|
|
}
|
|
}
|
|
public function isWritable() : bool
|
|
{
|
|
return \false;
|
|
}
|
|
}
|