forked from wp-berlin/tech-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.php
161 lines (134 loc) · 5.49 KB
/
setup.php
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
/**
* Created by PhpStorm.
* User: alpipego
* Date: 27/04/18
* Time: 14:46
*/
require_once __DIR__ . '/vendor/autoload.php';
use function Deployer\{
ask, askConfirmation, localhost, runLocally, task, writeln
};
localhost();
function testLocally($command)
{
return runLocally("if $command; then echo ''; fi");
}
function getUrl()
{
$domain = json_decode(file_get_contents(__DIR__ . '/config/env.json'), true);
array_shift($domain);
return vsprintf('%s://%s:%d/', $domain);
}
task('setup', [
'setup:config',
'setup:git',
'setup:wpcli',
'setup:finish',
]);
task('setup:finish', function () {
if (askConfirmation('Do you want to run the local server now?', true)) {
writeln(sprintf('<info>Your site is accessible at %s, check the output below for the browserSync url.</info>', getUrl()));
runLocally('grunt');
}
writeln('<comment>If you want to start the server, run `grunt` (or `grunt fast`).</comment>');
});
task('setup:wpcli', function () {
$url = getUrl();
$cliConfig = <<<EOT
path: web/wp
url: $url
user: admin
EOT;
file_put_contents(__DIR__ . '/wp-cli.local.yml', $cliConfig);
});
task('setup:git', function () {
runLocally('git config diff.sqlite3.textconv "sqlite3 $1 .dump"');
});
task('setup:config', function () {
if (file_exists(__DIR__ . '/config/env.json')) {
if (json_decode(file_get_contents(__DIR__ . '/config/env.json'))->env !== 'local') {
writeln(sprintf('<error>Your env shows you\'re not in local environment. Please remove or correct %s.</error>'), __DIR__ . '/config/env.json');
die();
}
$overrideEnv = askConfirmation('<comment>Do you want to override your existing env.json?</comment>', false);
if ( ! $overrideEnv) {
die();
}
}
$env = [
'env' => 'local',
];
writeln('<comment>Local Domain Settings</comment>');
$env['scheme'] = ask('Enter your local scheme', 'https', ['http', 'https']);
$env['host'] = ask('Enter your local domain', 'localhost');
$env['port'] = ask('Enter your local port', '8080');
file_put_contents(__DIR__ . '/config/env.json', json_encode($env, JSON_UNESCAPED_SLASHES));
array_shift($env);
$local = [
'url' => vsprintf('%s://%s:%d/', $env),
'connection' => [
'wp' => [
'file' => 'wp',
'dir' => 'database',
'tablePrefix' => 'berlin_',
],
],
];
if (askConfirmation('Do you want to change the default database config?', false)) {
$local['connection']['wp']['file'] = ask('Enter the database file', 'wp');
$local['connection']['wp']['dir'] = ask('Enter the database dir', 'database');
$local['connection']['wp']['tablePrefix'] = ask('Enter the table prefix', 'berlin_');
}
if (askConfirmation('Do you want to add credentials for the GitHub API?', false)) {
while (empty($local['ghcp']['webhook_secret'])) {
$local['ghcp']['webhook_secret'] = ask('Enter the webhook secret');
}
while (empty($local['ghcp']['private_key'])) {
$local['ghcp']['private_key'] = ask('Enter the a relative path to the private key');
if ( ! empty($local['ghcp']['private_key']) && strpos($local['ghcp']['private_key'], '/') !== 0) {
$local['ghcp']['private_key'] = '/' . $local['ghcp']['private_key'];
}
}
while (empty($local['ghcp']['app_id'])) {
$local['ghcp']['app_id'] = (int)ask('Enter the app ID');
}
while (empty($local['ghcp']['user_agent'])) {
$local['ghcp']['user_agent'] = ask('Enter a user agent');
}
}
if (askConfirmation('Do you want update the settings for browserSync? https://browsersync.io/docs/options', false)) {
$local['bs']['browser'] = ask('Enter a default browser');
if (empty($local['bs']['browser'])) {
unset($local['bs']['browser']);
}
$local['bs']['online'] = ask('Make the website available in your network?', 'false');
if ($local['bs']['online'] === 'false' || (bool)$local['bs']['online'] === false) {
unset($local['bs']['online']);
}
$local['bs']['delay'] = (int)ask('Enter a reload delay', 100);
if ($local['bs']['delay'] === 100) {
unset($local['bs']['delay']);
}
$local['bs']['open'] = (bool)ask('Open the browser by default?', 'true');
if ($local['bs']['open'] === 'true' || (bool)$local['bs']['open'] === true) {
unset($local['bs']['open']);
}
$local['bs']['notify'] = (bool)ask('Send a notification on reload?', 'true');
if ($local['bs']['notify'] === 'true' || (bool)$local['bs']['notify'] === true) {
unset($local['bs']['notify']);
}
}
$keysReq = \Requests::get('https://api.wordpress.org/secret-key/1.1/salt/');
if ($keysReq->status_code !== 200) {
writeln('<error>The WordPress Secret Key API is not reachable</error>');
die();
}
preg_match_all("/^define\('([^']+)',\s+'([^']+)'\);$/m", $keysReq->body, $matches, PREG_SET_ORDER);
array_walk($matches, function (&$value) use (&$local) {
$key = explode('_', strtolower($value[1]));
$parent = array_pop($key);
$local[$parent . 's'][implode('_', $key)] = $value[2];
});
file_put_contents(__DIR__ . '/config/env/local.json', json_encode($local, JSON_UNESCAPED_SLASHES));
});