forked from drush-ops/drush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrush.inc
1672 lines (1541 loc) · 59.8 KB
/
drush.inc
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
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* @file
* The drush API implementation and helpers.
*/
/**
* @name Error status definitions
* @{
* Error code definitions for interpreting the current error status.
* @see drush_set_error(), drush_get_error(), drush_get_error_log(), drush_cmp_error()
*/
/** The command completed successfully. */
define('DRUSH_SUCCESS', 0);
/** The command could not be completed because the framework has specified errors that have occured. */
define('DRUSH_FRAMEWORK_ERROR', 1);
/** The command that was executed resulted in an application error,
The most commom causes for this is invalid PHP or a broken SSH
pipe when using drush_backend_invoke in a distributed manner. */
define('DRUSH_APPLICATION_ERROR', 255);
/**
* @} End of "name Error status defintions".
*/
/**
* The number of bytes in a kilobyte. Copied from Drupal.
*/
define('DRUSH_DRUPAL_KILOBYTE', 1024);
/**
* Include a file, selecting a version specific file if available.
*
* For example, if you pass the path "/var/drush" and the name
* "update" when bootstrapped on a Drupal 6 site it will first check for
* the presence of "/var/drush/update_6.inc" in include it if exists. If this
* file does NOT exist it will proceed and check for "/var/drush/update.inc".
* If neither file exists, it will return FALSE.
*
* @param $path
* The path you want to search.
* @param $name
* The file base name you want to include (not including a version suffix
* or extension).
* @param $version
* The version suffix you want to include (could be specific to the software
* or platform your are connecting to) - defaults to the current Drupal core
* major version.
* @param $extension
* The extension - defaults to ".inc".
*
* @return
* TRUE if the file was found and included.
*/
function drush_include($path, $name, $version = NULL, $extension = 'inc') {
$version = ($version) ? $version : drush_drupal_major_version();
$file = sprintf("%s/%s_%s.%s", $path, $name, $version, $extension);
if (file_exists($file)) {
// drush_log(dt('Including version specific file : @file', array('@file' => $file)));
include_once($file);
return TRUE;
}
$file = sprintf("%s/%s.%s", $path, $name, $extension);
if (file_exists($file)) {
// drush_log(dt('Including non-version specific file : @file', array('@file' => $file)));
include_once($file);
return TRUE;
}
}
/**
* Return a structured array of engines of a specific type from commandfiles
* implementing hook_drush_engine_$type.
*
* Engines are pluggable subsystems. Each engine of a specific type will
* implement the same set of API functions and perform the same high-level
* task using a different backend or approach.
*
* This function/hook is useful when you have a selection of several mutually
* exclusive options to present to a user to select from.
*
* Other commands are able to extend this list and provide their own engines.
* The hook can return useful information to help users decide which engine
* they need, such as description or list of available engine options.
*
* The engine path element will automatically default to a subdirectory (within
* the directory of the commandfile that implemented the hook) with the name of
* the type of engine - e.g. an engine "wget" of type "handler" provided by
* the "pm" commandfile would automatically be found if the file
* "pm/handler/wget.inc" exists and a specific path is not provided.
*
* @param $type
* The type of engine.
*
* @return
* A structured array of engines.
*/
function drush_get_engines($type) {
$engines = array();
$list = drush_commandfile_list();
foreach ($list as $commandfile => $path) {
if (drush_command_hook($commandfile, 'drush_engine_' . $type)) {
$function = $commandfile . '_drush_engine_' . $type;
$result = $function();
foreach ((array)$result as $key => $engine) {
// Add some defaults
$engine += array(
'commandfile' => $commandfile,
// Engines by default live in a subdirectory of the commandfile that
// declared them, named as per the type of engine they are.
'path' => sprintf("%s/%s", dirname($path), $type),
);
$engines[$key] = $engine;
}
}
}
return $engines;
}
/**
* Include the engine code for a specific named engine of a certain type.
*
* If the engine type has implemented hook_drush_engine_$type the path to the
* engine specified in the array will be used.
*
* If you don't need to present any user options for selecting the engine
* (which is common if the selection is implied by the running environment)
* and you don't need to allow other modules to define their own engines you can
* simply pass the $path to the directory where the engines are, and the
* appropriate one will be included.
*
* Unlike drush_include this function will set errors if the requested engine
* cannot be found.
*
* @param $type
* The type of engine.
* @param $engine
* The key for the engine to be included.
* @param $version
* The version of the engine to be included - defaults to the current Drupal core
* major version.
* @param $path
* A path to include from, if the engine has no corresponding
* hook_drush_engine_$type item path.
* @return unknown_type
*/
function drush_include_engine($type, $engine, $version = NULL, $path = NULL) {
$engines = drush_get_engines($type);
if (!$path && isset($engines[$engine])) {
$path = $engines[$engine]['path'];
}
if (!$path) {
return drush_set_error('DRUSH_ENGINE INCLUDE_NO_PATH', dt('No path was set for including the !type engine !engine.', array('!type' => $type, '!engine' => $engine)));
}
if (drush_include($path, $engine, $version)) {
return TRUE;
}
return drush_set_error('DRUSH_ENGINE INCLUDE_FAILED', dt('Unable to include the !type engine !engine from !path.' , array('!path' => $path, '!type' => $type, '!engine' => $engine)));
}
/**
* Check to see if a newer version of drush is available
*
* @return
* TRUE - A new version is available.
* FALSE - Error.
* NULL - No release available.
*/
function drush_check_self_update() {
$explicit = FALSE;
$update = FALSE;
$error = "";
// Don't check unless we have a datestamp in drush.info
$drush_info = drush_read_drush_info();
if (($drush_info === FALSE) || (!array_key_exists('datestamp', $drush_info))) {
drush_log(dt('Cannot determine release date for drush'), 'notice');
return FALSE;
}
// Allow updates to the latest HEAD release if --self-update=head is specified.
// If we are called from `drush self-update`, then --dev will set --self-update=head.
$dev_ok = (drush_get_option('self-update') == 'head');
$is_dev = FALSE;
// Get release info for drush
$info = _drush_pm_get_releases(array('drush'));
// Check for newer releases based on the datestamp.
// We add 60 seconds to the drush.info date because of a drupal.org WTF. See http://drupal.org/node/1019356.
$version_date = $drush_info['datestamp'] + 60;
$newer_version = FALSE;
foreach ($info['drush']['releases'] as $version => $release_info) {
// We deliberately skip any dev releases unless the current release is a dev release.
if ($dev_ok || ((!array_key_exists('version_extra', $release_info) || ($release_info['version_extra'] != 'dev')))) {
if ($release_info['date'] > $version_date) {
$newer_version = $release_info['version'];
$version_date = $release_info['date'];
$is_dev = isset($release_info['version_extra']) && $release_info['version_extra'] == 'dev';
if ($is_dev) {
$newer_version .= " (" . date('Y-M-d', $version_date) . ")";
}
}
}
}
if ($newer_version) {
drush_print(dt('A newer version of drush, !version, is available. You are currently running drush version !currentversion; to update, run `drush self-update`. To disable this check, put "$options[\'self-update\'] = FALSE;" in your drushrc.php configuration file.' . "\n", array('!version' => $newer_version, '!currentversion' => DRUSH_VERSION)));
return TRUE;
}
else {
drush_log(dt("drush self-update check: drush !version is up-to-date.", array('!version' => DRUSH_VERSION)), 'notice');
}
return NULL;
}
/**
* Generate an .ini file. used by archive-dump."
*
* @param array $ini
* A two dimensional associative array where top level are sections and
* second level are key => value pairs.
*
* @return string
* .ini formatted text.
*/
function drush_export_ini($ini) {
$output = '';
foreach ($ini as $section => $pairs) {
if ($section) {
$output .= "[$section]\n";
}
foreach ($pairs as $k => $v) {
if ($v) {
$output .= "$k = \"$v\"\n";
}
}
}
return $output;
}
/**
* Generate code friendly to the Drupal .info format from a structured array.
* Mostly copied from http://drupalcode.org/viewvc/drupal/contributions/modules/features/features.export.inc.
*
* @param $info
* An array or single value to put in a module's .info file.
*
* @param boolean $integer_keys
* Use integer in keys.
*
* @param $parents
* Array of parent keys (internal use only).
*
* @return
* A code string ready to be written to a module's .info file.
*/
function drush_export_info($info, $integer_keys = FALSE, $parents = array()) {
$output = '';
if (is_array($info)) {
foreach ($info as $k => $v) {
$child = $parents;
$child[] = $k;
$output .= drush_export_info($v, $integer_keys, $child);
}
}
else if (!empty($info) && count($parents)) {
$line = array_shift($parents);
foreach ($parents as $key) {
$line .= (!$integer_keys && is_numeric($key)) ? "[]" : "[{$key}]";
}
$line .= " = \"{$info}\"\n";
return $line;
}
return $output;
}
/**
* Convert a csv string, or an array of items which
* may contain csv strings, into an array of items.
*
* @param $args
* A simple csv string; e.g. 'a,b,c'
* or a simple list of items; e.g. array('a','b','c')
* or some combination; e.g. array('a,b','c') or array('a,','b,','c,')
*
* @returns array
* A simple list of items (e.g. array('a','b','c')
*/
function _convert_csv_to_array($args) {
//
// Step 1: implode(',',$args) converts from, say, array('a,','b,','c,') to 'a,,b,,c,'
// Step 2: explode(',', ...) converts to array('a','','b','','c','')
// Step 3: array_filter(...) removes the empty items
//
return array_filter(explode(',', is_array($args) ? implode(',',$args) : $args));
}
/**
* Get the available global options. Used by help command. Command files may
* modify this list using hook_drush_help_alter().
*
* @param boolean $brief
* Return a reduced set of important options. Used by help command.
*
* @return
* An associative array containing the option definition as the key,
* and a descriptive array for each of the available options. The array
* elements for each item are:
*
* - short-form: The shortcut form for specifying the key on the commandline.
* - never-post: If TRUE, backend invoke will never POST this item's value
* on STDIN; it will always be sent as a commandline option.
* - never-propagate: If TRUE, backend invoke will never pass this item on
* to the subcommand being executed.
* - context: The drush context where the value of this item is cached. Used
* by backend invoke to propagate values set in code.
* - description: The help text for this item. displayed by `drush help`.
*/
function drush_get_global_options($brief = FALSE) {
$options['root'] = array('short-form' => 'r', 'context' => 'DRUSH_DRUPAL_ROOT', 'never-post' => TRUE, 'description' => dt("Drupal root directory to use (default: current directory)."), 'example-value' => '<path>');
$options['uri'] = array('short-form' => 'l', 'context' => 'DRUSH_URI', 'never-post' => TRUE, 'description' => dt('URI of the drupal site to use (only needed in multisite environments or when running on an alternate port).'), 'example-value' => 'http://example.com:8888');
$options['verbose'] = array('short-form' => 'v', 'context' => 'DRUSH_VERBOSE', 'description' => dt('Display extra information about the command.'));
$options['debug'] = array('short-form' => 'd', 'context' => 'DRUSH_DEBUG', 'description' => dt('Display even more information, including internal messages.'));
$options['yes'] = array('short-form' => 'y', 'context' => 'DRUSH_AFFIRMATIVE', 'description' => dt("Assume 'yes' as answer to all prompts."));
$options['no'] = array('short-form' => 'n', 'context' => 'DRUSH_NEGATIVE', 'description' => dt("Assume 'no' as answer to all prompts."));
$options['simulate'] = array('short-form' => 's', 'context' => 'DRUSH_SIMULATE', 'description' => dt("Simulate all relevant actions (don't actually change the system)."));
$options['pipe'] = array('short-form' => 'p', 'description' => dt("Emit a compact representation of the command for scripting."));
$options['help'] = array('short-form' => 'h', 'description' => dt("This help system."));
$options['version'] = array('description' => dt("Show drush version."));
$options['php'] = array('description' => dt("The absolute path to your PHP intepreter, if not 'php' in the path."));
$options['ia'] = array('description' => dt("Force interactive mode for commands run on multiple targets (e.g. `drush @site1,@site2 cc --ia`)."));
if (!$brief) {
$options['quiet'] = array('short-form' => 'q', 'description' => dt('Suppress non-error messages.'));
$options['include'] = array('short-form' => 'i', 'description' => dt("A list of additional directory paths to search for drush commands."));
$options['config'] = array('short-form' => 'c', 'description' => dt("Specify an additional config file to load. See example.drushrc.php."));
$options['user'] = array('short-form' => 'u', 'description' => dt("Specify a Drupal user to login with. May be a name or a number."));
$options['backend'] = array('short-form' => 'b', 'never-propagate' => TRUE, 'description' => dt("Hide all output and return structured data (internal use only)."));
$options['choice'] = array('description' => dt("Provide an answer to a multiple-choice prompt."));
$options['variables'] = array('description' => dt("Comma delimited list of name=value pairs. These values take precedence even over settings.php variable overrides."));
$options['no-label'] = array('description' => dt("Remove the site label that drush includes in multi-site command output(e.g. `drush @site1,@site2 status`)."));
$options['nocolor'] = array('context' => 'DRUSH_NOCOLOR', 'description' => dt("Suppress color highlighting on log messages."));
$options['show-passwords'] = array('description' => dt("Show database passwords in commands that display connection information."));
$options['show-invoke'] = array('description' => dt("Show all function names which could have been called for the current command. See drush_invoke()."));
$options['watchdog'] = array('description' => dt("Control logging of Drupal's watchdog() to drush log. Recognized values are 'log', 'print', 'disabled'. Defaults to log. 'print' shows calls to admin but does not add them to the log."));
$options['cache-default-class'] = array('description' => dt("A cache backend class that implements DrushCacheInterface."));
$options['cache-class-<bin>'] = array('description' => dt("A cache backend class that implements DrushCacheInterface to use for a specific cache bin."));
$options['early'] = array('description' => dt("Include a file (with relative or full path) and call the drush_early_hook() function (where 'hook' is the filename). The function is called pre-bootstrap and offers an opportunity to alter the drush bootstrap environment or process (returning FALSE from the function will continue the bootstrap), or return output very rapidly (e.g. from caches). See includes/complete.inc for an example."));
}
return $options;
}
/**
* Exits with a message. In general, you should use drush_set_error() instead of
* this function. That lets drush proceed with other tasks.
* TODO: Exit with a correct status code.
*/
function drush_die($msg = NULL, $status = NULL) {
die($msg ? "drush: $msg\n" : '');
}
/*
* Check to see if the provided line is a "#!/usr/bin/env drush"
* "shebang" script line.
*/
function _drush_is_drush_shebang_line($line) {
return ((substr($line,0,2) == '#!') && (strstr($line, 'drush') !== FALSE));
}
/*
* Check to see if the provided script file is a "#!/usr/bin/env drush"
* "shebang" script line.
*/
function _drush_is_drush_shebang_script($script_filename) {
$result = FALSE;
if (file_exists($script_filename)) {
$fp = fopen($script_filename, "r");
if ($fp !== FALSE) {
$line = fgets($fp);
$result = _drush_is_drush_shebang_line($line);
fclose($fp);
}
}
return $result;
}
/**
* @defgroup userinput Get input from the user.
* @{
/**
* Ask the user a basic yes/no question.
*
* @param $msg The question to ask
* @return TRUE if the user entered 'y', FALSE if he entered 'n'
*/
function drush_confirm($msg, $indent = 0) {
print str_repeat(' ', $indent) . (string)$msg . " (y/n): ";
// Automatically accept confirmations if the --yes argument was supplied.
if (drush_get_context('DRUSH_AFFIRMATIVE')) {
print "y\n";
return TRUE;
}
// Automatically cancel confirmations if the --no argument was supplied.
elseif (drush_get_context('DRUSH_NEGATIVE')) {
print "n\n";
return FALSE;
}
// See http://drupal.org/node/499758 before changing this.
$stdin = fopen("php://stdin","r");
while ($line = fgets($stdin)) {
$line = trim($line);
if ($line == 'y') {
return TRUE;
}
if ($line == 'n') {
return FALSE;
}
print str_repeat(' ', $indent) . (string)$msg . " (y/n): ";
}
}
/**
* Ask the user to select an item from a list.
* From a provided associative array, drush_choice will
* display all of the questions, numbered from 1 to N,
* and return the item the user selected. "0" is always
* cancel; entering a blank line is also interpreted
* as cancelling.
*
* @param $options
* A list of questions to display to the user. The
* KEYS of the array are the result codes to return to the
* caller; the VALUES are the messages to display on
* each line. Special keys of the form '-- something --' can be
* provided as separator between choices groups. Separator keys
* don't alter the numbering.
* @param $prompt
* The message to display to the user prompting for input.
* @param $label
* Controls the display of each line. Defaults to
* '!value', which displays the value of each item
* in the $options array to the user. Use '!key' to
* display the key instead. In some instances, it may
* be useful to display both the key and the value; for
* example, if the key is a user id and the value is the
* user name, use '!value (uid=!key)'.
*/
function drush_choice($options, $prompt = 'Enter a number.', $label = '!value') {
print dt($prompt) . "\n";
// Preflight so that all rows will be padded out to the same number of columns
$array_pad = 0;
foreach ($options as $key => $option) {
if (is_array($option) && (count($option) > $array_pad)) {
$array_pad = count($option);
}
}
$rows[] = array_pad(array('[0]', ':', 'Cancel'), $array_pad + 2, '');
$selection_number = 0;
foreach ($options as $key => $option) {
if ((substr($key, 0, 3) == '-- ') && (substr($key, -3) == ' --')) {
$rows[] = array_pad(array('', '', $option), $array_pad + 2, '');
}
else {
$selection_number++;
$row = array("[$selection_number]", ':');
if (is_array($option)) {
$row = array_merge($row, $option);
}
else {
$row[] = dt($label, array('!number' => $selection_number, '!key' => $key, '!value' => $option));
}
$rows[] = $row;
$selection_list[$selection_number] = $key;
}
}
drush_print_table($rows);
drush_print_pipe(array_keys($options));
// If the user specified --choice, then make an
// automatic selection. Cancel if the choice is
// not an available option.
if (($choice = drush_get_option('choice', FALSE)) !== FALSE) {
// First check to see if $choice is one of the symbolic options
if (array_key_exists($choice, $options)) {
return $choice;
}
// Next handle numeric selections
elseif (array_key_exists($choice, $selection_list)) {
return $selection_list[$choice];
}
return FALSE;
}
// If the user specified --no, then cancel; also avoid
// getting hung up waiting for user input in --pipe and
// backend modes. If none of these apply, then wait,
// for user input and return the selected result.
if (!drush_get_context('DRUSH_NEGATIVE') && !drush_get_context('DRUSH_AFFIRMATIVE') && !drush_get_context('DRUSH_PIPE')) {
while ($line = trim(fgets(STDIN))) {
if (array_key_exists($line, $selection_list)) {
return $selection_list[$line];
}
}
}
// We will allow --yes to confirm input if there is only
// one choice; otherwise, --yes will cancel to avoid ambiguity
if (drush_get_context('DRUSH_AFFIRMATIVE') && (count($options) == 1)) {
return $selection_list[1];
}
drush_print(dt('Cancelled'));
return FALSE;
}
/**
* Ask the user to select multiple items from a list.
* This is a wrapper around drush_choice, that repeats the selection process,
* allowing users to toggle a number of items in a list. The number of values
* that can be constrained by both min and max: the user will only be allowed
* finalize selection once the minimum number has been selected, and the oldest
* selected value will "drop off" the list, if they exceed the maximum number.
*
* @param $options
* Same as drush_choice() (see above).
* @param $defaults
* This can take 3 forms:
* - FALSE: (Default) All options are unselected by default.
* - TRUE: All options are selected by default.
* - Array of $options keys to be selected by default.
* @param $prompt
* Same as drush_choice() (see above).
* @param $label
* Same as drush_choice() (see above).
* @param $mark
* Controls how selected values are marked. Defaults to '!value (selected)'.
* @param $min
* Constraint on minimum number of selections. Defaults to zero. When fewer
* options than this are selected, no final options will be available.
* @param $max
* Constraint on minimum number of selections. Defaults to NULL (unlimited).
* If the a new selection causes this value to be exceeded, the oldest
* previously selected value is automatically unselected.
* @param $final_options
* An array of additional options in the same format as $options.
* When the minimum number of selections is met, this array is merged into the
* array of options. If the user selects one of these values and the
* selection process will complete (the key for the final option is included
* in the return value). If this is an empty array (default), then a built in
* final option of "Done" will be added to the available options (in this case
* no additional keys are added to the return value).
*/
function drush_choice_multiple($options, $defaults = FALSE, $prompt = 'Select some numbers.', $label = '!value', $mark = '!value (selected)', $min = 0, $max = NULL, $final_options = array()) {
$selections = array();
// Load default selections.
if (is_array($defaults)) {
$selections = $defaults;
}
elseif ($defaults === TRUE) {
$selections = array_keys($options);
}
$complete = FALSE;
$final_builtin = array();
if (empty($final_options)) {
$final_builtin['done'] = dt('Done');
}
$final_options_keys = array_keys($final_options);
while (TRUE) {
$current_options = $options;
// Mark selections.
foreach ($selections as $selection) {
$current_options[$selection] = dt($mark, array('!key' => $selection, '!value' => $options[$selection]));
}
// Add final options, if the minimum number of selections has been reached.
if (count($selections) >= $min) {
$current_options = array_merge($current_options, $final_options, $final_builtin);
}
$toggle = drush_choice($current_options, $prompt, $label);
if ($toggle === FALSE) {
return FALSE;
}
// Don't include the built in final option in the return value.
if (count($selections) >= $min && empty($final_options) && $toggle == 'done') {
return $selections;
}
// Toggle the selected value.
$item = array_search($toggle, $selections);
if ($item === FALSE) {
array_unshift($selections, $toggle);
}
else {
unset($selections[$item]);
}
// If the user selected one of the final options, return.
if (count($selections) >= $min && in_array($toggle, $final_options_keys)) {
return $selections;
}
// If the user selected too many options, drop the oldest selection.
if (count($selections) > $max) {
array_pop($selections);
}
}
}
/**
* Prompt the user for input
*
* The input can be anything that fits on a single line (not only y/n),
* so we can't use drush_confirm()
*
* @param $prompt
* The text which is displayed to the user.
* @param $default
* The default value of the input.
* @param $required
* If TRUE, user may continue even when no value is in the input.
*
* @see drush_confirm()
*/
function drush_prompt($prompt, $default = NULL, $required = TRUE) {
if (!is_null($default)) {
$prompt .= " [" . $default . "]";
}
$prompt .= ": ";
print $prompt;
if (drush_get_context('DRUSH_AFFIRMATIVE')) {
return $default;
}
$stdin = fopen('php://stdin', 'r');
stream_set_blocking($stdin, TRUE);
while (($line = fgets($stdin)) !== FALSE) {
$line = trim($line);
if ($line === "") {
$line = $default;
}
if ($line || !$required) {
break;
}
print $prompt;
}
fclose($stdin);
return $line;
}
/**
* @} End of "defgroup userinput".
*/
/**
* Calls a given function, passing through all arguments unchanged.
*
* This should be used when calling possibly mutative or destructive functions
* (e.g. unlink() and other file system functions) so that can be suppressed
* if the simulation mode is enabled.
*
* Important: Call @see drush_op_system() to execute a shell command,
* or @see drush_shell_exec() to execute a shell command and capture the
* shell output.
*
* @param $function
* The name of the function. Any additional arguments are passed along.
* @return
* The return value of the function, or TRUE if simulation mode is enabled.
*
*/
function drush_op($function) {
$args_printed = array();
$args = func_get_args();
array_shift($args); // Skip function name
foreach ($args as $arg) {
$args_printed[] = is_scalar($arg) ? $arg : (is_array($arg) ? 'Array' : 'Object');
}
// Special checking for drush_op('system')
if ($function == 'system') {
drush_log(dt("Do not call drush_op('system'); use drush_op_system instead"), 'debug');
}
if (drush_get_context('DRUSH_VERBOSE') || drush_get_context('DRUSH_SIMULATE')) {
drush_log(sprintf("Calling %s(%s)", $function, implode(", ", $args_printed)), 'debug');
}
if (drush_get_context('DRUSH_SIMULATE')) {
return TRUE;
}
return call_user_func_array($function, $args);
}
/**
* Download a file using wget, curl or file_get_contents, or via download cache.
*
* @param string $url
* The url of the file to download.
* @param string $destination
* The name of the file to be saved, which may include the full path.
* Optional, if omitted the filename will be extracted from the url and the
* file downloaded to the current working directory (Drupal root if
* bootstrapped).
* @param integer $cache_duration
* The acceptable age of a cached file. If cached file is too old, a fetch
* will occur and cache will be updated. Optional, if ommitted the file will
* be fetched directly.
*
* @return string
* The path to the downloaded file, or FALSE if the file could not be
* downloaded.
*/
function drush_download_file($url, $destination = FALSE, $cache_duration = 0) {
if (drush_get_option('cache') && $cache_duration !== 0 && $cache_dir = drush_directory_cache() . '/download') {
drush_mkdir($cache_dir);
$cache_name = str_replace(array(':', '/'), '-', $url);
$cache_file = $cache_dir . "/" . $cache_name;
// Check for cached, unexpired file.
if (file_exists($cache_file) && filectime($cache_file) > ($_SERVER['REQUEST_TIME']-$cache_duration)) {
drush_log(dt('!name retrieved from cache.', array('!name' => $cache_name)));
return $cache_file;
}
else {
if (_drush_download_file($url, $cache_file, TRUE)) {
// Cache was set just by downloading file to right location.
return $cache_file;
}
elseif (file_exists($cache_file)) {
drush_log(dt('!name retrieved from an expired cache since refresh failed.', array('!name' => $cache_name)), 'warning');
return $cache_file;
}
}
}
elseif ($return = _drush_download_file($url, $destination)) {
drush_register_file_for_deletion($return);
return $return;
}
// Unable to retrieve from cache nor download.
return FALSE;
}
/**
* Download a file using wget, curl or file_get_contents. Does not use download
* cache.
*
* @param string $url
* The url of the file to download.
* @param string $destination
* The name of the file to be saved, which may include the full path.
* Optional, if omitted the filename will be extracted from the url and the
* file downloaded to the current working directory (Drupal root if
* bootstrapped).
* @param boolean $overwrite
* Overwrite any file thats already at the destination.
* @return string
* The path to the downloaded file, or FALSE if the file could not be
* downloaded.
*/
function _drush_download_file($url, $destination = FALSE, $overwrite = TRUE) {
if (!$destination) {
$destination = getcwd() . '/' . basename($url);
}
$destination_tmp = drush_tempnam('download_file');
drush_shell_exec("wget -q --timeout=30 -O %s %s", $destination_tmp, $url);
if (!drush_file_not_empty($destination_tmp)) {
drush_shell_exec("curl -s -L --connect-timeout 30 -o %s %s", $destination_tmp, $url);
}
if (!drush_file_not_empty($destination_tmp) && $file = @file_get_contents($url)) {
@file_put_contents($destination_tmp, $file);
}
if (!drush_file_not_empty($destination_tmp)) {
// Download failed.
return FALSE;
}
drush_move_dir($destination_tmp, $destination, $overwrite);
return $destination;
}
/**
* Extract a tarball.
*
* @param string $path
* The name of the .tar.gz or .tgz file to be extracted.
* @param string $destination
* The destination directory the tarball should be extracted into.
* Optional, if ommitted the tarball directory will be used as destination.
* @param boolean $listing
* If TRUE, a listing of the tar contents will be returned on success.
*
* @return string
* TRUE on success, FALSE on fail. If $listing is TRUE, a file listing of the
* tarball is returned if the extraction reported success, instead of TRUE.
*/
function drush_tarball_extract($path, $destination = FALSE, $listing = FALSE) {
if (!file_exists($path)) {
return drush_set_error('TARBALL_EXTRACT_NOT_FOUND', dt('Tarball !path could not be found.', array('!path' => $path)));
}
$olddir = getcwd();
if (!$destination) {
$destination = dirname($path);
}
if (!is_writeable($destination)) {
return drush_set_error('TARBALL_EXTRACT_DESTINATION', dt('Extracting !path failed, as the destination directory !dest was not found or could not be written to.', array('!path' => $path, '!dest' => $dest)));
}
// If we are not on Windows, then try to do "tar" in a single operation.
if ((!drush_is_windows()) && (drush_shell_cd_and_exec(dirname($path), "tar -C %s -xzf %s", $destination, basename($path)))) {
if ($listing) {
// We use a separate tar -tf instead of -xvf above because
// the output is not the same in Mac.
drush_shell_cd_and_exec(dirname($path), "tar -tf %s", basename($path));
return drush_shell_exec_output();
}
return TRUE;
}
// If we could not get the single-op tar to work, do it in three steps.
// Copy the source tarball to the destination directory. Rename to a temp name in case the destination directory == dirname($path)
$paths_basename = basename(basename($path, '.tar.gz'), '.tgz');
$tarball = drush_tempnam($paths_basename, $destination) . ".tar.gz";
drush_register_file_for_deletion($tarball);
drush_copy_dir($path, $tarball);
$unzipped = $destination . '/' . basename($tarball, ".tar.gz") . ".tar";
// We used to use gzip --decompress in --stdout > out, but the output redirection sometimes failed on Windows for some binary output
drush_shell_cd_and_exec(dirname($tarball), "gzip --decompress %s", $tarball);
if (file_exists($unzipped)) {
drush_register_file_for_deletion($unzipped);
if (drush_shell_cd_and_exec(dirname($unzipped), "tar -xf %s", basename($unzipped))) {
if ($listing) {
// We use a separate tar -tf instead of -xf above because
// the output is not the same in Mac.
drush_shell_cd_and_exec(dirname($unzipped), "tar -tf %s", basename($unzipped));
return drush_shell_exec_output();
}
return TRUE;
}
return drush_set_error('TARBALL_EXTRACT_TAR_FAIL', dt('Extracting !path using the tar command failed.', array('!path' => $path)));
}
else {
return drush_set_error('TARBALL_EXTRACT_GZIP_FAIL', dt('Uncompressing !path using the gzip command failed.', array('!path' => $path)));
}
}
/**
* Extract a tarball to the lib directory.
* Checks for reported success, but callers should normally check for existence
* of specific expected file(s) in the library.
*
* @param string $url
* The URL to of the .tar.gz or .tgz file to be extracted.
*
* @return string
* TRUE is the download and extraction reported success, FALSE otherwise.
*/
function drush_lib_fetch($url) {
$lib = drush_get_option('lib', DRUSH_BASE_PATH . '/lib');
if (!is_writable($lib)) {
return drush_set_error('DRUSH_LIB_UNWRITABLE', dt("Drush needs to download a library from !url in order to function, and the attempt to download this file automatically failed because you do not have permission to write to the library directory !path. To continue you will need to manually download the package from !url, extract it, and copy the directory into your !path directory.", array('!path' => $lib, '!url' => $url)));
}
// We use an arbitary filename, since some sources (e.g. github) do not
// include a filename in the URL.
$path = $lib . '/drush-library-' . mt_rand() . '.tar.gz';
return drush_download_file($url, $path) && drush_tarball_extract($path);
}
/**
* @defgroup commandprocessing Command processing functions.
* @{
*
* These functions manage command processing by the
* main function in drush.php.
*/
/**
* Process commands that are executed on a remote drush instance.
*
* @return
* TRUE if the command was handled remotely.
*/
function drush_remote_command() {
$interactive = drush_get_option(array('interactive','ia'), FALSE);
// The command will be executed remotely if the --remote-host flag
// is set; note that if a site alias is provided on the command line,
// and the site alias references a remote server, then the --remote-host
// option will be set when the site alias is processed.
// @see drush_sitealias_check_arg
$remote_host = drush_get_option('remote-host');
if (isset($remote_host)) {
$args = drush_get_arguments();
$command = array_shift($args);
$remote_user = drush_get_option('remote-user');
// Force interactive mode if there is a single remote target. #interactive is added by drush_do_command_redispatch
drush_set_option('interactive', TRUE);
drush_do_command_redispatch($command, $args, $remote_host, $remote_user);
return TRUE;
}
// If the --site-list flag is set, then we will execute the specified
// command once for every site listed in the site list.
$site_list = drush_get_option('site-list');
if (isset($site_list)) {
if (!is_array($site_list)) {
$site_list = explode(',', $site_list);
}
$site_list = drush_sitealias_resolve_sitespecs($site_list);
$site_list = drush_sitealias_simplify_names($site_list);
$args = drush_get_arguments();
if (!drush_get_context('DRUSH_SIMULATE') && !$interactive) {
drush_print(dt("You are about to execute '!command' non-interactively (--yes forced) on all of the following targets:", array('!command' => implode(" ", $args))));
foreach ($site_list as $one_destination => $one_record) {
drush_print(dt(' !target', array('!target' => $one_destination)));
}
if (drush_confirm('Continue? ') === FALSE) {
drush_user_abort();
return TRUE;
}
}
$command = array_shift($args);
$multi_options = drush_get_context('cli');
$backend_options = array();
if (!drush_get_option('no-label', FALSE) && !$interactive) {
$label_separator = ' >> ';
$max_name_length = 0;
foreach ($site_list as $alias_name => $alias_record) {
if (strlen($alias_name) > $max_name_length) {
$max_name_length = strlen($alias_name);
}
}
$multi_options['reserve-margin'] = $max_name_length + strlen($label_separator);
foreach ($site_list as $alias_name => $alias_record) {
$backend_options['output-label'] = str_pad($alias_name, $max_name_length, " ") . $label_separator;
$values = drush_do_site_command($alias_record, $command, $args, $multi_options, $backend_options);
}
}
else {
if ($interactive) {
$backend_options['interactive'] = TRUE;
}
foreach ($site_list as $alias_name => $alias_record) {
drush_print(dt("!site >> !command", array('!command' => $command . ' ' . implode(" ", $args), '!site' => $alias_name)));
$values = drush_do_site_command($alias_record, $command, $args, $multi_options, $backend_options);
drush_print($values['output']);
}
}
return TRUE;
}
return FALSE;
}
/**
* Used by functions that operate on lists of sites, moving
* information from the source to the destination. Currenlty
* this includes 'drush rsync' and 'drush sql sync'.
*/
function drush_do_multiple_command($command, $source_record, $destination_record, $allow_single_source = FALSE) {
$is_multiple_command = FALSE;
if ((($allow_single_source == TRUE) || array_key_exists('site-list', $source_record)) && array_key_exists('site-list', $destination_record)) {
$is_multiple_command = TRUE;
$source_path = array_key_exists('path-component', $source_record) ? $source_record['path-component'] : '';
$destination_path = array_key_exists('path-component', $destination_record) ? $destination_record['path-component'] : '';
$target_list = array_values(drush_sitealias_resolve_sitelist($destination_record));
if (array_key_exists('site-list', $source_record)) {
$source_list = array_values(drush_sitealias_resolve_sitelist($source_record));
if (drush_sitealias_check_lists_alignment($source_list, $target_list) === FALSE) {
if (array_key_exists('unordered-list', $source_record) || array_key_exists('unordered-list', $destination_record)) {
drush_sitelist_align_lists($source_list, $target_list, $aligned_source, $aligned_target);
$source_list = $aligned_source;
$target_list = $aligned_target;
}
}
}
else {
$source_list = array_fill(0, count($target_list), $source_record);
}
if (!drush_get_context('DRUSH_SIMULATE')) {
drush_print(dt('You are about to !command between all of the following targets:', array('!command' => $command)));
$i = 0;
foreach ($source_list as $one_source) {
$one_target = $target_list[$i];
++$i;
drush_print(dt(' !source will overwrite !target', array('!source' => drush_sitealias_alias_record_to_spec($one_source) . $source_path, '!target' => drush_sitealias_alias_record_to_spec($one_target) . $destination_path)));
}