myena/php-rgw-api

PHP Client for the Rados Gateway API that doesn't suck

4.0.0 2020-10-19 18:24 UTC

This package is auto-updated.

Last update: 2024-02-20 01:42:22 UTC


README

This lib aims to be a comprehensive PHP SDK for the Rados Gateway Admin API.

Installation

This lib is designed to be installed using Composer

{
  "require": {
    "myena/php-rgw-api": "4.*"
  }
}

Features

  1. All object-containing responses are modeled (list)
  2. Entire request chain is fully modeled, with required parameters being type-hinted (e.g. UserRootLink::Info)
  3. All models have full swagger-php markup
  4. Includes undocumented /metadata endpoints
  5. Parameter validation (link) with hopefully useful error messages

Usage Basics

More details on each component can be found below, however here is a quick fill-in-the-blank example:

$config = new \MyENA\RGW\Config([
    'address'   => '',
    'adminPath' => '',
    'apiKey'    => '',
    'apiSecret' => '',
]);
$client = new \MyENA\RGW\Client($config, new \MyENA\RGW\Signature\V2Signature());

[$users, $err] = $client->Metadata()->User()->List()->execute();
if (null !== $err) {
    die((string)$err);
}
var_dump($users);

// and whatever else you wanna do...

Advanced Config

You must first construct a Config:

$config = new \MyENA\RGW\Config([
    'address'   => '',  // REQUIRED
    'apiKey'    => '',  // REQUIRED
    'apiSecret' => '',  // REQUIRED

    'adminPath'     => '',  // optional, whatever your admin ops path is

    'silent' => false // optional, silences all logging
]);

Custom Guzzle Client

The optional 2nd argument in the Config constructor accepts any object implementing the Guzzle ClientInterface. If left null, a new Guzzle Client with no options will be constructed.

Custom Logger

The optional 3rd argument in the Config constructor accepts any object implementing the Psr LoggerInterface. If left null, a new Psr NullLogger will be constructed.