3 * Reader for XMP data containing properties relevant to images.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 use Psr\Log\LoggerAwareInterface
;
25 use Psr\Log\LoggerInterface
;
26 use Psr\Log\NullLogger
;
29 * Class for reading xmp data containing properties relevant to
30 * images, and spitting out an array that FormatMetadata accepts.
32 * Note, this is not meant to recognize every possible thing you can
33 * encode in XMP. It should recognize all the properties we want.
34 * For example it doesn't have support for structures with multiple
35 * nesting levels, as none of the properties we're supporting use that
36 * feature. If it comes across properties it doesn't recognize, it should
39 * The public methods one would call in this class are
41 * Reads in xmp content.
42 * Can potentially be called multiple times with partial data each time.
43 * - parseExtended( $content )
44 * Reads XMPExtended blocks (jpeg files only).
46 * Outputs a results array.
48 * Note XMP kind of looks like rdf. They are not the same thing - XMP is
49 * encoded as a specific subset of rdf. This class can read XMP. It cannot
53 class XMPReader
implements LoggerAwareInterface
{
54 /** @var array XMP item configuration array */
57 /** @var array Array to hold the current element (and previous element, and so on) */
58 private $curItem = array();
60 /** @var bool|string The structure name when processing nested structures. */
61 private $ancestorStruct = false;
63 /** @var bool|string Temporary holder for character data that appears in xmp doc. */
64 private $charContent = false;
66 /** @var array Stores the state the xmpreader is in (see MODE_FOO constants) */
67 private $mode = array();
69 /** @var array Array to hold results */
70 private $results = array();
72 /** @var bool If we're doing a seq or bag. */
73 private $processingArray = false;
75 /** @var bool|string Used for lang alts only */
76 private $itemLang = false;
78 /** @var resource A resource handle for the XML parser */
81 /** @var bool|string Character set like 'UTF-8' */
82 private $charset = false;
85 private $extendedXMPOffset = 0;
87 /** @var int Flag determining if the XMP is safe to parse **/
88 private $parsable = 0;
90 /** @var string Buffer of XML to parse **/
91 private $xmlParsableBuffer = '';
94 * These are various mode constants.
95 * they are used to figure out what to do
96 * with an element when its encountered.
98 * For example, MODE_IGNORE is used when processing
99 * a property we're not interested in. So if a new
100 * element pops up when we're in that mode, we ignore it.
102 const MODE_INITIAL
= 0;
103 const MODE_IGNORE
= 1;
105 const MODE_LI_LANG
= 3;
106 const MODE_QDESC
= 4;
108 // The following MODE constants are also used in the
109 // $items array to denote what type of property the item is.
110 const MODE_SIMPLE
= 10;
111 const MODE_STRUCT
= 11; // structure (associative array)
112 const MODE_SEQ
= 12; // ordered list
113 const MODE_BAG
= 13; // unordered list
114 const MODE_LANG
= 14;
115 const MODE_ALT
= 15; // non-language alt. Currently not implemented, and not needed atm.
116 const MODE_BAGSTRUCT
= 16; // A BAG of Structs.
118 const NS_RDF
= 'http://www.w3.org/1999/02/22-rdf-syntax-ns#';
119 const NS_XML
= 'http://www.w3.org/XML/1998/namespace';
121 // States used while determining if XML is safe to parse
122 const PARSABLE_UNKNOWN
= 0;
123 const PARSABLE_OK
= 1;
124 const PARSABLE_BUFFERING
= 2;
125 const PARSABLE_NO
= 3;
128 * @var LoggerInterface
135 * Primary job is to initialize the XMLParser
137 function __construct( LoggerInterface
$logger = null ) {
139 if ( !function_exists( 'xml_parser_create_ns' ) ) {
140 // this should already be checked by this point
141 throw new RuntimeException( 'XMP support requires XML Parser' );
144 $this->setLogger( $logger );
146 $this->setLogger( new NullLogger() );
149 $this->items
= XMPInfo
::getItems();
151 $this->resetXMLParser();
154 public function setLogger( LoggerInterface
$logger ) {
155 $this->logger
= $logger;
159 * free the XML parser.
161 * @note It is unclear to me if we really need to do this ourselves
162 * or if php garbage collection will automatically free the xmlParser
163 * when it is no longer needed.
165 private function destroyXMLParser() {
166 if ( $this->xmlParser
) {
167 xml_parser_free( $this->xmlParser
);
168 $this->xmlParser
= null;
173 * Main use is if a single item has multiple xmp documents describing it.
174 * For example in jpeg's with extendedXMP
176 private function resetXMLParser() {
178 $this->destroyXMLParser();
180 $this->xmlParser
= xml_parser_create_ns( 'UTF-8', ' ' );
181 xml_parser_set_option( $this->xmlParser
, XML_OPTION_CASE_FOLDING
, 0 );
182 xml_parser_set_option( $this->xmlParser
, XML_OPTION_SKIP_WHITE
, 1 );
184 xml_set_element_handler( $this->xmlParser
,
185 array( $this, 'startElement' ),
186 array( $this, 'endElement' ) );
188 xml_set_character_data_handler( $this->xmlParser
, array( $this, 'char' ) );
190 $this->parsable
= self
::PARSABLE_UNKNOWN
;
191 $this->xmlParsableBuffer
= '';
195 * Check if this instance supports using this class
197 public static function isSupported() {
198 return function_exists( 'xml_parser_create_ns' ) && class_exists( 'XMLReader' );
201 /** Get the result array. Do some post-processing before returning
202 * the array, and transform any metadata that is special-cased.
204 * @return array Array of results as an array of arrays suitable for
205 * FormatMetadata::getFormattedData().
207 public function getResults() {
208 // xmp-special is for metadata that affects how stuff
209 // is extracted. For example xmpNote:HasExtendedXMP.
211 // It is also used to handle photoshop:AuthorsPosition
212 // which is weird and really part of another property,
213 // see 2:85 in IPTC. See also pg 21 of IPTC4XMP standard.
214 // The location fields also use it.
216 $data = $this->results
;
218 if ( isset( $data['xmp-special']['AuthorsPosition'] )
219 && is_string( $data['xmp-special']['AuthorsPosition'] )
220 && isset( $data['xmp-general']['Artist'][0] )
222 // Note, if there is more than one creator,
223 // this only applies to first. This also will
224 // only apply to the dc:Creator prop, not the
227 $data['xmp-general']['Artist'][0] =
228 $data['xmp-special']['AuthorsPosition'] . ', '
229 . $data['xmp-general']['Artist'][0];
232 // Go through the LocationShown and LocationCreated
233 // changing it to the non-hierarchal form used by
234 // the other location fields.
236 if ( isset( $data['xmp-special']['LocationShown'][0] )
237 && is_array( $data['xmp-special']['LocationShown'][0] )
239 // the is_array is just paranoia. It should always
241 foreach ( $data['xmp-special']['LocationShown'] as $loc ) {
242 if ( !is_array( $loc ) ) {
243 // To avoid copying over the _type meta-fields.
246 foreach ( $loc as $field => $val ) {
247 $data['xmp-general'][$field . 'Dest'][] = $val;
251 if ( isset( $data['xmp-special']['LocationCreated'][0] )
252 && is_array( $data['xmp-special']['LocationCreated'][0] )
254 // the is_array is just paranoia. It should always
256 foreach ( $data['xmp-special']['LocationCreated'] as $loc ) {
257 if ( !is_array( $loc ) ) {
258 // To avoid copying over the _type meta-fields.
261 foreach ( $loc as $field => $val ) {
262 $data['xmp-general'][$field . 'Created'][] = $val;
267 // We don't want to return the special values, since they're
268 // special and not info to be stored about the file.
269 unset( $data['xmp-special'] );
271 // Convert GPSAltitude to negative if below sea level.
272 if ( isset( $data['xmp-exif']['GPSAltitudeRef'] )
273 && isset( $data['xmp-exif']['GPSAltitude'] )
276 // Must convert to a real before multiplying by -1
277 // XMPValidate guarantees there will always be a '/' in this value.
278 list( $nom, $denom ) = explode( '/', $data['xmp-exif']['GPSAltitude'] );
279 $data['xmp-exif']['GPSAltitude'] = $nom / $denom;
281 if ( $data['xmp-exif']['GPSAltitudeRef'] == '1' ) {
282 $data['xmp-exif']['GPSAltitude'] *= -1;
284 unset( $data['xmp-exif']['GPSAltitudeRef'] );
291 * Main function to call to parse XMP. Use getResults to
294 * Also catches any errors during processing, writes them to
295 * debug log, blanks result array and returns false.
297 * @param string $content XMP data
298 * @param bool $allOfIt If this is all the data (true) or if its split up (false). Default true
299 * @throws RuntimeException
300 * @return bool Success.
302 public function parse( $content, $allOfIt = true ) {
303 if ( !$this->xmlParser
) {
304 $this->resetXMLParser();
308 // detect encoding by looking for BOM which is supposed to be in processing instruction.
309 // see page 12 of http://www.adobe.com/devnet/xmp/pdfs/XMPSpecificationPart3.pdf
310 if ( !$this->charset
) {
312 if ( preg_match( '/\xEF\xBB\xBF|\xFE\xFF|\x00\x00\xFE\xFF|\xFF\xFE\x00\x00|\xFF\xFE/',
317 $this->charset
= 'UTF-16BE';
320 $this->charset
= 'UTF-16LE';
322 case "\x00\x00\xFE\xFF":
323 $this->charset
= 'UTF-32BE';
325 case "\xFF\xFE\x00\x00":
326 $this->charset
= 'UTF-32LE';
329 $this->charset
= 'UTF-8';
332 // this should be impossible to get to
333 throw new RuntimeException( "Invalid BOM" );
336 // standard specifically says, if no bom assume utf-8
337 $this->charset
= 'UTF-8';
340 if ( $this->charset
!== 'UTF-8' ) {
341 // don't convert if already utf-8
342 MediaWiki\
suppressWarnings();
343 $content = iconv( $this->charset
, 'UTF-8//IGNORE', $content );
344 MediaWiki\restoreWarnings
();
347 // Ensure the XMP block does not have an xml doctype declaration, which
348 // could declare entities unsafe to parse with xml_parse (T85848/T71210).
349 if ( $this->parsable
!== self
::PARSABLE_OK
) {
350 if ( $this->parsable
=== self
::PARSABLE_NO
) {
351 throw new RuntimeException( 'Unsafe doctype declaration in XML.' );
354 $content = $this->xmlParsableBuffer
. $content;
355 if ( !$this->checkParseSafety( $content ) ) {
356 if ( !$allOfIt && $this->parsable
!== self
::PARSABLE_NO
) {
357 // parse wasn't Unsuccessful yet, so return true
361 $msg = ( $this->parsable
=== self
::PARSABLE_NO
) ?
362 'Unsafe doctype declaration in XML.' :
363 'No root element found in XML.';
364 throw new RuntimeException( $msg );
368 $ok = xml_parse( $this->xmlParser
, $content, $allOfIt );
370 $code = xml_get_error_code( $this->xmlParser
);
371 $error = xml_error_string( $code );
372 $line = xml_get_current_line_number( $this->xmlParser
);
373 $col = xml_get_current_column_number( $this->xmlParser
);
374 $offset = xml_get_current_byte_index( $this->xmlParser
);
376 $this->logger
->warning(
377 '{method} : Error reading XMP content: {error} ' .
378 '(line: {line} column: {column} byte offset: {offset})',
380 'method' => __METHOD__
,
381 'error_code' => $code,
386 'content' => $content,
388 $this->results
= array(); // blank if error.
389 $this->destroyXMLParser();
392 } catch ( Exception
$e ) {
393 $this->logger
->warning(
394 '{method} Exception caught while parsing: ' . $e->getMessage(),
396 'method' => __METHOD__
,
398 'content' => $content,
401 $this->results
= array();
405 $this->destroyXMLParser();
411 /** Entry point for XMPExtended blocks in jpeg files
413 * @todo In serious need of testing
414 * @see http://www.adobe.ge/devnet/xmp/pdfs/XMPSpecificationPart3.pdf XMP spec part 3 page 20
415 * @param string $content XMPExtended block minus the namespace signature
416 * @return bool If it succeeded.
418 public function parseExtended( $content ) {
419 // @todo FIXME: This is untested. Hard to find example files
420 // or programs that make such files..
421 $guid = substr( $content, 0, 32 );
422 if ( !isset( $this->results
['xmp-special']['HasExtendedXMP'] )
423 ||
$this->results
['xmp-special']['HasExtendedXMP'] !== $guid
425 $this->logger
->info( __METHOD__
.
426 " Ignoring XMPExtended block due to wrong guid (guid= '$guid')" );
430 $len = unpack( 'Nlength/Noffset', substr( $content, 32, 8 ) );
433 $len['length'] < 4 ||
434 $len['offset'] < 0 ||
435 $len['offset'] > $len['length']
438 __METHOD__
. 'Error reading extended XMP block, invalid length or offset.'
444 // we're not very robust here. we should accept it in the wrong order.
445 // To quote the XMP standard:
446 // "A JPEG writer should write the ExtendedXMP marker segments in order,
447 // immediately following the StandardXMP. However, the JPEG standard
448 // does not require preservation of marker segment order. A robust JPEG
449 // reader should tolerate the marker segments in any order."
450 // On the other hand, the probability that an image will have more than
451 // 128k of metadata is rather low... so the probability that it will have
452 // > 128k, and be in the wrong order is very low...
454 if ( $len['offset'] !== $this->extendedXMPOffset
) {
455 $this->logger
->info( __METHOD__
. 'Ignoring XMPExtended block due to wrong order. (Offset was '
456 . $len['offset'] . ' but expected ' . $this->extendedXMPOffset
. ')' );
461 if ( $len['offset'] === 0 ) {
462 // if we're starting the extended block, we've probably already
463 // done the XMPStandard block, so reset.
464 $this->resetXMLParser();
467 $this->extendedXMPOffset +
= $len['length'];
469 $actualContent = substr( $content, 40 );
471 if ( $this->extendedXMPOffset
=== strlen( $actualContent ) ) {
477 $this->logger
->debug( __METHOD__
. 'Parsing a XMPExtended block' );
479 return $this->parse( $actualContent, $atEnd );
483 * Character data handler
484 * Called whenever character data is found in the xmp document.
486 * does nothing if we're in MODE_IGNORE or if the data is whitespace
487 * throws an error if we're not in MODE_SIMPLE (as we're not allowed to have character
488 * data in the other modes).
490 * As an example, this happens when we encounter XMP like:
491 * <exif:DigitalZoomRatio>0/10</exif:DigitalZoomRatio>
492 * and are processing the 0/10 bit.
494 * @param XMLParser $parser XMLParser reference to the xml parser
495 * @param string $data Character data
496 * @throws RuntimeException On invalid data
498 function char( $parser, $data ) {
500 $data = trim( $data );
501 if ( trim( $data ) === "" ) {
505 if ( !isset( $this->mode
[0] ) ) {
506 throw new RuntimeException( 'Unexpected character data before first rdf:Description element' );
509 if ( $this->mode
[0] === self
::MODE_IGNORE
) {
513 if ( $this->mode
[0] !== self
::MODE_SIMPLE
514 && $this->mode
[0] !== self
::MODE_QDESC
516 throw new RuntimeException( 'character data where not expected. (mode ' . $this->mode
[0] . ')' );
519 // to check, how does this handle w.s.
520 if ( $this->charContent
=== false ) {
521 $this->charContent
= $data;
523 $this->charContent
.= $data;
528 * Check if a block of XML is safe to pass to xml_parse, i.e. doesn't
529 * contain a doctype declaration which could contain a dos attack if we
530 * parse it and expand internal entities (T85848).
532 * @param string $content xml string to check for parse safety
533 * @return bool true if the xml is safe to parse, false otherwise
535 private function checkParseSafety( $content ) {
536 $reader = new XMLReader();
539 // For XMLReader to parse incomplete/invalid XML, it has to be open()'ed
540 // instead of using XML().
542 'data://text/plain,' . urlencode( $content ),
544 LIBXML_NOERROR | LIBXML_NOWARNING | LIBXML_NONET
547 $oldDisable = libxml_disable_entity_loader( true );
548 /** @noinspection PhpUnusedLocalVariableInspection */
549 $reset = new ScopedCallback(
550 'libxml_disable_entity_loader',
553 $reader->setParserProperty( XMLReader
::SUBST_ENTITIES
, false );
555 // Even with LIBXML_NOWARNING set, XMLReader::read gives a warning
556 // when parsing truncated XML, which causes unit tests to fail.
557 MediaWiki\
suppressWarnings();
558 while ( $reader->read() ) {
559 if ( $reader->nodeType
=== XMLReader
::ELEMENT
) {
560 // Reached the first element without hitting a doctype declaration
561 $this->parsable
= self
::PARSABLE_OK
;
565 if ( $reader->nodeType
=== XMLReader
::DOC_TYPE
) {
566 $this->parsable
= self
::PARSABLE_NO
;
571 MediaWiki\restoreWarnings
();
573 if ( !is_null( $result ) ) {
577 // Reached the end of the parsable xml without finding an element
578 // or doctype. Buffer and try again.
579 $this->parsable
= self
::PARSABLE_BUFFERING
;
580 $this->xmlParsableBuffer
= $content;
584 /** When we hit a closing element in MODE_IGNORE
585 * Check to see if this is the element we started to ignore,
586 * in which case we get out of MODE_IGNORE
588 * @param string $elm Namespace of element followed by a space and then tag name of element.
590 private function endElementModeIgnore( $elm ) {
591 if ( $this->curItem
[0] === $elm ) {
592 array_shift( $this->curItem
);
593 array_shift( $this->mode
);
598 * Hit a closing element when in MODE_SIMPLE.
599 * This generally means that we finished processing a
600 * property value, and now have to save the result to the
603 * For example, when processing:
604 * <exif:DigitalZoomRatio>0/10</exif:DigitalZoomRatio>
605 * this deals with when we hit </exif:DigitalZoomRatio>.
607 * Or it could be if we hit the end element of a property
608 * of a compound data structure (like a member of an array).
610 * @param string $elm Namespace, space, and tag name.
612 private function endElementModeSimple( $elm ) {
613 if ( $this->charContent
!== false ) {
614 if ( $this->processingArray
) {
615 // if we're processing an array, use the original element
616 // name instead of rdf:li.
617 list( $ns, $tag ) = explode( ' ', $this->curItem
[0], 2 );
619 list( $ns, $tag ) = explode( ' ', $elm, 2 );
621 $this->saveValue( $ns, $tag, $this->charContent
);
623 $this->charContent
= false; // reset
625 array_shift( $this->curItem
);
626 array_shift( $this->mode
);
630 * Hit a closing element in MODE_STRUCT, MODE_SEQ, MODE_BAG
631 * generally means we've finished processing a nested structure.
632 * resets some internal variables to indicate that.
634 * Note this means we hit the closing element not the "</rdf:Seq>".
636 * @par For example, when processing:
638 * <exif:ISOSpeedRatings> <rdf:Seq> <rdf:li>64</rdf:li>
639 * </rdf:Seq> </exif:ISOSpeedRatings>
642 * This method is called when we hit the "</exif:ISOSpeedRatings>" tag.
644 * @param string $elm Namespace . space . tag name.
645 * @throws RuntimeException
647 private function endElementNested( $elm ) {
649 /* cur item must be the same as $elm, unless if in MODE_STRUCT
650 in which case it could also be rdf:Description */
651 if ( $this->curItem
[0] !== $elm
652 && !( $elm === self
::NS_RDF
. ' Description'
653 && $this->mode
[0] === self
::MODE_STRUCT
)
655 throw new RuntimeException( "nesting mismatch. got a </$elm> but expected a </" .
656 $this->curItem
[0] . '>' );
659 // Validate structures.
660 list( $ns, $tag ) = explode( ' ', $elm, 2 );
661 if ( isset( $this->items
[$ns][$tag]['validate'] ) ) {
662 $info =& $this->items
[$ns][$tag];
663 $finalName = isset( $info['map_name'] )
664 ?
$info['map_name'] : $tag;
666 if ( is_array( $info['validate'] ) ) {
667 $validate = $info['validate'];
669 $validator = new XMPValidate( $this->logger
);
670 $validate = array( $validator, $info['validate'] );
673 if ( !isset( $this->results
['xmp-' . $info['map_group']][$finalName] ) ) {
674 // This can happen if all the members of the struct failed validation.
675 $this->logger
->debug( __METHOD__
. " <$ns:$tag> has no valid members." );
676 } elseif ( is_callable( $validate ) ) {
677 $val =& $this->results
['xmp-' . $info['map_group']][$finalName];
678 call_user_func_array( $validate, array( $info, &$val, false ) );
679 if ( is_null( $val ) ) {
680 // the idea being the validation function will unset the variable if
682 $this->logger
->info( __METHOD__
. " <$ns:$tag> failed validation." );
683 unset( $this->results
['xmp-' . $info['map_group']][$finalName] );
686 $this->logger
->warning( __METHOD__
. " Validation function for $finalName ("
687 . $validate[0] . '::' . $validate[1] . '()) is not callable.' );
691 array_shift( $this->curItem
);
692 array_shift( $this->mode
);
693 $this->ancestorStruct
= false;
694 $this->processingArray
= false;
695 $this->itemLang
= false;
699 * Hit a closing element in MODE_LI (either rdf:Seq, or rdf:Bag )
700 * Add information about what type of element this is.
702 * Note we still have to hit the outer "</property>"
704 * @par For example, when processing:
706 * <exif:ISOSpeedRatings> <rdf:Seq> <rdf:li>64</rdf:li>
707 * </rdf:Seq> </exif:ISOSpeedRatings>
710 * This method is called when we hit the "</rdf:Seq>".
711 * (For comparison, we call endElementModeSimple when we
712 * hit the "</rdf:li>")
714 * @param string $elm Namespace . ' ' . element name
715 * @throws RuntimeException
717 private function endElementModeLi( $elm ) {
718 list( $ns, $tag ) = explode( ' ', $this->curItem
[0], 2 );
719 $info = $this->items
[$ns][$tag];
720 $finalName = isset( $info['map_name'] )
721 ?
$info['map_name'] : $tag;
723 array_shift( $this->mode
);
725 if ( !isset( $this->results
['xmp-' . $info['map_group']][$finalName] ) ) {
726 $this->logger
->debug( __METHOD__
. " Empty compund element $finalName." );
731 if ( $elm === self
::NS_RDF
. ' Seq' ) {
732 $this->results
['xmp-' . $info['map_group']][$finalName]['_type'] = 'ol';
733 } elseif ( $elm === self
::NS_RDF
. ' Bag' ) {
734 $this->results
['xmp-' . $info['map_group']][$finalName]['_type'] = 'ul';
735 } elseif ( $elm === self
::NS_RDF
. ' Alt' ) {
736 // extra if needed as you could theoretically have a non-language alt.
737 if ( $info['mode'] === self
::MODE_LANG
) {
738 $this->results
['xmp-' . $info['map_group']][$finalName]['_type'] = 'lang';
741 throw new RuntimeException(
742 __METHOD__
. " expected </rdf:seq> or </rdf:bag> but instead got $elm."
748 * End element while in MODE_QDESC
749 * mostly when ending an element when we have a simple value
750 * that has qualifiers.
752 * Qualifiers aren't all that common, and we don't do anything
755 * @param string $elm Namespace and element
757 private function endElementModeQDesc( $elm ) {
759 if ( $elm === self
::NS_RDF
. ' value' ) {
760 list( $ns, $tag ) = explode( ' ', $this->curItem
[0], 2 );
761 $this->saveValue( $ns, $tag, $this->charContent
);
765 array_shift( $this->mode
);
766 array_shift( $this->curItem
);
771 * Handler for hitting a closing element.
773 * generally just calls a helper function depending on what
776 * Ignores the outer wrapping elements that are optional in
777 * xmp and have no meaning.
779 * @param XMLParser $parser
780 * @param string $elm Namespace . ' ' . element name
781 * @throws RuntimeException
783 function endElement( $parser, $elm ) {
784 if ( $elm === ( self
::NS_RDF
. ' RDF' )
785 ||
$elm === 'adobe:ns:meta/ xmpmeta'
786 ||
$elm === 'adobe:ns:meta/ xapmeta'
792 if ( $elm === self
::NS_RDF
. ' type' ) {
793 // these aren't really supported properly yet.
794 // However, it appears they almost never used.
795 $this->logger
->info( __METHOD__
. ' encountered <rdf:type>' );
798 if ( strpos( $elm, ' ' ) === false ) {
799 // This probably shouldn't happen.
800 // However, there is a bug in an adobe product
801 // that forgets the namespace on some things.
802 // (Luckily they are unimportant things).
803 $this->logger
->info( __METHOD__
. " Encountered </$elm> which has no namespace. Skipping." );
808 if ( count( $this->mode
[0] ) === 0 ) {
809 // This should never ever happen and means
810 // there is a pretty major bug in this class.
811 throw new RuntimeException( 'Encountered end element with no mode' );
814 if ( count( $this->curItem
) == 0 && $this->mode
[0] !== self
::MODE_INITIAL
) {
815 // just to be paranoid. Should always have a curItem, except for initially
816 // (aka during MODE_INITAL).
817 throw new RuntimeException( "Hit end element </$elm> but no curItem" );
820 switch ( $this->mode
[0] ) {
821 case self
::MODE_IGNORE
:
822 $this->endElementModeIgnore( $elm );
824 case self
::MODE_SIMPLE
:
825 $this->endElementModeSimple( $elm );
827 case self
::MODE_STRUCT
:
830 case self
::MODE_LANG
:
831 case self
::MODE_BAGSTRUCT
:
832 $this->endElementNested( $elm );
834 case self
::MODE_INITIAL
:
835 if ( $elm === self
::NS_RDF
. ' Description' ) {
836 array_shift( $this->mode
);
838 throw new RuntimeException( 'Element ended unexpectedly while in MODE_INITIAL' );
842 case self
::MODE_LI_LANG
:
843 $this->endElementModeLi( $elm );
845 case self
::MODE_QDESC
:
846 $this->endElementModeQDesc( $elm );
849 $this->logger
->warning( __METHOD__
. " no mode (elm = $elm)" );
855 * Hit an opening element while in MODE_IGNORE
857 * XMP is extensible, so ignore any tag we don't understand.
859 * Mostly ignores, unless we encounter the element that we are ignoring.
860 * in which case we add it to the item stack, so we can ignore things
861 * that are nested, correctly.
863 * @param string $elm Namespace . ' ' . tag name
865 private function startElementModeIgnore( $elm ) {
866 if ( $elm === $this->curItem
[0] ) {
867 array_unshift( $this->curItem
, $elm );
868 array_unshift( $this->mode
, self
::MODE_IGNORE
);
873 * Start element in MODE_BAG (unordered array)
874 * this should always be <rdf:Bag>
876 * @param string $elm Namespace . ' ' . tag
877 * @throws RuntimeException If we have an element that's not <rdf:Bag>
879 private function startElementModeBag( $elm ) {
880 if ( $elm === self
::NS_RDF
. ' Bag' ) {
881 array_unshift( $this->mode
, self
::MODE_LI
);
883 throw new RuntimeException( "Expected <rdf:Bag> but got $elm." );
888 * Start element in MODE_SEQ (ordered array)
889 * this should always be <rdf:Seq>
891 * @param string $elm Namespace . ' ' . tag
892 * @throws RuntimeException If we have an element that's not <rdf:Seq>
894 private function startElementModeSeq( $elm ) {
895 if ( $elm === self
::NS_RDF
. ' Seq' ) {
896 array_unshift( $this->mode
, self
::MODE_LI
);
897 } elseif ( $elm === self
::NS_RDF
. ' Bag' ) {
899 $this->logger
->info( __METHOD__
. ' Expected an rdf:Seq, but got an rdf:Bag. Pretending'
900 . ' it is a Seq, since some buggy software is known to screw this up.' );
901 array_unshift( $this->mode
, self
::MODE_LI
);
903 throw new RuntimeException( "Expected <rdf:Seq> but got $elm." );
908 * Start element in MODE_LANG (language alternative)
909 * this should always be <rdf:Alt>
911 * This tag tends to be used for metadata like describe this
912 * picture, which can be translated into multiple languages.
914 * XMP supports non-linguistic alternative selections,
915 * which are really only used for thumbnails, which
916 * we don't care about.
918 * @param string $elm Namespace . ' ' . tag
919 * @throws RuntimeException If we have an element that's not <rdf:Alt>
921 private function startElementModeLang( $elm ) {
922 if ( $elm === self
::NS_RDF
. ' Alt' ) {
923 array_unshift( $this->mode
, self
::MODE_LI_LANG
);
925 throw new RuntimeException( "Expected <rdf:Seq> but got $elm." );
930 * Handle an opening element when in MODE_SIMPLE
932 * This should not happen often. This is for if a simple element
933 * already opened has a child element. Could happen for a
937 * <exif:DigitalZoomRatio><rdf:Description><rdf:value>0/10</rdf:value>
938 * <foo:someQualifier>Bar</foo:someQualifier> </rdf:Description>
939 * </exif:DigitalZoomRatio>
941 * This method is called when processing the <rdf:Description> element
943 * @param string $elm Namespace and tag names separated by space.
944 * @param array $attribs Attributes of the element.
945 * @throws RuntimeException
947 private function startElementModeSimple( $elm, $attribs ) {
948 if ( $elm === self
::NS_RDF
. ' Description' ) {
949 // If this value has qualifiers
950 array_unshift( $this->mode
, self
::MODE_QDESC
);
951 array_unshift( $this->curItem
, $this->curItem
[0] );
953 if ( isset( $attribs[self
::NS_RDF
. ' value'] ) ) {
954 list( $ns, $tag ) = explode( ' ', $this->curItem
[0], 2 );
955 $this->saveValue( $ns, $tag, $attribs[self
::NS_RDF
. ' value'] );
957 } elseif ( $elm === self
::NS_RDF
. ' value' ) {
958 // This should not be here.
959 throw new RuntimeException( __METHOD__
. ' Encountered <rdf:value> where it was unexpected.' );
961 // something else we don't recognize, like a qualifier maybe.
962 $this->logger
->info( __METHOD__
.
963 " Encountered element <$elm> where only expecting character data as value of " .
965 array_unshift( $this->mode
, self
::MODE_IGNORE
);
966 array_unshift( $this->curItem
, $elm );
971 * Start an element when in MODE_QDESC.
972 * This generally happens when a simple element has an inner
973 * rdf:Description to hold qualifier elements.
976 * <exif:DigitalZoomRatio><rdf:Description><rdf:value>0/10</rdf:value>
977 * <foo:someQualifier>Bar</foo:someQualifier> </rdf:Description>
978 * </exif:DigitalZoomRatio>
979 * Called when processing the <rdf:value> or <foo:someQualifier>.
981 * @param string $elm Namespace and tag name separated by a space.
984 private function startElementModeQDesc( $elm ) {
985 if ( $elm === self
::NS_RDF
. ' value' ) {
986 return; // do nothing
988 // otherwise its a qualifier, which we ignore
989 array_unshift( $this->mode
, self
::MODE_IGNORE
);
990 array_unshift( $this->curItem
, $elm );
995 * Starting an element when in MODE_INITIAL
996 * This usually happens when we hit an element inside
997 * the outer rdf:Description
999 * This is generally where most properties start.
1001 * @param string $ns Namespace
1002 * @param string $tag Tag name (without namespace prefix)
1003 * @param array $attribs Array of attributes
1004 * @throws RuntimeException
1006 private function startElementModeInitial( $ns, $tag, $attribs ) {
1007 if ( $ns !== self
::NS_RDF
) {
1009 if ( isset( $this->items
[$ns][$tag] ) ) {
1010 if ( isset( $this->items
[$ns][$tag]['structPart'] ) ) {
1011 // If this element is supposed to appear only as
1012 // a child of a structure, but appears here (not as
1013 // a child of a struct), then something weird is
1014 // happening, so ignore this element and its children.
1016 $this->logger
->warning( "Encountered <$ns:$tag> outside"
1017 . " of its expected parent. Ignoring." );
1019 array_unshift( $this->mode
, self
::MODE_IGNORE
);
1020 array_unshift( $this->curItem
, $ns . ' ' . $tag );
1024 $mode = $this->items
[$ns][$tag]['mode'];
1025 array_unshift( $this->mode
, $mode );
1026 array_unshift( $this->curItem
, $ns . ' ' . $tag );
1027 if ( $mode === self
::MODE_STRUCT
) {
1028 $this->ancestorStruct
= isset( $this->items
[$ns][$tag]['map_name'] )
1029 ?
$this->items
[$ns][$tag]['map_name'] : $tag;
1031 if ( $this->charContent
!== false ) {
1033 // Should not happen in valid XMP.
1034 throw new RuntimeException( 'tag nested in non-whitespace characters.' );
1037 // This element is not on our list of allowed elements so ignore.
1038 $this->logger
->debug( __METHOD__
. " Ignoring unrecognized element <$ns:$tag>." );
1039 array_unshift( $this->mode
, self
::MODE_IGNORE
);
1040 array_unshift( $this->curItem
, $ns . ' ' . $tag );
1045 // process attributes
1046 $this->doAttribs( $attribs );
1050 * Hit an opening element when in a Struct (MODE_STRUCT)
1051 * This is generally for fields of a compound property.
1053 * Example of a struct (abbreviated; flash has more properties):
1055 * <exif:Flash> <rdf:Description> <exif:Fired>True</exif:Fired>
1056 * <exif:Mode>1</exif:Mode></rdf:Description></exif:Flash>
1060 * <exif:Flash rdf:parseType='Resource'> <exif:Fired>True</exif:Fired>
1061 * <exif:Mode>1</exif:Mode></exif:Flash>
1063 * @param string $ns Namespace
1064 * @param string $tag Tag name (no ns)
1065 * @param array $attribs Array of attribs w/ values.
1066 * @throws RuntimeException
1068 private function startElementModeStruct( $ns, $tag, $attribs ) {
1069 if ( $ns !== self
::NS_RDF
) {
1071 if ( isset( $this->items
[$ns][$tag] ) ) {
1072 if ( isset( $this->items
[$ns][$this->ancestorStruct
]['children'] )
1073 && !isset( $this->items
[$ns][$this->ancestorStruct
]['children'][$tag] )
1075 // This assumes that we don't have inter-namespace nesting
1076 // which we don't in all the properties we're interested in.
1077 throw new RuntimeException( " <$tag> appeared nested in <" . $this->ancestorStruct
1078 . "> where it is not allowed." );
1080 array_unshift( $this->mode
, $this->items
[$ns][$tag]['mode'] );
1081 array_unshift( $this->curItem
, $ns . ' ' . $tag );
1082 if ( $this->charContent
!== false ) {
1084 // Should not happen in valid XMP.
1085 throw new RuntimeException( "tag <$tag> nested in non-whitespace characters (" .
1086 $this->charContent
. ")." );
1089 array_unshift( $this->mode
, self
::MODE_IGNORE
);
1090 array_unshift( $this->curItem
, $elm );
1096 if ( $ns === self
::NS_RDF
&& $tag === 'Description' ) {
1097 $this->doAttribs( $attribs );
1098 array_unshift( $this->mode
, self
::MODE_STRUCT
);
1099 array_unshift( $this->curItem
, $this->curItem
[0] );
1104 * opening element in MODE_LI
1105 * process elements of arrays.
1108 * <exif:ISOSpeedRatings> <rdf:Seq> <rdf:li>64</rdf:li>
1109 * </rdf:Seq> </exif:ISOSpeedRatings>
1110 * This method is called when we hit the <rdf:li> element.
1112 * @param string $elm Namespace . ' ' . tagname
1113 * @param array $attribs Attributes. (needed for BAGSTRUCTS)
1114 * @throws RuntimeException If gets a tag other than <rdf:li>
1116 private function startElementModeLi( $elm, $attribs ) {
1117 if ( ( $elm ) !== self
::NS_RDF
. ' li' ) {
1118 throw new RuntimeException( "<rdf:li> expected but got $elm." );
1121 if ( !isset( $this->mode
[1] ) ) {
1122 // This should never ever ever happen. Checking for it
1124 throw new RuntimeException( 'In mode Li, but no 2xPrevious mode!' );
1127 if ( $this->mode
[1] === self
::MODE_BAGSTRUCT
) {
1128 // This list item contains a compound (STRUCT) value.
1129 array_unshift( $this->mode
, self
::MODE_STRUCT
);
1130 array_unshift( $this->curItem
, $elm );
1131 $this->processingArray
= true;
1133 if ( !isset( $this->curItem
[1] ) ) {
1135 throw new RuntimeException( 'Can not find parent of BAGSTRUCT.' );
1137 list( $curNS, $curTag ) = explode( ' ', $this->curItem
[1] );
1138 $this->ancestorStruct
= isset( $this->items
[$curNS][$curTag]['map_name'] )
1139 ?
$this->items
[$curNS][$curTag]['map_name'] : $curTag;
1141 $this->doAttribs( $attribs );
1143 // Normal BAG or SEQ containing simple values.
1144 array_unshift( $this->mode
, self
::MODE_SIMPLE
);
1145 // need to add curItem[0] on again since one is for the specific item
1146 // and one is for the entire group.
1147 array_unshift( $this->curItem
, $this->curItem
[0] );
1148 $this->processingArray
= true;
1153 * Opening element in MODE_LI_LANG.
1154 * process elements of language alternatives
1157 * <dc:title> <rdf:Alt> <rdf:li xml:lang="x-default">My house
1158 * </rdf:li> </rdf:Alt> </dc:title>
1160 * This method is called when we hit the <rdf:li> element.
1162 * @param string $elm Namespace . ' ' . tag
1163 * @param array $attribs Array of elements (most importantly xml:lang)
1164 * @throws RuntimeException If gets a tag other than <rdf:li> or if no xml:lang
1166 private function startElementModeLiLang( $elm, $attribs ) {
1167 if ( $elm !== self
::NS_RDF
. ' li' ) {
1168 throw new RuntimeException( __METHOD__
. " <rdf:li> expected but got $elm." );
1170 if ( !isset( $attribs[self
::NS_XML
. ' lang'] )
1171 ||
!preg_match( '/^[-A-Za-z0-9]{2,}$/D', $attribs[self
::NS_XML
. ' lang'] )
1173 throw new RuntimeException( __METHOD__
1174 . " <rdf:li> did not contain, or has invalid xml:lang attribute in lang alternative" );
1177 // Lang is case-insensitive.
1178 $this->itemLang
= strtolower( $attribs[self
::NS_XML
. ' lang'] );
1180 // need to add curItem[0] on again since one is for the specific item
1181 // and one is for the entire group.
1182 array_unshift( $this->curItem
, $this->curItem
[0] );
1183 array_unshift( $this->mode
, self
::MODE_SIMPLE
);
1184 $this->processingArray
= true;
1188 * Hits an opening element.
1189 * Generally just calls a helper based on what MODE we're in.
1190 * Also does some initial set up for the wrapper element
1192 * @param XMLParser $parser
1193 * @param string $elm Namespace "<space>" element
1194 * @param array $attribs Attribute name => value
1195 * @throws RuntimeException
1197 function startElement( $parser, $elm, $attribs ) {
1199 if ( $elm === self
::NS_RDF
. ' RDF'
1200 ||
$elm === 'adobe:ns:meta/ xmpmeta'
1201 ||
$elm === 'adobe:ns:meta/ xapmeta'
1205 } elseif ( $elm === self
::NS_RDF
. ' Description' ) {
1206 if ( count( $this->mode
) === 0 ) {
1208 array_unshift( $this->mode
, self
::MODE_INITIAL
);
1210 } elseif ( $elm === self
::NS_RDF
. ' type' ) {
1211 // This doesn't support rdf:type properly.
1212 // In practise I have yet to see a file that
1213 // uses this element, however it is mentioned
1214 // on page 25 of part 1 of the xmp standard.
1215 // Also it seems as if exiv2 and exiftool do not support
1216 // this either (That or I misunderstand the standard)
1217 $this->logger
->info( __METHOD__
. ' Encountered <rdf:type> which isn\'t currently supported' );
1220 if ( strpos( $elm, ' ' ) === false ) {
1221 // This probably shouldn't happen.
1222 $this->logger
->info( __METHOD__
. " Encountered <$elm> which has no namespace. Skipping." );
1227 list( $ns, $tag ) = explode( ' ', $elm, 2 );
1229 if ( count( $this->mode
) === 0 ) {
1230 // This should not happen.
1231 throw new RuntimeException( 'Error extracting XMP, '
1232 . "encountered <$elm> with no mode" );
1235 switch ( $this->mode
[0] ) {
1236 case self
::MODE_IGNORE
:
1237 $this->startElementModeIgnore( $elm );
1239 case self
::MODE_SIMPLE
:
1240 $this->startElementModeSimple( $elm, $attribs );
1242 case self
::MODE_INITIAL
:
1243 $this->startElementModeInitial( $ns, $tag, $attribs );
1245 case self
::MODE_STRUCT
:
1246 $this->startElementModeStruct( $ns, $tag, $attribs );
1248 case self
::MODE_BAG
:
1249 case self
::MODE_BAGSTRUCT
:
1250 $this->startElementModeBag( $elm );
1252 case self
::MODE_SEQ
:
1253 $this->startElementModeSeq( $elm );
1255 case self
::MODE_LANG
:
1256 $this->startElementModeLang( $elm );
1258 case self
::MODE_LI_LANG
:
1259 $this->startElementModeLiLang( $elm, $attribs );
1262 $this->startElementModeLi( $elm, $attribs );
1264 case self
::MODE_QDESC
:
1265 $this->startElementModeQDesc( $elm );
1268 throw new RuntimeException( 'StartElement in unknown mode: ' . $this->mode
[0] );
1272 // @codingStandardsIgnoreStart Generic.Files.LineLength
1274 * Process attributes.
1275 * Simple values can be stored as either a tag or attribute
1277 * Often the initial "<rdf:Description>" tag just has all the simple
1278 * properties as attributes.
1282 * <rdf:Description rdf:about="" xmlns:exif="http://ns.adobe.com/exif/1.0/" exif:DigitalZoomRatio="0/10">
1285 * @param array $attribs Array attribute=>value
1286 * @throws RuntimeException
1288 // @codingStandardsIgnoreEnd
1289 private function doAttribs( $attribs ) {
1290 // first check for rdf:parseType attribute, as that can change
1291 // how the attributes are interperted.
1293 if ( isset( $attribs[self
::NS_RDF
. ' parseType'] )
1294 && $attribs[self
::NS_RDF
. ' parseType'] === 'Resource'
1295 && $this->mode
[0] === self
::MODE_SIMPLE
1297 // this is equivalent to having an inner rdf:Description
1298 $this->mode
[0] = self
::MODE_QDESC
;
1300 foreach ( $attribs as $name => $val ) {
1301 if ( strpos( $name, ' ' ) === false ) {
1302 // This shouldn't happen, but so far some old software forgets namespace
1304 $this->logger
->info( __METHOD__
. ' Encountered non-namespaced attribute: '
1305 . " $name=\"$val\". Skipping. " );
1308 list( $ns, $tag ) = explode( ' ', $name, 2 );
1309 if ( $ns === self
::NS_RDF
) {
1310 if ( $tag === 'value' ||
$tag === 'resource' ) {
1311 // resource is for url.
1312 // value attribute is a weird way of just putting the contents.
1313 $this->char( $this->xmlParser
, $val );
1315 } elseif ( isset( $this->items
[$ns][$tag] ) ) {
1316 if ( $this->mode
[0] === self
::MODE_SIMPLE
) {
1317 throw new RuntimeException( __METHOD__
1318 . " $ns:$tag found as attribute where not allowed" );
1320 $this->saveValue( $ns, $tag, $val );
1322 $this->logger
->debug( __METHOD__
. " Ignoring unrecognized element <$ns:$tag>." );
1328 * Given an extracted value, save it to results array
1330 * note also uses $this->ancestorStruct and
1331 * $this->processingArray to determine what name to
1332 * save the value under. (in addition to $tag).
1334 * @param string $ns Namespace of tag this is for
1335 * @param string $tag Tag name
1336 * @param string $val Value to save
1338 private function saveValue( $ns, $tag, $val ) {
1340 $info =& $this->items
[$ns][$tag];
1341 $finalName = isset( $info['map_name'] )
1342 ?
$info['map_name'] : $tag;
1343 if ( isset( $info['validate'] ) ) {
1344 if ( is_array( $info['validate'] ) ) {
1345 $validate = $info['validate'];
1347 $validator = new XMPValidate( $this->logger
);
1348 $validate = array( $validator, $info['validate'] );
1351 if ( is_callable( $validate ) ) {
1352 call_user_func_array( $validate, array( $info, &$val, true ) );
1353 // the reasoning behind using &$val instead of using the return value
1354 // is to be consistent between here and validating structures.
1355 if ( is_null( $val ) ) {
1356 $this->logger
->info( __METHOD__
. " <$ns:$tag> failed validation." );
1361 $this->logger
->warning( __METHOD__
. " Validation function for $finalName ("
1362 . $validate[0] . '::' . $validate[1] . '()) is not callable.' );
1366 if ( $this->ancestorStruct
&& $this->processingArray
) {
1367 // Aka both an array and a struct. ( self::MODE_BAGSTRUCT )
1368 $this->results
['xmp-' . $info['map_group']][$this->ancestorStruct
][][$finalName] = $val;
1369 } elseif ( $this->ancestorStruct
) {
1370 $this->results
['xmp-' . $info['map_group']][$this->ancestorStruct
][$finalName] = $val;
1371 } elseif ( $this->processingArray
) {
1372 if ( $this->itemLang
=== false ) {
1374 $this->results
['xmp-' . $info['map_group']][$finalName][] = $val;
1377 $this->results
['xmp-' . $info['map_group']][$finalName][$this->itemLang
] = $val;
1380 $this->results
['xmp-' . $info['map_group']][$finalName] = $val;