mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-20 07:14:38 +01:00
174 lines
6.1 KiB
PHP
174 lines
6.1 KiB
PHP
<?php
|
||
/*
|
||
### Configuration
|
||
- `directadmin` – array with configuration for DirectAdmin
|
||
- `host` – DirectAdmin host
|
||
- `port` – DirectAdmin port (default: 2222, not required)
|
||
- `scheme` – DirectAdmin scheme (default: http, not required)
|
||
- `username` – DirectAdmin username
|
||
- `password` – DirectAdmin password (it is recommended to use login keys!)
|
||
- `db_user` – Database username (required when using directadmin:createdb or directadmin:deletedb)
|
||
- `db_name` – Database namse (required when using directadmin:createdb)
|
||
- `db_password` – Database password (required when using directadmin:createdb)
|
||
- `domain_name` – Domain to create, delete or edit (required when using directadmin:createdomain, directadmin:deletedomain, directadmin:symlink-private-html or directadmin:php-version)
|
||
- `domain_ssl` – Enable SSL, options: ON/OFF, default: ON (optional when using directadmin:createdb)
|
||
- `domain_cgi` – Enable CGI, options: ON/OFF, default: ON (optional when using directadmin:createdb)
|
||
- `domain_php` – Enable PHP, options: ON/OFF, default: ON (optional when using directadmin:createdb)
|
||
- `domain_php_version` – Domain PHP Version, default: 1 (required when using directadmin:php-version)
|
||
|
||
*/
|
||
namespace Deployer;
|
||
use Deployer\Task\Context;
|
||
use Deployer\Utility\Httpie;
|
||
|
||
/**
|
||
* getDirectAdminConfig
|
||
*
|
||
* @return array
|
||
*/
|
||
function getDirectAdminConfig()
|
||
{
|
||
$config = get('directadmin', []);
|
||
|
||
if (!is_array($config) ||
|
||
!isset($config['host']) ||
|
||
!isset($config['username']) ||
|
||
!isset($config['password']) ) {
|
||
throw new \RuntimeException("Please set the following DirectAdmin config:" . PHP_EOL . "set('directadmin', ['host' => '127.0.0.1', 'port' => 2222, 'username' => 'admin', 'password' => 'password']);");
|
||
}
|
||
|
||
return $config;
|
||
}
|
||
|
||
/**
|
||
* DirectAdmin
|
||
*
|
||
* @param string $action
|
||
* @param array $data
|
||
*
|
||
* @return void
|
||
*/
|
||
function DirectAdmin(string $action, array $data = [])
|
||
{
|
||
$config = getDirectAdminConfig();
|
||
$scheme = $config['scheme'] ?? 'http';
|
||
$port = $config['port'] ?? 2222;
|
||
|
||
$result = Httpie::post(sprintf('%s://%s:%s/%s', $scheme, $config['host'], $port, $action))
|
||
->formBody($data)
|
||
->setopt(CURLOPT_USERPWD, $config['username'] . ':' . $config['password'])
|
||
->send();
|
||
|
||
parse_str($result, $resultData);
|
||
|
||
if ($resultData['error'] === '1') {
|
||
$resultData['details'] = trim($resultData['details']);
|
||
$resultData['details'] = str_replace(['\\n', '\\r'], '', $resultData['details']);
|
||
$resultData['details'] = strip_tags($resultData['details']);
|
||
|
||
writeln('<error>DirectAdmin message: ' . $resultData['details'] . '</error>');
|
||
}
|
||
}
|
||
|
||
desc('Creates a database on DirectAdmin');
|
||
task('directadmin:createdb', function () {
|
||
$config = getDirectAdminConfig();
|
||
|
||
if (!is_array($config) ||
|
||
!isset($config['db_name']) ||
|
||
!isset($config['db_user']) ||
|
||
!isset($config['db_password']) ) {
|
||
throw new \RuntimeException("Please add the following DirectAdmin config:" . PHP_EOL . "add('directadmin', ['db_name' => 'test', 'db_user' => 'test', 'db_password' => '123456']);");
|
||
}
|
||
|
||
DirectAdmin('CMD_API_DATABASES', [
|
||
'action' => 'create',
|
||
'name' => $config['db_name'],
|
||
'user' => $config['db_user'],
|
||
'passwd' => $config['db_password'],
|
||
'passwd2' => $config['db_password'],
|
||
]);
|
||
});
|
||
|
||
desc('Deletes a database on DirectAdmin');
|
||
task('directadmin:deletedb', function () {
|
||
$config = getDirectAdminConfig();
|
||
|
||
if (!is_array($config) ||
|
||
!isset($config['db_user'])) {
|
||
throw new \RuntimeException("Please add the following DirectAdmin config:" . PHP_EOL . "add('directadmin', ['db_user' => 'test_database']);");
|
||
}
|
||
|
||
DirectAdmin('CMD_API_DATABASES', [
|
||
'action' => 'delete',
|
||
'select0' => $config['username'] . '_' . $config['db_user'],
|
||
]);
|
||
});
|
||
|
||
desc('Creates a domain on DirectAdmin');
|
||
task('directadmin:createdomain', function () {
|
||
$config = getDirectAdminConfig();
|
||
|
||
if (!is_array($config) ||
|
||
!isset($config['domain_name'])) {
|
||
throw new \RuntimeException("Please add the following DirectAdmin config:" . PHP_EOL . "add('directadmin', ['domain_name' => 'test.example.com']);");
|
||
}
|
||
|
||
DirectAdmin('CMD_API_DOMAIN', [
|
||
'action' => 'create',
|
||
'domain' => $config['domain_name'],
|
||
'ssl' => $config['domain_ssl'] ?? 'On',
|
||
'cgi' => $config['domain_cgi'] ?? 'ON',
|
||
'php' => $config['domain_php'] ?? 'ON',
|
||
]);
|
||
});
|
||
|
||
desc('Deletes a domain on DirectAdmin');
|
||
task('directadmin:deletedomain', function () {
|
||
$config = getDirectAdminConfig();
|
||
|
||
if (!is_array($config) ||
|
||
!isset($config['domain_name'])) {
|
||
throw new \RuntimeException("Please add the following DirectAdmin config:" . PHP_EOL . "add('directadmin', ['domain_name' => 'test.example.com']);");
|
||
}
|
||
|
||
DirectAdmin('CMD_API_DOMAIN', [
|
||
'delete' => 'anything',
|
||
'confirmed' => 'anything',
|
||
'select0' => $config['domain_name'],
|
||
]);
|
||
});
|
||
|
||
desc('Symlink your private_html to public_html');
|
||
task('directadmin:symlink-private-html', function () {
|
||
$config = getDirectAdminConfig();
|
||
|
||
if (!is_array($config) ||
|
||
!isset($config['domain_name'])) {
|
||
throw new \RuntimeException("Please add the following DirectAdmin config:" . PHP_EOL . "add('directadmin', ['domain_name' => 'test.example.com']);");
|
||
}
|
||
|
||
DirectAdmin('CMD_API_DOMAIN', [
|
||
'action' => 'private_html',
|
||
'domain' => $config['domain_name'],
|
||
'val' => 'symlink',
|
||
]);
|
||
});
|
||
|
||
desc('Changes the PHP version from a domain');
|
||
task('directadmin:php-version', function () {
|
||
$config = getDirectAdminConfig();
|
||
|
||
if (!is_array($config) ||
|
||
!isset($config['domain_name']) ||
|
||
!isset($config['domain_php_version'])) {
|
||
throw new \RuntimeException("Please add the following DirectAdmin config:" . PHP_EOL . "add('directadmin', ['domain_name' => 'test.example.com', 'domain_php_version' => 1]);");
|
||
}
|
||
|
||
DirectAdmin('CMD_API_DOMAIN', [
|
||
'action' => 'php_selector',
|
||
'domain' => $config['domain_name'],
|
||
'php1_select' => $config['domain_php_version'],
|
||
]);
|
||
});
|