This repository was archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathteam51-cli.php
More file actions
executable file
·116 lines (96 loc) · 2.28 KB
/
team51-cli.php
File metadata and controls
executable file
·116 lines (96 loc) · 2.28 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
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
#!/usr/bin/env php
<?php
namespace Team51\CLI;
/**
* Output a message to the console.
*
* @param string $message
* @param bool $quiet
* @return void
*/
function debug( $message = '', $quiet = IS_QUIET ) {
if ( ! $quiet ) {
echo $message . PHP_EOL;
}
}
/**
* Print ASCII welcome art.
*
* @return void
*/
function print_ascii_art() {
$ascii_art = file_get_contents( __DIR__ . '/.ascii' );
debug( $ascii_art );
}
/**
* Run command.
*
* @param string $command
* @return array
*/
function run_command( $command ) {
$output = null;
$result_code = null;
// Execute the command and redirect STDERR to STDOUT.
exec( "{$command} 2>&1", $output, $result_code );
if ( 0 !== $result_code ) {
debug( sprintf( 'Error running command: %s', $command ), false );
// Print the output.
foreach ( $output as $line ) {
debug( $line, false );
}
}
return array(
'output' => $output,
'result_code' => $result_code,
);
}
/**
* CLI update routine.
*
* @return void
*/
function update() {
// Check current branch.
$command = run_command( sprintf( 'git -C %s branch --show-current', __DIR__ ) );
if ( 'trunk' !== $command['output'][0] ) {
debug( 'Not in `trunk`. Switching...' );
run_command( sprintf( 'git -C %s stash', __DIR__ ) );
run_command( sprintf( 'git -C %s checkout -f trunk', __DIR__ ) );
}
// Reset branch.
run_command( sprintf( 'git -C %s fetch origin', __DIR__ ) );
run_command( sprintf( 'git -C %s reset --hard origin/trunk', __DIR__ ) );
}
// Initialize environment.
$is_quiet = false;
$is_dev = false;
foreach ( $argv as $arg ) {
switch ( $arg ) {
case '-q':
case '--quiet':
$is_quiet = true;
break;
case '--dev':
$is_dev = true;
break;
}
}
// Support a .dev file to set the environment.
if ( file_exists( __DIR__ . '/.dev' ) ) {
$is_dev = true;
}
define( 'IS_QUIET', $is_quiet );
define( 'IS_DEV', $is_dev );
// Print ASCII art.
print_ascii_art();
if ( IS_DEV ) {
debug( "\033[44mRunning in developer mode. Skipping update check.\033[0m" );
} else {
debug( "\033[33mChecking for updates..\033[0m" );
update();
}
// Update Composer.
run_command( sprintf( 'composer install -o --working-dir %s', __DIR__ ) );
run_command( sprintf( 'composer dump-autoload -o --working-dir %s', __DIR__ ) );
require __DIR__ . '/load-application.php';