-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathphar-file-checksums.php
214 lines (181 loc) · 7.18 KB
/
phar-file-checksums.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
#! /usr/bin/env php
<?php
/**
* Build a list of checksums, to see if we want to rebuild a phar archive
*
* This file is part of the PharUtil library.
* @author Damian Bushong <stratosphere dot programming at gmail dot com>
* @package PharUtil
*/
require_once 'Console/CommandLine.php';
// create the parser
$parser = new Console_CommandLine(array(
'description' => 'Check to see if a PHAR archive rebuild is necessary.',
'version' => '@package_version@',
'name' => 'phar-file-checksums',
));
$parser->addOption('src', array(
'short_name' => '-s',
'long_name' => '--src',
'action' => 'StoreString',
'default' => './src',
'description' => "Source files directory\n(./src)"
));
$parser->addOption('exclude_files', array(
'short_name' => '-x',
'long_name' => '--exclude',
'action' => 'StoreString',
'default' => '~$',
'description' => "Space separated regular expressions of filenames that should be excluded\n(\"~$\" by default)"
));
$parser->addOption('exclude_dirs', array(
'short_name' => '-X',
'long_name' => '--exclude-dir',
'action' => 'StoreString',
'default' => '/\.svn /\.git',
'description' => "Space separated regular expressions of directories that should be excluded\n(\"/\.svn /\.git\" by default)"
));
$parser->addOption('quiet', array(
'short_name' => '-q',
'long_name' => '--quiet',
'action' => 'StoreTrue',
'description' => 'Suppress most of the output statements.'
));
$parser->addOption('verbose', array(
'short_name' => '-v',
'long_name' => '--verbose',
'action' => 'StoreTrue',
'description' => 'Outputs additional information to the console.' // in other words, we spam the console with everything we can :3
));
$parser->addOption('checksum_file', array(
'short_name' => '-c',
'long_name' => '--checksumfile',
'action' => 'StoreString',
'default' => './checksum-file.json',
'description' => "JSON file for storing source file checksums \n(./checksum-file.json)."
));
$parser->addOption('nowrites_checksum', array(
'long_name' => '--no-save-checksums',
'action' => 'StoreTrue',
'description' => 'Do not save checksums obtained to the checksum file.'
));
// run the parser
try {
$result = $parser->parse();
} catch (Exception $exc) {
$parser->displayError($exc->getMessage());
}
$options = $result->options;
// Use a constant to avoid globals.
define('QUIET_MODE', ((bool) $options['quiet']));
define('VERBOSE_MODE', ((bool) $options['verbose']));
if (!QUIET_MODE) {
echo $parser->name . ' ' . $parser->version . PHP_EOL . PHP_EOL;
}
// validate parameters
if (!class_exists('Phar')) {
$parser->displayError("No Phar support found, you need to build and enable Phar extension. Exiting...", 10);
}
if (!is_dir($options['src']) || !is_readable($options['src'])) {
$parser->displayError("Source directory in '{$options['src']}' does not exist or is not readable.\n,", 5);
}
if (!QUIET_MODE) {
echo "Obtaining file checksums for source files in {$options['src']}..." . PHP_EOL;
}
try {
$iterator = new RecursiveDirectoryIterator($options['src']);
$iterator = new RecursiveIteratorIterator($iterator, RecursiveIteratorIterator::SELF_FIRST);
if ($options['exclude_files'] || $options['exclude_dirs']) {
$iterator = new ExcludeFilesIterator($iterator, $options['exclude_files'], $options['exclude_dirs']);
}
// buildFromIterator unfortunately sucks and skips nested directories (?)
foreach ($iterator as $file) {
if (!$iterator->isDot()) {
if ($file->isFile()) {
$hash = $checksums[(string) $file] = hash_file('sha1', (string) $file); // @note can easily change the first param of hash_file into an option that can be set via a command line parameter.
if(VERBOSE_MODE) {
echo "file hash for '$file': $hash\n";
}
}
}
}
try {
// If the checksum file doesn't exist, we'll just say a rebuild is needed.
if (!file_exists($options['checksum_file'])) {
throw new Exception("Rebuild required, checksum file not present", 12);
}
$filestates = json_decode(file_get_contents($options['checksum_file']), true);
foreach ($checksums as $file => $checksum) {
// On the first different thing, bail out and flag this as needing a rebuild.
if (!isset($filestates[$file])) {
throw new Exception ("Rebuild required, new file '$file' detected.", 12);
}
if ($filestates[$file] !== $checksum) {
if(!VERBOSE_MODE) {
throw new Exception("Rebuild required, file '$file' has changed.\n", 12);
} else {
throw new Exception("Rebuild required, file '$file' has changed.\nPrevious checksum: {$filestates[$file]}\nCurrent checksum: $checksum\n", 12);
}
}
unset($filestates[$file], $checksums[$file]);
}
// If there were files not present in one filestate or the other, then we obviously need a rebuild.
if (!empty($checksums) || !empty($filestates)) {
throw new Exception("Rebuild required, one or more files have been deleted or added.", 12);
}
}
catch(Exception $e) {
// Dump our file of checksums now, so that we can use it later.
if (empty($options['nowrite_checksums'])) {
file_put_contents($options['checksum_file'], json_encode($checksums));
}
if (!QUIET_MODE) {
$parser->displayError($e->getMessage(), $e->getCode());
} else {
exit($e->getCode());
}
}
if (!QUIET_MODE) {
echo "Rebuild not required.\n";
}
exit(0);
} catch (Exception $e) {
echo "Error: " . $e->getMessage() . "\n";
exit(1);
}
class ExcludeFilesIterator extends FilterIterator {
protected $exclude_file;
protected $exclude_path;
public function __construct(Iterator $i, $exclude_file, $exclude_path) {
parent::__construct($i);
$exclude_file = array_map(array($this, 'makeRegExp'), preg_split("/ +/", $exclude_file, -1, PREG_SPLIT_NO_EMPTY));
$exclude_path = array_map(array($this, 'makeRegExp'), preg_split("/ +/", $exclude_path, -1, PREG_SPLIT_NO_EMPTY));
$this->exclude_file = $exclude_file;
$this->exclude_path = $exclude_path;
}
protected function makeRegExp($pattern) {
return '!' . $pattern . '!';
}
public function accept() {
$file = $this->current();
if ($file->isFile()) {
foreach ($this->exclude_file as $pattern) {
if (preg_match($pattern, $file->getFilename())) {
if(!QUIET_MODE) {
echo "skipping $file\n";
}
return false;
}
}
}
foreach ($this->exclude_path as $pattern) {
if (preg_match($pattern, $file->getPathname())) {
if(!QUIET_MODE) {
echo "skipping $file\n";
}
return false;
}
}
return true;
}
}