The G42 Cloud Php SDK allows you to easily work with G42 Cloud services such as Elastic Compute Service (ECS) and Virtual Private Cloud(VPC) without the need to handle API related tasks.
This document introduces how to obtain and use G42 Cloud Php SDK.
-
To use G42 Cloud Php SDK, you must have G42 Cloud account as well as the Access Key (AK) and Secret key (SK) of the G42 Cloud account. You can create an AccessKey in the G42 Cloud console.
-
To use G42 Cloud Php SDK to access the APIs of specific service, please make sure you do have activated the service in G42 Cloud console if needed.
-
G42 Cloud Php SDK requires PHP 5.6 or later, run command
php --version
to check the version of Php.
The recommended way to install SDK is with Composer.
Composer is a dependency management tool for Php which allows you to declare the dependencies your project needs and installs them into your project.
# Install Composer
curl -sS https://getcomposer.org/installer | php
# Install the Php SDK
composer require g42cloud/g42cloud-sdk-php:0.0.1-beta
After installing, you need to require Composer's autoloader:
require 'path/to/vendor/autoload.php';
- The following example shows how to query a domains list of CDN in a specific region, you need to substitute your real
{Service}Client
forCdnClient
in actual use. - Substitute the values for
{your ak string}
,{your sk string}
,{your endpoint string}
and{your domain id}
.
<?php
require_once ".\\vendor\autoload.php";
use G42Cloud\SDK\Core\Auth\GlobalCredentials;
use G42Cloud\SDK\Core\Http\HttpConfig;
use G42Cloud\SDK\Core\Exceptions\ConnectionException;
use G42Cloud\SDK\Core\Exceptions\RequestTimeoutException;
use G42Cloud\SDK\Core\Exceptions\ServiceResponseException;
use G42Cloud\SDK\Cdn\V1\CdnClient;
use G42Cloud\SDK\Cdn\V1\Model\ListDomainsRequest;
use Monolog\Logger;
$ak = "{your ak string}";
$sk = "{your sk string}";
$endpoint = "{your endpoint}";
$domainId = "{your domain id}";
$config = HttpConfig::getDefaultConfig();
$config->setIgnoreSslVerification(true);
$credentials = new GlobalCredentials($ak,$sk,$domainId);
$cdnClient = CdnClient::newBuilder()
->withHttpConfig($config)
->withEndpoint($endpoint)
->withCredentials($credentials)
->withStreamLogger($stream = 'php://stdout',$logLevel =Logger::INFO)
->withFileLogger($logPath='./test_log.txt', $logLevel = Logger::INFO)
->build();
function listDomainsRequest($cdnClient)
{
$listDomainsRequest = new ListDomainsRequest();
try {
$response = $cdnClient->listDomainsRequest($listDomainsRequest);
echo "\n";
echo $response;
} catch (ConnectionException $e) {
$msg = $e->getMessage();
echo "\n". $msg ."\n";
} catch (RequestTimeoutException $e) {
$msg = $e->getMessage();
echo "\n". $msg ."\n";
} catch (ServiceResponseException $e) {
echo "\n";
echo $e->getHttpStatusCode(). "\n";
echo $e->getRequestId(). "\n";
echo $e->getErrorCode() . "\n";
echo $e->getErrorMsg() . "\n";
}
}
listDomainsRequest($cdnClient);
API Explorer provides api retrieval and online debugging, supports full fast retrieval, visual debugging, help document viewing, and online consultation.
Detailed changes for each released version are documented in the CHANGELOG.md.
User Manual π
- 1. Client Configuration
- 2. Credentials Configuration
- 3. Client Initialization
- 4. Send Requests and Handle Responses
- 5. Use Asynchronous Client
- 6. Troubleshooting
1. Client Configuration π
1.1 Default Configuration π
// Use default configuration
$config = HttpConfig::getDefaultConfig();
1.2 Network Proxy π
// Use network proxy if needed
$config->setProxyProtocol('http');
$config->setProxyHost('proxy.huawei.com');
$config->setProxyPort(8080);
$config->setProxyUser('username');
$config->setProxyPassword('password');
1.3 Timeout Configuration π
// The default connection timeout is 60 seconds, the default read timeout is 120 seconds. You could change it if needed.
$config->setTimeout(120);
$config->setConnectionTimeout(60);
1.4 SSL Certification π
// Skip SSL certification checking while using https protocol if needed
$config->setIgnoreSslVerification(true);
// Server ca certification if needed
$config->setCertFile($yourCertFile);
2. Credentials Configuration π
There are two types of G42 Cloud services, regional
services and global
services.
For regional
services' authentication, project_id is required.
For global
services' authentication, domain_id is required.
Parameter description:
ak
is the access key ID for your account.sk
is the secret access key for your account.project_id
is the ID of your project depending on your region which you want to operate.domain_id
is the account ID of G42 Cloud.security_token
is the security token when using temporary AK/SK.
2.1 Use Permanent AK&SK π
// Regional services
$basicCredentials = new BasicCredentials($ak,$sk,$projectId);
// Global services
$globalCredentials = new GlobalCredentials($ak,$sk,$domainId);
2.2 Use Temporary AK&SK π
It's required to obtain temporary AK&SK and security token first, which could be obtained through permanent AK&SK or through an agency.
- Obtaining a temporary access key and security token through token, you could refer to
document: https://docs.g42cloud.com/api/iam/en-us_topic_0097949518.html . The API mentioned in the document above
corresponds to the method of
CreateTemporaryAccessKeyByToken
in IAM SDK.
// Regional services
$basicCredentials = BasicCredentials(ak, sk, projectId).withSecurityToken(securityToken);
// Global services
$globalCredentials = GlobalCredentials(ak, sk, domainId).withSecurityToken(securityToken);
3. Client Initialization π
3.1 Initialize the {Service}Client with specified Endpoint π
// Initialize specified service client instance, take CdnClient for example
$cdnClient = CdnClient::newBuilder()
->withHttpConfig($config)
->withEndpoint($endpoint)
->withCredentials($globalCredentials)
->build();
where:
$endpoint
: varies by services and regions, see Regions and Endpoints to obtain correct endpoint.
4. Send Requests and Handle Responses π
// Initialize a request and print response, take interface of listDomainsRequest for example
$request = new ListDomainsRequest();
$response = $cdnClient->listDomainsRequest($request);
echo response;
4.1 Exceptions π
Level 1 | Notice | Level 2 | Notice |
---|---|---|---|
ConnectionException | Connection error | HostUnreachableException | Host is not reachable |
SslHandShakeException | SSL certification error | ||
RequestTimeoutException | Request timeout | CallTimeoutException | timeout for single request |
RetryOutageException | no response after retrying | ||
ServiceResponseException | service response error | ServerResponseException | server inner error, http status code: [500,] |
ClientRequestException | invalid request, http status code: [400? 500) |
// handle exceptions
try {
$request = new ListDomainsRequest();
$response = $cdnClient->listDomainsRequest($request);
} catch (ConnectionException $e) {
$msg = $e->getMessage();
echo "\n". $msg ."\n";
} catch (RequestTimeoutException $e) {
$msg = $e->getMessage();
echo "\n". $msg ."\n";
} catch (ServiceResponseException $e) {
echo "\n";
echo $e->getHttpStatusCode(). "\n";
echo $e->getRequestId(). "\n";
echo $e->getErrorCode(). "\n";
echo $e->getErrorMsg(). "\n";
}
5. Use Asynchronous Client π
// Initialize asynchronous client, take CdnAsyncClient for example
$cdnClient = CdnAsyncClient::newBuilder()
->withHttpConfig($config)
->withEndpoint($endpoint)
->withCredentials($credentials)
->build();
// send asynchronous request
$request = new ListDomainsRequest();
$promise = $cdnClient->listDomainsRequest($request);
// get asynchronous response
$response = $promise->wait();
6. Troubleshooting π
SDK supports Access
log and Debug
log which could be configured manually.
6.1 Access Log π
SDK supports print access log which could be enabled by manual configuration, the log could be output to the console or specified files.
For example:
$cdnClient = CdnClient::newBuilder()
->withHttpConfig($config)
->withEndpoint($endpoint)
->withCredentials($globalCredentials)
->withStreamLogger($stream = 'php://stdout',$logLevel =Logger::INFO) // Write log to files
->withFileLogger($logPath='./test_log.txt', $logLevel = Logger::INFO) // Write log to console
->build();
where:
withFileLogger
:$logPath
: log file path.$logLevel
: log level, default is INFO.$logMaxFiles
: count of log file, default is 5.
withStreamLogger
:$stream
: stream object, default is sys.stdout.$logLevel
: log level, default is INFO.
After enabled log, the SDK will print the access log by default, every request will be recorded to the console like:
[2020-10-16 03:10:29][INFO] "GET https://iam.ae-ad-1.g42cloud.com/v3.0/OS-CREDENTIAL/credentials/W8VHHFEFPIJV6TFOUOQO" 200 244 7a68399eb8ed63fc91018426a7c4b8a0
The format of access log is:
"{httpMethod} {uri}" {httpStatusCode} {responseContentLength} {requestId}
6.2 Original HTTP Listener π
In some situation, you may need to debug your http requests, original http request and response information will be needed. The SDK provides a listener function to obtain the original encrypted http request and response information.
β οΈ Warning: The original http log information is used in debugging stage only, please do not print the original http header or body in the production environment. These log information is not encrypted and contains sensitive data such as the password of your ECS virtual machine, or the password of your IAM user account, etc. When the response body is binary content, the body will be printed as "***" without detailed information.
$requestHandler = function ($argsMap) {
if (isset($argsMap['request'])) {
$sdkRequest = $argsMap['request'];
$requestHeaders = $sdkRequest->headerParams;
$requestBase = "> Request " . $sdkRequest->method . ' ' .
$sdkRequest->url . "\n";
if (count($requestHeaders) > 0) {
$requestBase = $requestBase . '> Headers:' . "\n";
foreach ($requestHeaders as $key => $value) {
$requestBase = $requestBase . ' ' . $key . ' : ' .
$value . "\n";
}
$requestBase = $requestBase . '> Body: ' .
$sdkRequest->body . "\n\n";
}
if (isset($argsMap['logger'])) {
$logger = $argsMap['logger'];
$logger->addDebug($requestBase);
}
}
};
$responseHandler = function ($argsMap) {
if (isset($argsMap['response'])) {
$response = $argsMap['response'];
$responseBase = "> Response HTTP/1.1 " .
$response->getStatusCode() . "\n";
$responseHeaders = $response->getHeaders();
if (count($responseHeaders) > 0) {
$responseBase = $responseBase . '> Headers:' . "\n";
foreach ($responseHeaders as $key => $value) {
$valueToString = '';
if (is_array($value)) {
$valueToString = ''.join($value);
}
$responseBase = $responseBase . ' ' . $key . ' : '
. $valueToString . "\n";
}
$responseBody = $response->getBody();
$responseBase = $responseBase . '> Body: ' . (string)
$responseBody . "\n\n";
}
if (isset($argsMap['logger'])) {
$logger = $argsMap['logger'];
$logger->addDebug($responseBase);
}
}
};
$httpHandler = new HttpHandler();
$httpHandler->addRequestHandlers($requestHandler);
$httpHandler->addResponseHandlers($responseHandler);
$cdnClient = CdnClient::newBuilder()
->withHttpConfig($config)
->withEndpoint($endpoint)
->withCredentials(null)
->withStreamLogger($stream='php://stdout',$logLevel=Logger::INFO)
->withFileLogger($logPath='./test_log.txt', $logLevel=Logger::INFO)
->withHttpHandler($httpHandler)
->build();
where:
HttpHandler supports method addRequestHandlers
and addResponseHandlers
.