定制 blesta/reseller-api 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

blesta/reseller-api

最新稳定版本:1.1.0

Composer 安装命令:

composer require blesta/reseller-api

包简介

The official implementation of the Blesta Reseller API

README 文档

README

Build Status Coverage Status

The Blesta Reseller API library.

This library implements the Reseller API.

Installation

Install via composer:

composer require blesta/reseller-api:~1.0

Basic Usage

Initialize your connection. You'll need to inject this connection into any command type you wish to initialize.

use Blesta\ResellerApi\Connection;

$connection = new Connection();
$connection->setBasicAuth($username, $password);

Credits

Allows fetching available credit on your account.

use Blesta\ResellerApi\Command\Credits;

$credits = new Credits($connection);

Get Credits

$result = $credits->get();
echo $result->response();

Packages

Allows fetching information on available packages.

use Blesta\ResellerApi\Command\Packages;

$packages = new Packages($connection);

Get Packages

$result = $packages->get();
print_r($result->response());

Get Pricing

$result = $packages->getPricing($package_id);
print_r($result->response());

Licenses

Allows you to add, update, suspend, unsuspend, and cancel a license.

use Blesta\ResellerApi\Command\Licenses;

$licenses = new Licenses($connection);

Add License

$data = array(
    'pricing_id' => 1,
    'test_mode' => 'true'
);
$result = $licenses->add($data);
$licenseKey = $result->response();

Update License

$data = array(
    'license' => 'abcdef0123456789',
    'reissue_status' => 'reissue',
    'test_mode' => 'true'
);
$licenses->update($data);

Cancel License

$data = array(
    'license' => 'abcdef0123456789',
    'test_mode' => 'true'
);
$licenses->cancel($data);

Suspend License

$data = array(
    'license' => 'abcdef0123456789',
    'test_mode' => 'true'
);
$licenses->suspend($data);

Unuspend License

$data = array(
    'license' => 'abcdef0123456789',
    'test_mode' => 'true'
);
$licenses->unsuspend($data);

Search

Search for a particular license. Searches over license key, domain, IP address and installation path.

use Blesta\ResellerApi\Command\Search;

$search = new Search($connection);
$result = $search->data('search string')
    ->page(1)
    ->get();
print_r($result->response());

Command Factory

The examples shown in the Basic Usage section demonstrate direct usage of command objects. You may find the built-in command factory more user friendly.

$commandFactory = new \Blesta\ResellerApi\Command\CommandFactory();
$credits = $commandFactory->create('Credits', $connection);
$packages = $commandFactory->create('Packages', $connection);
$licenses = $commandFactory->create('Licenses', $connection);
$search = $commandFactory->create('Search', $connection);

统计信息

  • 总下载量: 668
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 6
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 6
  • Watchers: 6
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-06-26