require 'nokogiri' require 'avm/node' module AVM class XMP PREFIXES = { 'dc' => 'Dublin Core', 'Iptc4xmpCore' => 'IPTC', 'photoshop' => 'Photoshop', 'avm' => 'AVM' } REQUIRED_NAMESPACES = { :x => "adobe:ns:meta/", :rdf => "http://www.w3.org/1999/02/22-rdf-syntax-ns#", :dc => "http://purl.org/dc/elements/1.1/", :photoshop => "http://ns.adobe.com/photoshop/1.0/", :avm => "http://www.communicatingastronomy.org/avm/1.0/", :Iptc4xmpCore => "http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/" } attr_reader :doc def initialize(doc = nil) @doc = doc || empty_xml_doc ensure_namespaces! ensure_descriptions_findable! end def get_refs yield Hash[[ :dublin_core, :iptc, :photoshop, :avm ].collect { |key| [ key, send(key) ] }] end def self.from_string(string) new(Nokogiri::XML(string)) end def ensure_xmlns(string) string.gsub(%r{([') end PREFIXES.each do |prefix, about| if !added.include?(prefix) at_xpath('//rdf:RDF').add_child(self % %{}) end end end def dublin_core at_rdf_description "Dublin Core" end def iptc at_rdf_description "IPTC" end def avm at_rdf_description "AVM" end def photoshop at_rdf_description "Photoshop" end def at_rdf_description(about) AVM::Node.new(self, at_xpath(%{//rdf:Description[@rdf:about="#{about}"]})) end def empty_xml_doc Nokogiri::XML(<<-XML) XML end end end