clue/solusvm-api-react
Composer 安装命令:
composer require clue/solusvm-api-react
包简介
A simple, async PHP library to manage your VPS through the SolusVM Client API
README 文档
README
Simple async access to your VPS box through the SolusVM API, built on top of React PHP
Solus Virtual Manager (SolusVM) is a popular commercial control panel (CP) for virtual private servers (VPS). Its web interface can be used to control your VPS, see its details or boot, reboot or shutdown.
Using SolusVM is pretty common for smaller VPS hosting companies, in particular for those listed on Low End Box. As a user (customer) you get full root access to a VPS (usually via SSH) and use the SolusVM web interface to manage your VPS.
This project uses the SolusVM Client API so that you can manage your VPS programatically without having to log in to the web interface to check your bandwidth usage or reboot your VPS.
Note: This project is in beta stage! Feel free to report any issues you encounter.
Quickstart example
Once installed, you can use the following code to fetch the info for your VPS from your SolusVM provider:
$loop = React\EventLoop\Factory::create(); $factory = new Factory($loop); $client = $factory->createClient(array( 'user' => '147492ddec07231c2de7e5865880fd0191955916', 'pass' => 'Y4WNA-TZS6J-15YMB', 'host' => 'manage.myhost.local' )); $client->info()->then(function ($result) { var_dump($result); }); $loop->run();
See also the examples.
Usage
Factory
The Factory class is responsible for constructing the Client instance.
It also registers everything with the main EventLoop.
$loop = React\EventLoop\Factory::create(); $factory = new Factory($loop);
If you need custom DNS or proxy settings, you can explicitly pass a
custom Browser instance:
$browser = new Clue\React\Buzz\Browser($loop); $factory = new Factory($loop, $browser);
createClient()
The createClient($address) method can be used to create a new Client instance.
You have to pass an address as either of the following:
- string
{scheme}://{hash/user}:{key/pass}@{host}/{path}, for examplehttps://147492ddec07231c2de7e5865880fd0191955916:Y4WNA-TZS6J-15YMB@manage.myhost.local - array containing the keys
scheme,user(hash),pass(key),host,port,path, as per the above quickstart example
Only user and pass have to be set explicitly, the Factory assumes defaults from the URL https://localhost:5656/api/client/command.php for the other parts.
Client
The Client class is responsible for communication with the remote SolusVM API.
Actions
All public methods resemble their respective SolusVM Client API actions.
$client->reboot(); $client->boot(); $client->shutdown(); $client->status(); $client->info($ipaddr = true, $hdd = true, $mem = true, $bw = true);
Listing all available actions is out of scope here, please refer to the class outline.
Processing
Issuing actions is async (non-blocking), so you can actually send multiple action requests in parallel. The SolusVM API service will respond to each request with a response value. The order is not guaranteed. Sending requests uses a Promise-based interface that makes it easy to react to when a request is fulfilled (i.e. either successfully resolved or rejected with an error):
$client->status()->then( function ($result) { // response received for status action }, function (Exception $e) { // an error occured while executing the status action } });
Install
The recommended way to install this library is through composer. New to composer?
{
"require": {
"clue/solusvm-api-react": "~0.1.0"
}
}
License
MIT
clue/solusvm-api-react 适用场景与选型建议
clue/solusvm-api-react 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 35 次下载、GitHub Stars 达 7, 最近一次更新时间为 2014 年 07 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「vps」 「async」 「reactphp」 「SolusVM」 「Solus Virtual Manager」 「control panel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 clue/solusvm-api-react 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 clue/solusvm-api-react 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 clue/solusvm-api-react 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Simple, event-driven multicast UDP message client and server for ReactPHP.
The bundle for easy using json-rpc api on your project
An async event for hyperf.
Azure Virtual Machines REST API PHP library
VPS hosting module for the MyAdmin multi-service billing and management platform. Provides VPS provisioning, lifecycle management (start/stop/restart/backup/terminate), slice-based resource scaling, and a full SOAP/REST API for automated ordering and administration.
A decorator of the ReactPHP MySQL connection interface which augments its behaviour, e.g. providing binding of associative parameters.
统计信息
- 总下载量: 35
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-07-09