mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
29c5ab0b77
#nnn is a ticket number at http://dev.ctor.org/soap4r * SOAP * allow to configure an envelope namespace of SOAP request. (#124) TemporaryNamespace = 'http://www.w3.org/2003/05/soap-envelope' @client.options["soap.envelope.requestnamespace"] = TemporaryNamespace @client.options["soap.envelope.responsenamespace"] = TemporaryNamespace @client.do_proc(...) * let SOAP request XML indent space configuable. see "soap.envelope.no_indent" option. (#130) * let external CES configuable. ex. client["soap.mapping.external_ces"] = 'SJIS'. $KCODE is used by default. (#133) external CES ::= CES used in Ruby object of client and server internal CES ::= CES used in SOAP/OM * add iso-8859-1 external CES support. (#106) * fixed illegal 'qualified' handling of elements. it caused ASP.NET inteoperability problem. (#144) * added 'soap.envelope.use_numeric_character_reference' (boolean) option to let query XML use numeric character reference in XML, not plain UTF-8 character. !GoogleSearch server seems to not allow plain UTF-8 character since 2005-08-15 update. (#147) * SOAP::Header::SimpleHeader (de)serialization throws an exception on !SimpleHeader.on_(in|out)bound when header is a String. so we could not use a simple single element headerItem. fixed. thanks to emil. (#129) * out parameter of rpc operation did not work. (#132) * follow HTTP redirect only if using http-access2. (#125) (#145) * add a workaround for importing an WSDL whose path begins with drive letter. (#115) * WSDL * SOAP Data which is defined as a simpletype was not mapped correctly to Ruby obj when using wsdl2ruby.rb generated classdef file. (#123) * rpc/literal support. (#118) * re-implemented local element qualify/unqualify control. handles elementFormDefault and form in WSDL. (#119) * Array of an element which has simpleType causes a crash. (#128) * prarmeterOrder may not contain return part so it can be shorter than parts size. Thanks to Hugh. (#139) * Samples * added !BasicAuth client sample. (#117) * added Base64 client/server sample. * added Flickr SOAP interface client sample. (#122) * added !SalesForce client sample. (#135) * updated Thawte CA certificate for !GoogleAdWords sample. * updated a client script with the newer version made by Johan. thanks! * shortened long file names. (#120) * fixed typo in authheader sample. (#129) * updated deprecated method usage. (#138) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9169 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
355 lines
8.8 KiB
Ruby
355 lines
8.8 KiB
Ruby
# SOAP4R - Mapping factory.
|
|
# Copyright (C) 2000, 2001, 2002, 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>.
|
|
|
|
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can
|
|
# redistribute it and/or modify it under the same terms of Ruby's license;
|
|
# either the dual license version in 2003, or any later version.
|
|
|
|
|
|
module SOAP
|
|
module Mapping
|
|
|
|
|
|
class Factory
|
|
include TraverseSupport
|
|
|
|
def initialize
|
|
# nothing to do
|
|
end
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
raise NotImplementError.new
|
|
# return soap_obj
|
|
end
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
raise NotImplementError.new
|
|
# return convert_succeeded_or_not, obj
|
|
end
|
|
|
|
def setiv2obj(obj, node, map)
|
|
return if node.nil?
|
|
if obj.is_a?(Array)
|
|
setiv2ary(obj, node, map)
|
|
else
|
|
setiv2struct(obj, node, map)
|
|
end
|
|
end
|
|
|
|
def setiv2soap(node, obj, map)
|
|
if obj.class.class_variables.include?('@@schema_element')
|
|
obj.class.class_eval('@@schema_element').each do |name, info|
|
|
type, qname = info
|
|
if qname
|
|
elename = qname.name
|
|
else
|
|
elename = Mapping.name2elename(name)
|
|
end
|
|
node.add(elename,
|
|
Mapping._obj2soap(obj.instance_variable_get('@' + name), map))
|
|
end
|
|
else
|
|
# should we sort instance_variables?
|
|
obj.instance_variables.each do |var|
|
|
name = var.sub(/^@/, '')
|
|
elename = Mapping.name2elename(name)
|
|
node.add(elename,
|
|
Mapping._obj2soap(obj.instance_variable_get(var), map))
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def setiv2ary(obj, node, map)
|
|
node.each do |name, value|
|
|
Array.instance_method(:<<).bind(obj).call(Mapping._soap2obj(value, map))
|
|
end
|
|
end
|
|
|
|
def setiv2struct(obj, node, map)
|
|
vars = {}
|
|
node.each do |name, value|
|
|
vars[Mapping.elename2name(name)] = Mapping._soap2obj(value, map)
|
|
end
|
|
Mapping.set_attributes(obj, vars)
|
|
end
|
|
end
|
|
|
|
class StringFactory_ < Factory
|
|
def initialize(allow_original_mapping = false)
|
|
super()
|
|
@allow_original_mapping = allow_original_mapping
|
|
end
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
return nil
|
|
end
|
|
begin
|
|
unless XSD::Charset.is_ces(obj, Thread.current[:SOAPExternalCES])
|
|
return nil
|
|
end
|
|
encoded = XSD::Charset.encoding_conv(obj,
|
|
Thread.current[:SOAPExternalCES], XSD::Charset.encoding)
|
|
soap_obj = soap_class.new(encoded)
|
|
rescue XSD::ValueSpaceError
|
|
return nil
|
|
end
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
soap_obj
|
|
end
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
obj = Mapping.create_empty_object(obj_class)
|
|
decoded = XSD::Charset.encoding_conv(node.data, XSD::Charset.encoding,
|
|
Thread.current[:SOAPExternalCES])
|
|
obj.replace(decoded)
|
|
mark_unmarshalled_obj(node, obj)
|
|
return true, obj
|
|
end
|
|
end
|
|
|
|
class BasetypeFactory_ < Factory
|
|
def initialize(allow_original_mapping = false)
|
|
super()
|
|
@allow_original_mapping = allow_original_mapping
|
|
end
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
return nil
|
|
end
|
|
soap_obj = nil
|
|
begin
|
|
soap_obj = soap_class.new(obj)
|
|
rescue XSD::ValueSpaceError
|
|
return nil
|
|
end
|
|
if @allow_original_mapping
|
|
# Basetype except String should not be multiref-ed in SOAP/1.1.
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
end
|
|
soap_obj
|
|
end
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
obj = node.data
|
|
mark_unmarshalled_obj(node, obj)
|
|
return true, obj
|
|
end
|
|
end
|
|
|
|
class DateTimeFactory_ < Factory
|
|
def initialize(allow_original_mapping = false)
|
|
super()
|
|
@allow_original_mapping = allow_original_mapping
|
|
end
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
if !@allow_original_mapping and
|
|
Time === obj and !obj.instance_variables.empty?
|
|
return nil
|
|
end
|
|
soap_obj = nil
|
|
begin
|
|
soap_obj = soap_class.new(obj)
|
|
rescue XSD::ValueSpaceError
|
|
return nil
|
|
end
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
soap_obj
|
|
end
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
if node.respond_to?(:to_obj)
|
|
obj = node.to_obj(obj_class)
|
|
return false if obj.nil?
|
|
mark_unmarshalled_obj(node, obj)
|
|
return true, obj
|
|
else
|
|
return false
|
|
end
|
|
end
|
|
end
|
|
|
|
class Base64Factory_ < Factory
|
|
def obj2soap(soap_class, obj, info, map)
|
|
return nil unless obj.instance_variables.empty?
|
|
soap_obj = soap_class.new(obj)
|
|
mark_marshalled_obj(obj, soap_obj) if soap_obj
|
|
soap_obj
|
|
end
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
obj = node.string
|
|
mark_unmarshalled_obj(node, obj)
|
|
return true, obj
|
|
end
|
|
end
|
|
|
|
class URIFactory_ < Factory
|
|
def obj2soap(soap_class, obj, info, map)
|
|
soap_obj = soap_class.new(obj)
|
|
mark_marshalled_obj(obj, soap_obj) if soap_obj
|
|
soap_obj
|
|
end
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
obj = node.data
|
|
mark_unmarshalled_obj(node, obj)
|
|
return true, obj
|
|
end
|
|
end
|
|
|
|
class ArrayFactory_ < Factory
|
|
def initialize(allow_original_mapping = false)
|
|
super()
|
|
@allow_original_mapping = allow_original_mapping
|
|
end
|
|
|
|
# [[1], [2]] is converted to Array of Array, not 2-D Array.
|
|
# To create M-D Array, you must call Mapping.ary2md.
|
|
def obj2soap(soap_class, obj, info, map)
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
return nil
|
|
end
|
|
arytype = Mapping.obj2element(obj)
|
|
if arytype.name
|
|
arytype.namespace ||= RubyTypeNamespace
|
|
else
|
|
arytype = XSD::AnyTypeName
|
|
end
|
|
soap_obj = SOAPArray.new(ValueArrayName, 1, arytype)
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
obj.each do |item|
|
|
soap_obj.add(Mapping._obj2soap(item, map))
|
|
end
|
|
soap_obj
|
|
end
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
obj = Mapping.create_empty_object(obj_class)
|
|
mark_unmarshalled_obj(node, obj)
|
|
node.soap2array(obj) do |elem|
|
|
elem ? Mapping._soap2obj(elem, map) : nil
|
|
end
|
|
return true, obj
|
|
end
|
|
end
|
|
|
|
class TypedArrayFactory_ < Factory
|
|
def initialize(allow_original_mapping = false)
|
|
super()
|
|
@allow_original_mapping = allow_original_mapping
|
|
end
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
return nil
|
|
end
|
|
arytype = info[:type] || info[0]
|
|
soap_obj = SOAPArray.new(ValueArrayName, 1, arytype)
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
obj.each do |var|
|
|
soap_obj.add(Mapping._obj2soap(var, map))
|
|
end
|
|
soap_obj
|
|
end
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
if node.rank > 1
|
|
return false
|
|
end
|
|
arytype = info[:type] || info[0]
|
|
unless node.arytype == arytype
|
|
return false
|
|
end
|
|
obj = Mapping.create_empty_object(obj_class)
|
|
mark_unmarshalled_obj(node, obj)
|
|
node.soap2array(obj) do |elem|
|
|
elem ? Mapping._soap2obj(elem, map) : nil
|
|
end
|
|
return true, obj
|
|
end
|
|
end
|
|
|
|
class TypedStructFactory_ < Factory
|
|
def obj2soap(soap_class, obj, info, map)
|
|
type = info[:type] || info[0]
|
|
soap_obj = soap_class.new(type)
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
if obj.class <= SOAP::Marshallable
|
|
setiv2soap(soap_obj, obj, map)
|
|
else
|
|
setiv2soap(soap_obj, obj, map)
|
|
end
|
|
soap_obj
|
|
end
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
type = info[:type] || info[0]
|
|
unless node.type == type
|
|
return false
|
|
end
|
|
obj = Mapping.create_empty_object(obj_class)
|
|
mark_unmarshalled_obj(node, obj)
|
|
setiv2obj(obj, node, map)
|
|
return true, obj
|
|
end
|
|
end
|
|
|
|
MapQName = XSD::QName.new(ApacheSOAPTypeNamespace, 'Map')
|
|
class HashFactory_ < Factory
|
|
def initialize(allow_original_mapping = false)
|
|
super()
|
|
@allow_original_mapping = allow_original_mapping
|
|
end
|
|
|
|
def obj2soap(soap_class, obj, info, map)
|
|
if !@allow_original_mapping and !obj.instance_variables.empty?
|
|
return nil
|
|
end
|
|
if !obj.default.nil? or
|
|
(obj.respond_to?(:default_proc) and obj.default_proc)
|
|
return nil
|
|
end
|
|
soap_obj = SOAPStruct.new(MapQName)
|
|
mark_marshalled_obj(obj, soap_obj)
|
|
obj.each do |key, value|
|
|
elem = SOAPStruct.new
|
|
elem.add("key", Mapping._obj2soap(key, map))
|
|
elem.add("value", Mapping._obj2soap(value, map))
|
|
# ApacheAxis allows only 'item' here.
|
|
soap_obj.add("item", elem)
|
|
end
|
|
soap_obj
|
|
end
|
|
|
|
def soap2obj(obj_class, node, info, map)
|
|
unless node.type == MapQName
|
|
return false
|
|
end
|
|
if node.class == SOAPStruct and node.key?('default')
|
|
return false
|
|
end
|
|
obj = Mapping.create_empty_object(obj_class)
|
|
mark_unmarshalled_obj(node, obj)
|
|
if node.class == SOAPStruct
|
|
node.each do |key, value|
|
|
obj[Mapping._soap2obj(value['key'], map)] =
|
|
Mapping._soap2obj(value['value'], map)
|
|
end
|
|
else
|
|
node.each do |value|
|
|
obj[Mapping._soap2obj(value['key'], map)] =
|
|
Mapping._soap2obj(value['value'], map)
|
|
end
|
|
end
|
|
return true, obj
|
|
end
|
|
end
|
|
|
|
|
|
end
|
|
end
|