-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
RoboFile.php
955 lines (832 loc) · 35.4 KB
/
RoboFile.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
<?php
require_once 'vendor/autoload.php';
use DevShop\Component\Common\GitRepository;
use Symfony\Component\Process\Process;
use Symfony\Component\Yaml\Yaml;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Exception\RuntimeException;
/**
* This file provides commands to the robo CLI for managing development and
* testing of devshop.
* 1. Install Composer: https://github.com/composer/composer/releases
* 2. Clone this repo and change into the directory.
* 3. Run `bin/robo` to see the commands.
* 4. If you have docker, and docker compose, you can launch a devshop
* with `robo up`.
*
* @see http://robo.li/
*/
class RoboFile extends \Robo\Tasks {
// Install this version first when testing upgrades.
const UPGRADE_FROM_VERSION = '1.0.0-rc4-testing';
const UPGRADE_FROM_PROVISION_VERSION = '7.x-3.10';
// The version of docker-compose to suggest the user install.
const DOCKER_COMPOSE_VERSION = '1.10.0';
// Defines where devmaster is installed. 'aegir-home/devmaster-$DEVSHOP_LOCAL_VERSION'
const DEVSHOP_LOCAL_VERSION = '1.x';
// Defines the URI we will use for the devmaster site.
const DEVSHOP_LOCAL_URI = 'devshop.local.computer';
use \Robo\Common\IO;
use \DevShop\Component\Common\GitRepositoryAwareTrait;
/**
* @var The path to devshop root. Used for upgrades.
*/
private $devshop_root_path;
/**
* Map of $opts keys to $_SERVER variables.
*
* SERVER vars are set for the "docker-compose" process.
*
* @var array
*/
private $serverOptionsMap = [
'verbose' => 'ANSIBLE_VERBOSITY',
'vars' => 'ANSIBLE_EXTRA_VARS',
'tags' => 'ANSIBLE_TAGS',
'skip-tags' => 'ANSIBLE_SKIP_TAGS',
'playbook' => 'ANSIBLE_PLAYBOOK',
'playbook-command-options' => 'ANSIBLE_PLAYBOOK_COMMAND_OPTIONS',
'build-command' => 'DEVSHOP_DOCKER_COMMAND_BUILD',
'run-command' => 'DEVSHOP_DOCKER_COMMAND_RUN',
// Used in docker compose image.
'from' => 'DEVSHOP_CONTAINER_FROM',
'os' => 'OS_VERSION',
'dockerfile' => 'DOCKERFILE',
'compose-file' => 'COMPOSE_FILE',
];
/**
* Map of Symfony Console verbosity to Ansible Verbosity value.
* @var array
*/
private $ansibleVerbosityMap = [
OutputInterface::VERBOSITY_NORMAL => 0,
OutputInterface::VERBOSITY_VERBOSE => 1,
OutputInterface::VERBOSITY_VERY_VERBOSE => 2,
OutputInterface::VERBOSITY_DEBUG => 3,
];
/**
* Merge robo $opts and $_SERVER environment vars into the runtime environment
* of the docker-compose calls.
*
* @param array $opts
*/
/**
* @param array $opts The robo options array.
* @param array $env The initial environment.
*
* @return array
*/
private function generateEnvironment(array $opts, array $env = []) {
$env += $this->optionsToArray($opts['environment']);
foreach ($this->serverOptionsMap as $opt_name => $var_name) {
// Use $_SERVER var if it exists...
$env[$var_name] = !empty($_SERVER[$var_name])? $_SERVER[$var_name]:
// or use --options value if it exists.
// If not, set to empty string.
(!empty($opts[$opt_name])? $opts[$opt_name]: '');
}
$env['ANSIBLE_VERBOSITY'] = $this->ansibleVerbosityMap[$this->output()->getVerbosity()];
return $env;
}
/**
* Append _ARG to all variable names of an environment vars array.
* @param bool new Set to "true" to reset environment with only the new _ARG values.
* @return array
*/
private function generateEnvironmentArgs(array $opts, $new = false) {
// Convert opts to environment vars.
$environment = $this->generateEnvironment($opts, $_ENV);
// Load default environment, either empty or from existing.
$return_env = $new? []: $environment;
// Append _ARG to all environment variable names.
foreach ($environment as $name => $value) {
$return_env["{$name}_ARG"] = $value;
}
return $return_env;
}
public function __construct()
{
// Tell Provision power process to print output directly.
putenv('PROVISION_PROCESS_OUTPUT=direct');
}
/**
* Check for docker, docker-compose and drush. Install them if they are
* missing.
*/
public function prepareHost() {
// Check for docker
$this->say('Checking for Docker...');
if ($this->taskExec('docker info')
->printOutput(FALSE)
->run()
->wasSuccessful()) {
$this->_exec('docker -v');
$this->say('Docker detected.');
}
else {
$this->say('Could not run docker command. Find instructons for installing at https://www.docker.com/products/docker');
throw new RuntimeException('Unable to continue.');
}
// Check for docker-compose
$this->say('Checking for docker-compose...');
if ($this->_exec('docker-compose -v')->wasSuccessful()) {
$this->say('docker-compose detected.');
}
else {
$this->yell('Could not run docker-compose command.', 40, 'red');
$this->say("Run the following command as root to install it or see https://docs.docker.com/compose/install/ for more information.");
$this->say('curl -L "https://github.com/docker/compose/releases/download/' . self::DOCKER_COMPOSE_VERSION . '/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && chmod +x /usr/local/bin/docker-compose');
throw new RuntimeException('Unable to continue.');
}
}
private $repos = [
'aegir-home/.drush/commands/registry_rebuild' => 'http://git.drupal.org/project/registry_rebuild.git#',
];
/**
* A list of folders that developers might want to push commits to. Used to switch git URLs to SSH.
* @var string[]
*/
private $writeRepos = [
'.' => '',
'src/DevShop/Control/web/sites/all/drush/provision' => '7.x-4.x',
'src/DevShop/Control/web/sites/all/modules/contrib/hosting' => '7.x-4.x',
];
/**
* Clone all needed source code and build devmaster from the makefile.
*
* @option no-dev Skip setting git remotes to SSH URLs.
*/
public function prepareSourcecode($opts = [
'no-dev' => FALSE,
'test-upgrade' => FALSE,
]) {
$this->devshop_root_path = __DIR__;
// Create the Aegir Home directory.
if (file_exists($this->devshop_root_path . "/aegir-home/.drush/commands")) {
$this->say($this->devshop_root_path . "/aegir-home/.drush/commands already exists.");
}
else {
$this->taskExecStack()
->exec("mkdir -p {$this->devshop_root_path}/aegir-home/.drush/commands")
->run();
$this->taskExecStack()
->exec("mkdir -p {$this->devshop_root_path}/aegir-home/test-artifacts")
->run();
}
// Clone all git repositories.
foreach ($this->repos as $path => $url) {
// Allow repos to specify a branch after #.
[$url, $branch] = explode('#', $url);
if (file_exists($this->devshop_root_path . '/' . $path)) {
$this->say("$path already exists.");
}
else {
$this->taskGitStack()
->cloneRepo($url, $this->devshop_root_path . '/' . $path, $branch)
->run();
}
}
}
/**
* Build all devshop containers from scratch. Rarely necessary: `robo up` will re-run ansible configuration.
*
* @param folder The folder to run 'docker-compose build' in. Use "all" to build in folder 'docker', then 'roles'.
* @param service The service to build. passed to 'docker-compose build $SERVICE'. Use "all" to build all services.
*
* @option $docker-image The label to use when building or running the container.
* @option $scratch Set --scratch to set docker-image=ubuntu2004
* @option $from The image to use to build the docker image FROM. Ignored if "os" is set.
* @option $os An OS "slug" for any of the geerlingguy/docker-*-ansible images: https://hub.docker.com/u/geerlingguy/
* @option $vars Ansible vars to pass to --extra-vars option.
* @option $tags Ansible tags to pass to --tags option.
* @option $skip_tags Ansible tags to pass to --skip-tags option.
* @option $playbook Ansible tags to pass to ansible-playbook command.
* @option install-at-runtime Launch bare containers and then install devshop.
* @option $build-command The command to run at the end of the docker build process. (Defaults to scripts/devshop-ansible-playbook)
*/
public function build($folder = 'docker', $service = 'all', $opts = [
'docker-image' => 'devshop/server:latest',
'scratch' => FALSE,
'from' => 'devshop/server:latest',
'build-command' => NULL,
'os' => NULL,
'vars' => '',
'tags' => '',
'skip-tags' => '',
'playbook' => 'roles/devshop.server/play.yml',
'environment' => [],
'install-at-runtime' => FALSE,
]) {
try {
$branch = $this->getRepository()->getCurrentBranch();
$remote = $this->getRepository()->getCurrentRemoteName();
$remote_url = $this->getRepository()->getCurrentRemoteUrl();
$this->say("Current code branch <comment>{$branch}</comment> remote {$remote_url}");
} catch (\Exception $e) {
$this->io()->error("No upstream configured for branch '$branch'. Please set one with the command 'git branch --track $branch' or 'git push -u origin $branch'");
exit(1);
}
if ($service == "all") {
$service = '';
}
if ($folder == "all") {
$folders = ['docker'];
} else {
$folders = [$folder];
}
// Define docker-image (name for the "image" in docker-compose)
// Set FROM_IMAGE and DEVSHOP_DOCKER_IMAGE if --os option is used. (and --from was not used)
if ($opts['scratch']) {
$opts['from'] = "devshop/server:latest";
}
if ($opts['os'] !== NULL) {
$opts['from'] = "geerlingguy/docker-{$opts['os']}-ansible";
$opts['docker-image'] = 'devshop/server:' . $opts['os'];
}
// Append the absolute path in the container.
$opts['playbook'] = '/usr/share/devshop/' . $opts['playbook'] ;
$this->yell('Building DevShop Containers...', 40, 'blue');
// Block anything from running on build.
// @TODO: Figure out why centos can't enable service in build phase.
if ($opts['os'] == 'centos7' || $opts['install-at-runtime']) {
$opts['tags'] = $_SERVER['ANSIBLE_TAGS'] = 'none';
$opts['skip-tags'] = $_SERVER['ANSIBLE_SKIP_TAGS'] = '';
if ($opts['os'] == 'centos7') {
$this->yell('CENTOS DETECTED in RUNTIME. Running full playbook in container.', 40, 'red');
}
else {
$this->yell('--install-at-runtime option detected. Skipping build in container.', 40, 'red');
}
$this->yell('CENTOS DETECTED in BUILDTIME. Skipping playbook run in image build.', 40, 'red');
}
// Runtime Environment for the docker-compose build command.
$opts['playbook-command-options'] = "--extra-vars=@/usr/share/devshop/vars.development.yml --extra-vars devshop_version={$branch} --extra-vars devshop_cli_version={$branch}";
$env_build = $this->generateEnvironmentArgs($opts);
print_r($env_build);
# Add --no-cache if needed.
$docker_compose_build_opts = "";
$provision_io = new \DevShop\Component\PowerProcess\PowerProcessStyle($this->input(), $this->output());
$process = new Process(["docker-compose", "build", $docker_compose_build_opts, $service], $provision_io);
$process->setEnv($env_build);
$process->disableOutput();
$process->setTimeout(null);
$process->setTty(!empty($_SERVER['XDG_SESSION_TYPE']) && $_SERVER['XDG_SESSION_TYPE'] == 'tty');
// @TODO: Figure out why PowerProcess::mustRun() fails so miserably: https://github.com/opendevshop/devshop/pull/541/checks?check_run_id=518074346#step:7:45
// Run docker-compose build in docker and in roles folder.
foreach ($folders as $compose_files_path) {
$this->yell("Building in directory: $compose_files_path", 40, 'blue');
$process->setWorkingDirectory($compose_files_path);
$process->run();
}
if ($process->getExitCode() != 0) {
throw new \Exception('Process failed: ' . $process->getExitCodeText());
}
}
/**
* Launch devshop in a variety of ways. Useful for local development and CI
* testing.
*
* Examples:
*
* robo up
* Launch a devshop in containers using docker-compose.yml
*
* robo up --test
* Launch then test a devshop in a single process.
*
* robo up --upgrade --test
* Launch, upgrade, then test a devshop in a single process.
*
* robo up --mode=install.sh --test
* Launch an OS container, then install devshop using install.sh, then run
* tests.
*
* robo up ps
* Launch the container and run "ps" instead of "devshop-ansible-playbook"
*
* robo up --build
* Run robo build before launching.
*
* bin/robo up whoami --build --build-command=whoami
* Launch containers using "whoami" instead of devshop-ansible-playbook, after building containers using "whoami" instead of "devshop-ansible-playbook".
*
* bin/robo up --tags=install-devmaster
* Launch containers passing ansible tags "install-devmaster" to skip straight to installing Drupal Devmaster.
*
* bin/robo up --destroy --no-interaction
* Destroy and relaunch containers without being prompted to confirm destruction of data.
*
* @option $destroy Run 'robo destroy' before up to rebuild the entire stack.
* @option $no-follow Don't tail the docker logs after launching.
* @option $test Run tests after containers are up and devshop is installed.
* @option $test-upgrade Install an old version, upgrade it to this version,
* then run tests.
* @option $mode Set to 'install.sh' to use the install.sh script for setup.
* @option $user-uid Override the detected current user's UID when building
* containers.
* @option $no-dev Skip setting git remotes to SSH URLs.
* @option $build Rebuild devshop containers from scratch before launching.
* @option $os An OS "slug" for any of the geerlingguy/docker-*-ansible images: https://hub.docker.com/u/geerlingguy/
* @option $environment pass an environment variable to docker-compose in the form --environment NAME=VALUE
* @option $ci Run 'robo up' in CI mode. Disables docker volumes.
* @option $install-at-runtime Run with ansible tag "all" and skip-tags set to "none". Ensures a full playbook run on docker up.
* @option $build-command The command to run at the end of the docker build process. (Defaults to scripts/devshop-ansible-playbook)
* @option $skip-source-prep Prevent prepare:sourcecode from running if the aegir-home folder does not exist.
* @option $vars Ansible variables string to pass to the 'ansible-playbook' command in devshop-ansible-playbook.
* @option $tags Ansible tags to pass to the 'ansible-playbook' command in devshop-ansible-playbook.
* @option $skip-tags Ansible tags to pass to the 'ansible-playbook' command in devshop-ansible-playbook.
* @option $playbook The path to an ansible playbook to pass to the 'ansible-playbook' command in devshop-ansible-playbook.
* @option $playbook-command-options Command line options to append to the 'ansible-playbook' command in devshop-ansible-playbook.
* @option $compose-file Use a different docker-compose.yml file. Passes to COMPOSE_FILE env var.
* @option $force-reinstall Delete and reinstall the devmaster site, if it exists.
* @option $build-folder If using --build, the folder to run 'docker-compose build' in. Use "all" to build in folder 'docker', then 'roles'.
* @option $build-service If using --build, the service to build. passed to 'docker-compose build $SERVICE'. Use "all" to build all services.
*/
public function up($docker_command = '', $opts = [
'destroy' => FALSE,
'no-follow' => FALSE,
'test' => FALSE,
'test-upgrade' => FALSE,
// Set 'mode' => 'install.sh' to run a traditional OS install.
'mode' => 'docker-compose',
'user-uid' => NULL,
'no-dev' => FALSE,
'build' => FALSE,
'skip-source-prep' => FALSE,
// This is the image string used in docker-compose.
'docker-image' => 'devshop/server:latest',
// The OS "slug" to use instead of devshop/server:ubuntu1804. If specified, "docker-image" option will be ignored.
'os' => NULL,
'from' => 'devshop/server:latest',
'vars' => '',
'tags' => 'runtime',
'skip-tags' => '',
'playbook' => 'roles/devshop.server/play.yml',
'playbook-command-options' => '',
'environment' => [],
'ci' => FALSE,
'install-at-runtime' => FALSE,
'build-command' => NULL,
'compose-file' => NULL,
'force-reinstall' => FALSE,
'build-folder' => 'all',
'build-service' => 'all',
]) {
$this->yell("Welcome to your DevShop Development environment!");
// Remote may be unknown.
try {
$branch = $this->getRepository()->getCurrentBranch();
$remote = $this->getRepository()->getCurrentRemoteName();
$remote_url = $this->getRepository()->getCurrentRemoteUrl();
$this->say("Current code branch <comment>{$branch}</comment> remote {$remote_url}");
} catch (\Exception $e) {
$this->io()->error("No upstream configured for branch '$branch'. Please set one with the command 'git branch --track $branch' or 'git push -u origin $branch'");
exit(1);
}
// Offer to set git URLs to SSH so developers can push.
if ($opts['no-dev'] == FALSE) {
foreach ($this->writeRepos as $repo_path => $repo_branch) {
$path = realpath($repo_path);
if (file_exists($path . '/.git')) {
$repo = GitRepository::open($path);
if ($this->io()->isVerbose()){
$this->say($repo->getRepositoryPath());
}
$url = $repo->getCurrentRemoteUrl();
if (strpos($url, 'drupal') !== FALSE) {
$parts = explode('/', $repo->getCurrentRemoteUrl());
$project = array_pop($parts);
$push_url = "[email protected]:project/$project";
}
else {
if ($repo->isCurrentRemoteHttp()) {
[$pre, $slug] = explode('.com/', $repo->getCurrentRemoteUrl());
$push_url = "[email protected]:$slug";
}
else {
$push_url = $repo->getCurrentRemoteUrl();
}
}
if ($repo->isDetached()) {
if ($branch == $this->io()->ask("<comment>$path</comment> git repo is detached. Would you like to check out a different branch?", $repo_branch)) {
$repo->callGit('checkout', $repo_branch);
}
}
if ($repo->isCurrentRemoteHttp()){
if ($this->io()->confirm("<comment>$path</comment> is using an HTTP remote. Would you like to change it to use $push_url?")) {
$repo->callGit('remote', ['set-url', $repo->getCurrentRemoteName(), $push_url]);
}
}
else {
$this->io()->text("<comment>$path</comment> remote is SSH: <comment>{$repo->getCurrentRemoteUrl()}</comment>");
}
}
else {
$this->io()->text("Path $repo_path does not exist. Might need to wait for composer install.");
}
}
}
// Override the DEVSHOP_DOCKER_COMMAND_RUN if specified.
if (!empty($docker_command)) {
# Ensures argument is passed to DEVSHOP_DOCKER_COMMAND_RUN later.
$opts['run-command'] = $docker_command;
}
if ($opts['destroy']) {
$this->yell('Destroying instance: --destroy option was used.', 80, "red");
$this->destroy();
}
// Define docker-image (name for the "image" in docker-compose.
// Set FROM_IMAGE and DEVSHOP_DOCKER_IMAGE if --os option is used. (and --from was not used)
if (empty($opts['from']) && !empty($opts['os'])) {
$opts['from'] = "geerlingguy/docker-{$opts['os']}-ansible";
$opts['docker-image'] = 'devshop/server:' . $opts['os'];
}
elseif (empty($opts['from'])) {
$opts['from'] = $opts['docker-image'];
}
// Check for tools
$this->prepareHost();
if (empty($this->devshop_root_path)) {
$this->devshop_root_path = __DIR__;
}
// Determine current UID.
if (empty($opts['user-uid'])) {
$opts['user-uid'] = trim(shell_exec('id -u'));
}
// If --build option is used, or if docker image does not exist anywhere, build it with "local-$OS" tag
if ($opts['build']) {
$this->yell("Docker Image {$opts['docker-image']} was not found on this system or on docker hub.", 40, "blue");
$this->say("Building it locally...");
$build_opts = $opts;
$build_opts['tags'] = 'buildtime';
$this->build($build_opts['build-folder'], $build_opts['build-service'], $build_opts);
}
// Warn the user that this container is not being built.
elseif (!$opts['build']) {
$this->yell("Launching {$opts['docker-image']}... Use --build to rebuild it.", 40, "blue");
}
// @TODO: Figure out why centos can't enable service in build phase.
if ($opts['os'] == 'centos7' || $opts['install-at-runtime']) {
// Set tags to all so it does a full install at runtime.
$opts['tags'] = $_SERVER['ANSIBLE_TAGS'] = 'all';
$opts['skip-tags'] = $_SERVER['ANSIBLE_SKIP_TAGS'] = 'none';
if ($opts['os'] == 'centos7') {
$this->yell('CENTOS DETECTED in RUNTIME. Running full playbook in container.', 40, 'red');
}
else {
$this->yell('--install-at-runtime option detected. Running full playbook in container.', 40, 'red');
}
}
if ($opts['mode'] == 'docker-compose') {
// Volumes
if (!$opts['ci']) {
$this->yell('Mounting Docker Volumes... Use --ci to disable volumes.', 40, 'blue');
// Set COMPOSE_FILE to include volumes.
$opts['compose-file'] = 'docker/docker-compose.yml:docker/docker-compose.override.yml';
if (!file_exists('aegir-home') && !$opts['skip-source-prep']) {
$this->say('<warning>The aegir-home folder not present. Running prepare source code command.</warning>');
$this->prepareSourcecode($opts);
}
}
// Test commands must be run as application user.
// The `--test` command is run in GitHub Actions.
$test_command = '';
if ($opts['test']) {
// Do not run a playbook on docker-compose up, because it will launch as a separate process and we won't know when it ends.
$cmd[] = "docker-compose run devshop.server {$docker_command}";
$env_run['DEVSHOP_DOCKER_COMMAND_RUN'] = $docker_command;
$test_command = "su aegir --command /usr/share/devshop/tests/devshop-tests.sh";
}
// @TODO: The `--test-upgrade` command is NOT YET run in GitHub Actions.
// The PR with the update hook can be used to finalize upgrade tests: https://github.com/opendevshop/devshop/pull/426
elseif ($opts['test-upgrade']) {
$cmd[] = "docker-compose run --rm container {$docker_command}";
$test_command = "/usr/share/devshop/tests/devshop-tests-upgrade.sh";
}
else {
$cmd[] = "docker compose up --detach";
if (!$opts['no-follow']) {
$cmd[] = "docker-compose logs -f";
}
else {
$cmd[] = "docker-compose logs";
}
}
// Runtime Environment for the $cmd list.
$env_run = $this->generateEnvironmentArgs($opts);
$env_run['ANSIBLE_PLAYBOOK_COMMAND_OPTIONS'] = '--extra-vars=@/usr/share/devshop/vars.development.yml';
$extra_vars = array();
// Set devshop_version and cli_repo here because every local dev environment is different.
$extra_vars['devshop_version'] = $branch;
$extra_vars['devshop_cli_repo'] = $remote_url;
// Set extra ansible vars when not in CI.
if (empty($_SERVER['CI'])) {
if ($opts['force-reinstall']) {
$extra_vars['devshop_control_install_options'] = '--force-reinstall';
}
if ($opts['user-uid']) {
$extra_vars['aegir_user_uid'] = $opts['user-uid'];
$extra_vars['aegir_user_gid'] = $opts['user-uid'];
}
}
// Run a test command after the docker command.
if ($test_command) {
$env_run['DOCKER_COMMAND_POST'] = $test_command;
$env_run['DOCKER_COMMAND_RUN_POST_EXIT'] = 1;
$extra_vars['supervisor_started'] = false;
}
else {
$env_run['DOCKER_COMMAND_POST'] = 'devshop login';
}
// Process $extra vars into JSON for ENV var.
$env_run['ANSIBLE_EXTRA_VARS'] = json_encode($extra_vars);
// Include an extra local vars file.
// Load Public SSH key from user to pass to devshop.remote authorized keys.
$vars_file_local = "aegir_user_authorized_keys: " . file_get_contents(getenv('HOME') . "/.ssh/id_rsa.pub");
file_put_contents('vars.local.yml', $vars_file_local);
// Add vars.development.yml as final command line option.
$env_run['ANSIBLE_PLAYBOOK_COMMAND_OPTIONS'] = '--extra-vars=@/usr/share/devshop/vars.development.yml --extra-vars=@/usr/share/devshop/vars.local.yml';
// Override the DEVSHOP_DOCKER_COMMAND_RUN if specified.
if (!empty($docker_command)) {
$env_run['DEVSHOP_DOCKER_COMMAND_RUN'] = $docker_command;
}
if ($this->output->isVerbose()) {
$this->io()->section('Ansible Extra Vars:');
print_r($extra_vars);
$this->io()->section('Execution environment:');
print_r($env_run);
}
if (!empty($cmd)) {
// $workdir = 'roles';
foreach ($cmd as $command) {
$provision_io = new \DevShop\Component\PowerProcess\PowerProcessStyle($this->input, $this->output);
$process = new \DevShop\Component\PowerProcess\PowerProcess($command, $provision_io);
$process->setEnv($env_run);
$isTty = !empty($_SERVER['XDG_SESSION_TYPE']) && $_SERVER['XDG_SESSION_TYPE'] == 'tty';
$process->setTty($isTty);
$process->setTimeout(NULL);
$process->disableOutput();
// @TODO: Figure out why PowerProcess::mustRun() fails so miserably: https://github.com/opendevshop/devshop/pull/541/checks?check_run_id=518074346#step:7:45
// $process->mustRun();
$process->run();
if ($process->getExitCode() != 0) {
throw new \Exception('Process failed: ' . $process->getExitCodeText());
}
}
return;
}
}
}
/**
* Convert this: to this:
*
* array( array(
* "this=that" "this" => "that"
* ); );
*
* @param $options_list
*
* @return array
*/
private function optionsToArray($options_list) {
$vars = [];
foreach ($options_list as $options_string) {
[$name, $value] = explode("=", $options_string);
$vars[$name] = $value;
}
return $vars;
}
/**
* Run a command in the devshop container.
*/
public function exec($cmd = '', $opts = ['user' => 'root']) {
return $this->taskExec("docker-compose exec -T \
--env ANSIBLE_TAGS=runtime \
--env ANSIBLE_SKIP_TAGS \
--env ANSIBLE_VARS \
--user {$opts['user']} \
devshop.server $cmd")
->dir('docker')
->run();
}
/**
* Stop devshop containers using docker-compose stop
*/
public function stop() {
$this->taskExec("docker-compose stop")
->dir("docker")
->run();
}
/**
* Destroy all containers, docker volumes, and aegir configuration.
*
* Running with --no-interaction will keep the drupal devmaster codebase in
* place.
*
* Running with --force
*/
public function destroy($opts = ['force' => 0]) {
if (!$this->input()->isInteractive() || $this->confirm("Destroy all local data? (docker containers, volumes, config)")) {
// Remove devmaster site folder
$version = self::DEVSHOP_LOCAL_VERSION;
$uri = self::DEVSHOP_LOCAL_URI;
$this->_exec("rm -rf ./src/DevShop/Control/web/sites/{$uri}");
$this->_exec('cd docker && docker-compose kill');
$this->_exec('cd docker && docker-compose rm -fv');
}
// Don't run when -n is specified,
if (!$this->input()->isInteractive() || $this->confirm("Destroy devshop.server home directory? (aegir-home)")) {
if ($this->_exec("sudo rm -rf aegir-home")->wasSuccessful()) {
$this->say("Entire aegir-home folder deleted.");
}
}
else {
$this->say("The aegir-home directory was retained. It will be present when 'robo up' is run again.");
}
// Don't run when -n is specified,
$rm_command = "rm -rf src/DevShop/Control/web/sites/devshop.local.computer";
if (!$this->input()->isInteractive() || $this->confirm("Destroy Control Site settings folder? ($rm_command)")) {
if ($this->_exec($rm_command)->wasSuccessful()) {
$this->say("Sites/devshop.local.computer folder deleted.");
}
else {
$this->say("Delete failed!.");
}
}
else {
$this->say("The aegir-home directory was retained. It will be present when 'robo up' is run again.");
}
// Uninstall composer vendor code?
if (!$this->input()->isInteractive() || $this->confirm("Composer uninstall DevShop Control?", false)) {
$this->taskExec("composer uninstall")
->dir("src/DevShop/Control")
->run();
}
}
/**
* Stream logs from the containers using docker-compose logs -f
*/
public function logs() {
$this->taskExec("docker-compose logs -f")
->dir("docker")
->run();
}
/**
* Stream watchdog logs from drupal
*/
public function watchdog() {
$user = 'aegir';
$this->taskExec("docker-compose exec --user $user -T devshop.server drush @hostmaster wd-show --tail --extended")
->dir("docker")
->run();
}
/**
* Restart the containers.
*/
public function restart() {
$this->taskExec('docker-compose restart')
->dir("docker")
->run()
;
$this->logs();
}
/**
* Enter a bash shell in the devmaster container.
*/
public function shell($user = 'aegir', $service = 'docker-devshop.server-1') {
if ($user) {
$process = new Process(["docker", "exec", "-ti", "--user", $user, $service, "bash"]);
}
else {
$process = new Process(["docker-compose", "exec", "-ti", $service, "bash"]);
}
$process->setTty(TRUE);
$process->setTimeout(NULL);
$process->setEnv(['COMPOSE_FILE' => './docker/docker-compose.yml']);
$this->say("Running: " . $process->getCommandLine());
$process->run();
return $process->getExitCode();
}
/**
* Run all devshop tests on the containers.
*/
public function test($user = 'aegir', $opts = array(
'compose-file' => 'docker-compose.yml:docker-compose.override.yml',
'reinstall' => FALSE
)) {
$is_tty = !empty($_SERVER['XDG_SESSION_TYPE']) && $_SERVER['XDG_SESSION_TYPE'] == 'tty';
$no_tty = !$is_tty? '-T': '';
// If running in CI, create the test-artifacts directory and ensure ownership first.
// @TODO: Move logic to a special CI container.
if (!empty($_SERVER['CI'])) {
$commands[] = "docker-compose exec $no_tty devshop.server mkdir -p /var/aegir/test-artifacts";
$commands[] = "docker-compose exec $no_tty devshop.server chown aegir:aegir /var/aegir/test-artifacts -R";
$commands[] = "docker-compose exec $no_tty devshop.server chmod 777 /var/aegir/test-artifacts -R";
}
if ($opts['reinstall']) {
$commands[] = "docker-compose exec $no_tty --user $user devshop.server drush @hostmaster provision-install --force-reinstall";
}
$commands[] = "docker-compose exec $no_tty --user $user devshop.server /usr/share/devshop/tests/devshop-tests.sh";
$provision_io = new \DevShop\Component\PowerProcess\PowerProcessStyle($this->input, $this->output);
foreach ($commands as $command) {
$process = new \DevShop\Component\PowerProcess\PowerProcess($command, $provision_io);
$process->setWorkingDirectory('docker');
$process->setTty(!empty($_SERVER['XDG_SESSION_TYPE']) && $_SERVER['XDG_SESSION_TYPE'] == 'tty');
$process->setEnv([
'COMPOSE_FILE' => $opts['compose-file'],
]);
$process->setTimeout(NULL);
$process->disableOutput();
// @TODO: Figure out why PowerProcess::mustRun() fails so miserably: https://github.com/opendevshop/devshop/pull/541/checks?check_run_id=518074346#step:7:45
// $process->mustRun();
$process->run();
if (!$process->isSuccessful()) {
return $process->getExitCode();
}
}
return $process->getExitCode();
}
/**
* Get a one-time login link to Devamster.
*/
public function login($user = 'aegir') {
$this->taskExec("docker-compose exec --user $user -T devshop.server /usr/share/devshop/bin/drush @hostmaster uli")
->dir("docker")
->run();
;
}
/**
* Create a new release of DevShop.
*/
public function release($version = NULL) {
if (empty($version)) {
// @TODO Verify version string.
$version = $this->ask('What is the new version? ');
}
$version = trim($version);
if (!$this->confirm("Are you sure you want the version number to be $version?")) {
$this->release();
return;
}
$this->yell("The new version shall be $version!!!");
$release_branch = "release-{$version}";
$not_ready = TRUE;
while ($not_ready) {
$not_ready = !$this->confirm("Are you absolutely sure all contrib modules and drupal core are up to date in ./composer.json & ./src/DevShop/Control/composer.json?? Go check. I'll wait.");
}
$not_ready = TRUE;
while ($not_ready) {
$not_ready = !$this->confirm("Did you write a great CHANGELOG.md? Please make sure all (good) changes are included on the main branch (1.x) before continuing!");
}
if ($this->confirm("Create the branch $release_branch?")) {
$this->_exec("git checkout -b $release_branch");
}
// Write version to files.
if ($this->confirm("Write '$version' to ./devmaster/VERSION.txt")) {
file_put_contents('./devmaster/VERSION.txt', $version);
}
if ($this->confirm("Create install script for version? ")) {
$this->_exec("cd install && BRANCH=$version make");
$this->_exec("git add install/build");
}
if ($this->confirm("Show git diff before committing?")) {
$this->_exec("git diff -U1");
}
if ($this->confirm("Commit changes to $release_branch? ")) {
$this->_exec("git commit -am 'Automated Commit from DevShop Robofile.php `release` command. Preparing version $version.'");
}
if ($this->confirm("Create a release tag? ")) {
// Tag devshop and devmaster with $version and drupal_org_tag.
$this->taskGitStack()
->tag($version, "DevShop $version")
->run();
}
if ($this->confirm("Push the new release tags $version?")) {
if (!$this->taskGitStack()
->push("origin", $version)
->run()
->wasSuccessful()
) {
$this->say('Pushing tags to remote origin');
}
}
$this->say("The final steps we still have to do manually:");
// $this->say("1. Go create a new release of devmaster: https://www.drupal.org/node/add/project-release/1779370 using the tag $drupal_org_tag");
// $this->say("2. Wait for drupal.org to package up the distribution: https://www.drupal.org/project/devmaster");
$this->say("1. Create a new 'release' on GitHub: https://github.com/opendevshop/devshop/releases/new using tag $version. Copy CHANGELOG from https://raw.githubusercontent.com/opendevshop/devshop/1.x/CHANGELOG.md");
$this->say(" - Copy CHANGELOG from https://raw.githubusercontent.com/opendevshop/devshop/1.x/CHANGELOG.md");
$this->say(" - Upload install.sh script to release files.");
$this->say("2. Put the new version in gh-pages branch index.html");
$this->say("");
$this->say("That's it! Congrats.");
}
/**
* Run the molecule test command.
*/
function moleculeTest() {
$this->_exec("cd roles/opendevshop.devmaster && molecule test");
}
function moleculeConverge() {
$this->_exec("cd roles/opendevshop.devmaster && molecule converge");
}
}