forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDrupalSetup.php
More file actions
80 lines (70 loc) · 2.21 KB
/
DrupalSetup.php
File metadata and controls
80 lines (70 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
declare(strict_types=1);
namespace Hestia\WebApp\Installers\Drupal;
use Hestia\WebApp\BaseSetup;
use Hestia\WebApp\InstallationTarget\InstallationTarget;
use function sprintf;
class DrupalSetup extends BaseSetup
{
protected array $info = [
'name' => 'Drupal',
'group' => 'cms',
'version' => 'latest',
'thumbnail' => 'drupal-thumb.png',
];
protected array $config = [
'form' => [
'username' => ['type' => 'text', 'value' => 'admin'],
'password' => 'password',
'email' => 'text',
],
'database' => true,
'resources' => [
'composer' => ['src' => 'drupal/recommended-project', 'dst' => '/'],
],
'server' => [
'nginx' => [
'template' => 'drupal-composer',
],
'php' => [
'supported' => ['8.1', '8.2', '8.3'],
],
],
];
protected function setupApplication(InstallationTarget $target, array $options): void
{
$this->appcontext->createFile(
$target->getDocRoot('.htaccess'),
'<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ web/$1 [L]
</IfModule>',
);
$this->appcontext->runComposer($options['php_version'], [
'require',
'-d',
$target->getDocRoot(),
'drush/drush',
]);
$databaseUrl = sprintf(
'mysql://%s:%s@%s:3306/%s',
$target->database->user,
$target->database->password,
$target->database->host,
$target->database->name,
);
$this->appcontext->runPHP(
$options['php_version'],
$target->getDocRoot('/vendor/drush/drush/drush.php'),
[
'site-install',
'standard',
'--db-url=' . $databaseUrl,
'--account-name=' . $options['username'],
'--account-pass=' . $options['password'],
'--site-name=Drupal', // Sadly even when escaped spaces are splitted up
'--site-mail=' . $options['email'],
],
);
}
}