mirror of
https://github.com/ovh/php-ovh.git
synced 2023-11-05 03:20:26 +01:00
b185c33273
Signed-off-by: Vincent Casse <vincent.casse@corp.ovh.com>
83 lines
2.7 KiB
PHP
83 lines
2.7 KiB
PHP
<?php
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
use \Ovh\Api;
|
|
use GuzzleHttp\Client;
|
|
|
|
// Informations about your application
|
|
$applicationKey = "your_app_key";
|
|
$applicationSecret = "your_app_secret";
|
|
$consumer_key = "your_consumer_key";
|
|
|
|
// Information about API and rights asked
|
|
$endpoint = 'ovh-eu';
|
|
|
|
// Informations about your web hosting and the attached domain (compulsory)
|
|
$domain = 'mydomain.ovh'; // Web hosting id (often domain ordered with it)
|
|
$domainToAttach = 'myotherdomaintoattach.ovh';
|
|
$path = 'otherFolder'; // Folder where website files are stored
|
|
|
|
// Informations about the attached domain (optional)
|
|
$cdn = 'none'; // Enable CDN on the attached domain. Can be NULL, 'none' or 'active'
|
|
$firewall = 'none'; // Enable HTTP firewall (block dangerous pattern requests with Apache mod_security). Can be NULL, 'active' or 'none'
|
|
$ownLog = 'myotherdomaintoattach.ovh'; // Separate logs by domain. Can be 'null' or domain offer you have at OVH
|
|
|
|
$http_client = new Client([
|
|
'timeout' => 30,
|
|
'connect_timeout' => 5,
|
|
]);
|
|
|
|
// Create a new attached domain
|
|
$conn = new Api( $applicationKey,
|
|
$applicationSecret,
|
|
$endpoint,
|
|
$consumer_key,
|
|
$http_client);
|
|
|
|
try {
|
|
|
|
// This call will create a "task". The task is the status of the attached domain creation.
|
|
// You can follow the task on /hosting/web/{serviceName}/tasks/{id}
|
|
$task = $conn->post('/hosting/web/' . $domain . '/attachedDomain', array(
|
|
'domain' => $domainToAttach,
|
|
'path' => $path,
|
|
'cdn' => $cdn,
|
|
'firewall' => $firewall,
|
|
'ownLog' => $ownLog,
|
|
));
|
|
|
|
echo "Task #" . $task['id'] . " is created" . PHP_EOL;
|
|
|
|
// we check every 5 seconds if the task is done
|
|
// When the task disappears, the task is done
|
|
while ( 1 ) {
|
|
try {
|
|
$wait = $conn->get('/hosting/web/' . $domain . '/tasks/' . $task['id']);
|
|
|
|
if ( strcmp( $wait['status'], 'error' ) === 0 ) {
|
|
// The task is in error state. Please check your parameters, retry or contact support.
|
|
echo "An error has occured during the task" . PHP_EOL;
|
|
break;
|
|
} elseif ( strcmp( $wait['status'], 'cancelled' ) === 0 ) {
|
|
// The task is in cancelled state. Please check your parameters, retry or contact support.
|
|
echo "Task has been cancelled during the task" . PHP_EOL;
|
|
break;
|
|
}
|
|
|
|
echo "Status of task #". $wait['id'] . " is '". $wait['status'] ."'" . PHP_EOL;
|
|
} catch ( \GuzzleHttp\Exception\ClientException $ex) {
|
|
$response = $ex->getResponse();
|
|
if ( $response && $response->getStatusCode() === 404 ) {
|
|
echo "Domain attached to the web hosting" . PHP_EOL;
|
|
break;
|
|
}
|
|
throw $ex;
|
|
}
|
|
|
|
sleep(5);
|
|
}
|
|
|
|
} catch ( Exception $ex ) {
|
|
print_r( $ex->getMessage() );
|
|
}
|
|
?>
|