60 '00020810-0000-0000-C000-000000000046' =>
'application/vnd.ms-excel',
61 '00020820-0000-0000-C000-000000000046' =>
'application/vnd.ms-excel',
62 '00020906-0000-0000-C000-000000000046' =>
'application/msword',
63 '64818D10-4F9B-11CF-86EA-00AA00B929E8' =>
'application/vnd.ms-powerpoint',
79 $handle = fopen( $fileName,
'r' );
80 if ( $handle ===
false ) {
83 'error' =>
'file does not exist',
105 'valid' => $reader->valid,
106 'mime' => $reader->mime,
107 'mimeFromClsid' => $reader->mimeFromClsid
109 if ( $reader->error ) {
110 $info[
'error'] = $reader->error;
111 $info[
'errorCode'] = $reader->errorCode;
120 }
catch ( RuntimeException $e ) {
121 $this->valid =
false;
122 $this->
error = $e->getMessage();
123 $this->errorCode = $e->getCode();
129 'header_signature' => 8,
130 'header_clsid' => 16,
131 'minor_version' => 2,
132 'major_version' => 2,
135 'mini_sector_shift' => 2,
137 'num_dir_sectors' => 4,
138 'num_fat_sectors' => 4,
139 'first_dir_sector' => 4,
140 'transaction_signature_number' => 4,
141 'mini_stream_cutoff_size' => 4,
142 'first_mini_fat_sector' => 4,
143 'num_mini_fat_sectors' => 4,
144 'first_difat_sector' => 4,
145 'num_difat_sectors' => 4,
148 if ( $this->header[
'header_signature'] !==
"\xd0\xcf\x11\xe0\xa1\xb1\x1a\xe1" ) {
149 $this->
error(
'invalid signature: ' . bin2hex( $this->header[
'header_signature'] ),
150 self::ERROR_INVALID_SIGNATURE );
153 $this->sectorLength = 1 << $this->header[
'sector_shift'];
161 return $this->sectorLength * ( $sectorId + 1 );
165 $parts =
unpack(
'Va/vb/vc/C8d', $binaryClsid );
166 return sprintf(
"%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X",
187 $block = $this->
readOffset( $offset, array_sum( $struct ) );
188 return $this->
unpack( $block, 0, $struct );
197 private function unpack( $block, $offset, $struct ) {
199 foreach ( $struct as $key => $length ) {
201 $data[$key] = substr( $block, $offset, $length );
203 $data[$key] = $this->
bin2dec( $block, $offset, $length );
210 private function bin2dec( $str, $offset, $length ) {
212 for ( $i = $length - 1; $i >= 0; $i-- ) {
214 $value += ord( $str[$offset + $i] );
220 $this->
fseek( $offset );
221 Wikimedia\suppressWarnings();
222 $block = fread( $this->file, $length );
223 Wikimedia\restoreWarnings();
224 if ( $block ===
false ) {
225 $this->
error(
'error reading from file', self::ERROR_READ );
227 if ( strlen( $block ) !== $length ) {
228 $this->
error(
'unable to read the required number of bytes from the file',
229 self::ERROR_READ_PAST_END );
239 private function error( $message, $code ) {
240 throw new RuntimeException( $message, $code );
244 Wikimedia\suppressWarnings();
245 $result =
fseek( $this->file, $offset );
246 Wikimedia\restoreWarnings();
247 if ( $result !== 0 ) {
248 $this->
error(
"unable to seek to offset $offset", self::ERROR_SEEK );
253 $binaryDifat = $this->header[
'difat'];
254 $nextDifatSector = $this->header[
'first_difat_sector'];
255 for ( $i = 0; $i < $this->header[
'num_difat_sectors']; $i++ ) {
256 $block = $this->
readSector( $nextDifatSector );
257 $binaryDifat .= substr( $block, 0, $this->sectorLength - 4 );
258 $nextDifatSector = $this->
bin2dec( $block, $this->sectorLength - 4, 4 );
259 if ( $nextDifatSector == 0xFFFFFFFE ) {
265 for ( $pos = 0; $pos < strlen( $binaryDifat ); $pos += 4 ) {
266 $fatSector = $this->
bin2dec( $binaryDifat, $pos, 4 );
267 if ( $fatSector < 0xFFFFFFFC ) {
268 $this->difat[] = $fatSector;
276 $entriesPerSector = intdiv( $this->sectorLength, 4 );
277 $fatSectorId = intdiv( $sectorId, $entriesPerSector );
279 return $fatSectorArray[$sectorId % $entriesPerSector];
283 if ( !isset( $this->fat[$fatSectorId] ) ) {
285 if ( !isset( $this->difat[$fatSectorId] ) ) {
286 $this->
error(
'FAT sector requested beyond the end of the DIFAT', self::ERROR_INVALID_FORMAT );
288 $absoluteSectorId = $this->difat[$fatSectorId];
289 $block = $this->
readSector( $absoluteSectorId );
290 for ( $pos = 0; $pos < strlen( $block ); $pos += 4 ) {
293 $this->fat[$fatSectorId] =
$fat;
295 return $this->fat[$fatSectorId];
299 $dirSectorId = $this->header[
'first_dir_sector'];
302 while ( $dirSectorId !== 0xFFFFFFFE ) {
303 if ( isset( $seenSectorIds[$dirSectorId] ) ) {
304 $this->
error(
'FAT loop detected', self::ERROR_INVALID_FORMAT );
306 $seenSectorIds[$dirSectorId] =
true;
308 $binaryDir .= $this->
readSector( $dirSectorId );
322 'create_time_low' => 4,
323 'create_time_high' => 4,
324 'modify_time_low' => 4,
325 'modify_time_high' => 4,
330 $entryLength = array_sum( $struct );
332 for ( $pos = 0; $pos < strlen( $binaryDir ); $pos += $entryLength ) {
333 $entry = $this->
unpack( $binaryDir, $pos, $struct );
337 $entry[
'size_high'] = 0;
339 $type = $entry[
'object_type'];
340 if (
$type == self::TYPE_UNALLOCATED ) {
344 $name = iconv(
'UTF-16LE',
'UTF-8', substr( $entry[
'name_raw'], 0, $entry[
'name_length'] - 2 ) );
347 if (
$type == self::TYPE_ROOT && isset( self::$mimesByClsid[$clsid] ) ) {
348 $this->mimeFromClsid = self::$mimesByClsid[$clsid];
351 if ( $name ===
'Workbook' ) {
352 $this->mime =
'application/vnd.ms-excel';
353 } elseif ( $name ===
'WordDocument' ) {
354 $this->mime =
'application/msword';
355 } elseif ( $name ===
'PowerPoint Document' ) {
356 $this->mime =
'application/vnd.ms-powerpoint';