0

我正在开发一个使用构建器模板生成大型 XML 文档的 ruby​​ on rails 应用程序,但我遇到了一个绊脚石。

XML 输出必须有一个包含文件大小(以字节为单位)的字段。我认为我基本上需要使用在 http 响应中填充“Content-Length”标头的值,但是更新标签的值显然会改变文件大小。

输出应如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<dataset>
  <metadata>
    <filesize>FILESIZE</filesize>
    <filename>FILENAME.xml</filename>
  </metadata>
    <data>
    .
    .
    .
    </data>
</dataset>

是否可以使用构建器模板在 XML 标记中添加文件大小?如果没有,是否有一些方法可以用来实现所需的结果?

4

1 回答 1

0

感谢加勒特,我能够提出以下(丑陋的)解决方案,它肯定需要改进,但它确实有效:

class XmlMetaInjector
  require 'nokogiri'

  def initialize(app)  
    @app = app  
  end  

  def call(env)  
    status, headers, response = @app.call(env)  
    if headers['Content-Type'].include? 'application/xml'
      content_length = headers['Content-Length'].to_i # find the original content length

      doc = Nokogiri::XML(response.body)
      doc.xpath('/xmlns:path/xmlns:to/xmlns:node', 'xmlns' => 'http://namespace.com/').each do |node|
         # ugly method to determine content_length; if this happens more than once we're in trouble
        content_length = content_length + (content_length.to_s.length - node.content.length)
        node.content = content_length
      end

      # update the header to reflect the new content length
      headers['Content-Length'] = content_length.to_s

      [status, headers, doc.to_xml]  
    else  
      [status, headers, response]  
    end 
  end # call(env)
end
于 2010-09-30T23:35:30.667 回答