Skip to content

PCextreme/rgw-admin-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

github-readme_header

Rados Gateway API Client

PHP client for the Rados Gateway admin operations api.

Requirements

  • PHP 5.6
  • PHP 7.0
  • PHP 7.1

Installation

What type of installation should I choose?

It's very simple, choose for an express installation if your application already contains a HTTP library such as GuzzleHTTP, otherwise just perform an quick installation.

Quick installation

For an quick installation we recommend you to install the php-http/curl-client package. This package is a small abstraction around native php curl api.

$ composer require php-http/curl-client guzzlehttp/psr7

After that you are ready to install this package:

$ composer require pcextreme/rgw-admin-client

Express installation

If your application already contains a compatible HTTP client, just install the correct HTTP client adapter before using this package. For a list of compatible adapters click here.

For example if your application depends on guzzlehttp/guzzle version 6 you need to install the guzzle 6 adapter package.

$ composer require php-http/guzzle6-adapter

After the installation of a client adapter you are ready to install this package:

$ composer require pcextreme/rgw-admin-client

Usage

Client configuration

Before you can use the api client you need to provided the apiUrl, apiKey and secretKey. You need to provided them when creating an instance of the client class.

$client = new Client([
    'apiUrl'    => 'https://',
    'apiKey'    => '',
    'secretKey' => '',
]);

Create and execute a request

There are two ways to interact with the rados api via this package, you can manually create the request and send them afterwards. See the code below for an example.

$request = $client->createRequest('user', 'get', ['uid' => 'user-id']);

$response = $client->sendRequest($request);

var_dump($response);

You can also use the preferred short syntax.

$response = $client->get('user', ['uid' => 'user-id']);

var_dump($response);

See the api docs for more information about the available api resources.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

PHP client for the Rados Gateway admin operations api.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages