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
|
#!/usr/bin/env php
<?php
/*
* This file is part of the Symfony Standard Edition.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
$rootDir = dirname(__DIR__);
$vendorDir = $rootDir.'/vendor';
array_shift($argv);
if (!isset($argv[0])) {
exit(<<<EOF
Symfony2 vendors script management.
Specify a command to run:
install: install vendors as specified in deps or deps.lock (recommended)
update: update vendors to their latest versions (as specified in deps)
EOF
);
}
if (!in_array($command = array_shift($argv), array('install', 'update'))) {
exit(sprintf("Command \"%s\" does not exist.\n", $command));
}
/*
* Check wether this project is based on the Standard Edition that was
* shipped with vendors or not.
*/
if (is_dir($vendorDir.'/symfony') && !is_dir($vendorDir.'/symfony/.bzr') && !in_array('--reinstall', $argv)) {
exit(<<<EOF
Your project seems to be based on a Standard Edition that includes vendors.
Try to run ./bin/vendors install --reinstall
EOF
);
}
if (!is_dir($vendorDir)) {
mkdir($vendorDir, 0777, true);
}
// versions
$versions = array();
if ('install' === $command && file_exists($rootDir.'/deps.lock')) {
foreach (file($rootDir.'/deps.lock', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES) as $line) {
$parts = array_values(array_filter(explode(' ', $line)));
if (2 !== count($parts)) {
exit(sprintf('The deps version file is not valid (near "%s")', $line));
}
$versions[$parts[0]] = $parts[1];
}
}
$newversions = array();
$deps = parse_ini_file($rootDir.'/deps', true, INI_SCANNER_RAW);
if (false === $deps) {
exit("The deps file is not valid ini syntax. Perhaps missing a trailing newline?\n");
}
foreach ($deps as $name => $dep) {
$dep = array_map('trim', $dep);
// revision
if (isset($versions[$name])) {
$rev = $versions[$name];
} else {
$rev = isset($dep['version']) ? $dep['version'] : 'origin/HEAD';
}
// install dir
$installDir = isset($dep['target']) ? $vendorDir.'/'.$dep['target'] : $vendorDir.'/'.$name;
if (in_array('--reinstall', $argv)) {
if (PHP_OS == 'WINNT') {
system(sprintf('rmdir /S /Q %s', escapeshellarg(realpath($installDir))));
} else {
system(sprintf('rm -rf %s', escapeshellarg($installDir)));
}
}
echo "> Installing/Updating $name\n";
// url
if (!isset($dep['bzr'])) {
exit(sprintf('The "bzr" value for the "%s" dependency must be set.', $name));
}
$url = $dep['bzr'];
if (!is_dir($installDir)) {
system(sprintf('bzr branch %s %s', escapeshellarg($url), escapeshellarg($installDir)));
}
if (is_dir($installDir.'/.bzr/checkout/limbo')) {
system(sprintf('rm -rf %s', escapeshellarg($installDir.'/.bzr/checkout/limbo')));
}
if (is_dir($installDir.'/.bzr/checkout/pending-deletion')) {
system(sprintf('rm -rf %s', escapeshellarg($installDir.'/.bzr/checkout/pending-deletion')));
}
echo ">> Target Revision: $rev\n";
echo ">> Current Revision: ";
if ($rev != system(sprintf('cd %s && bzr revno --tree', escapeshellarg($installDir)))) {
system(sprintf('cd %s && bzr pull', escapeshellarg($installDir)));
system(sprintf('cd %s && bzr up -r%s', escapeshellarg($installDir), escapeshellarg($rev)));
}
system(sprintf('cd %s && bzr revert 2>&1 &', escapeshellarg($installDir)));
if ('update' === $command) {
ob_start();
system(sprintf('cd %s && git log -n 1 --format=%%H', escapeshellarg($installDir)));
$newversions[] = trim($name.' '.ob_get_clean());
}
}
// update?
if ('update' === $command) {
file_put_contents($rootDir.'/deps.lock', implode("\n", $newversions));
}
// php on windows can't use the shebang line from system()
$interpreter = PHP_OS == 'WINNT' ? 'php.exe' : '';
// Update the bootstrap files
system(sprintf('%s %s', $interpreter, escapeshellarg($rootDir.'/vendor/bundles/Sensio/Bundle/DistributionBundle/Resources/bin/build_bootstrap.php')));
// Update assets
system(sprintf('%s %s assets:install %s', $interpreter, escapeshellarg($rootDir.'/app/console'), escapeshellarg($rootDir.'/web/')));
// Remove the cache
system(sprintf('%s %s cache:clear --no-warmup', $interpreter, escapeshellarg($rootDir.'/app/console')));
|