Rails Builder :: XmlMarkup for Web Service - Repetitive Section

时间:2010-10-13 14:45:27

标签: ruby-on-rails xml dry xml-builder

我正在使用Builder构建发送到WebService的XML消息。每种不同的方法都需要不同的xml,但它们都有一组公共元素来启动请求(主要是帐户认证的东西)。有没有办法以干燥的方式做到这一点?这是我构建更改密码短语请求的代码:

# XML REQUEST SETUP
msg = Builder::XmlMarkup.new(:indent=>2)
query = {}
test_hsh = self.testmode ? {:Test => "YES"} : {}

# BUILD THE REQUEST
query[:changePassPhraseRequestXML] = msg.ChangePassPhraseRequest(test_hsh) do |asr|
  asr.RequesterID APP_CONFIG[:endicia_partner_id].to_s
  asr.RequestID "1"
  asr.CertifiedIntermediary do |ci|
    ci.AccountID APP_CONFIG[:endicia_account_number].to_s
    ci.PassPhrase APP_CONFIG[:endicia_passphrase].to_s
  end
  asr.NewPassPhrase APP_CONFIG[:passphrase].to_s
end

基本上除了NewPassPhrase之外的所有元素对所有(或大多数)请求都是通用的。现在我一遍又一遍地复制相同的代码,但我根本不喜欢这个。

关于干涸的任何想法?

1 个答案:

答案 0 :(得分:0)

我发布这个。我有一个想法,把第一组放入他们自己的方法。杜!

def account_status(options = {})
  # XML REQUEST SETUP
  msg = Builder::XmlMarkup.new(:indent=>2)
  query = {}
  test_hsh = self.testmode ? {:Test => "YES"} : {}

  # BUILD THE REQUEST
  query[:changePassPhraseRequestXML] = msg.ChangePassPhraseRequest(test_hsh) do |asr|
    self.add_authentication_elements(asr)
    asr.NewPassPhrase APP_CONFIG[:new_pass_phrase].to_s
  end
end

def add_authentication_elements(parent_node)
  parent_node.RequesterID self.endicia_partner_id.to_s
  parent_node.RequestID "1"
  parent_node.CertifiedIntermediary do |ci|
    ci.AccountID self.endicia_account_number.to_s
    ci.PassPhrase self.endicia_passphrase.to_s
  end
end

效果很好!另一种选择当然是以某种方式扩展Builder,但这很简单。