Sha256: 540f7c97255cfb293ed67433179360c8c92cc02bef2ee87db558c09f87a5e6b6
Contents?: true
Size: 1.61 KB
Versions: 2
Compression:
Stored size: 1.61 KB
Contents
require 'rapuncel' require 'kangaroo/util/database' require 'kangaroo/util/proxy' module Kangaroo module Util class Client < Rapuncel::Client SERVICES = %w(db common object wizard report).freeze # Initialize a Kangaroo XMLRPC Client # # @param [Hash] configuration configuration Hash # @option configuration [String] 'host' Hostname or IP address # @option configuration [String, Number] 'port' Port def initialize configuration super configuration.merge(:raise_on => :both) end # @private def clone super.tap do |c| c.connection = connection.clone end end SERVICES.each do |name| class_eval <<-RUBY def #{name}_service @#{name}_service ||= clone.tap do |c| c.connection.path = '/xmlrpc/#{name}' end end RUBY end # Access the {Kangaroo::Util::Proxy::Superadmin Superadmin Proxy} # # @param [String] super_password Superadmin password # @return [Kangaroo::Util::Proxy::Superadmin] Superadmin proxy def superadmin super_password Proxy::Superadmin.new db_service, super_password end # Access the {Kangaroo::Util::Proxy::Common Common Proxy} # # @return [Kangaroo::Util::Proxy::Common] Common proxy def common @common_proxy ||= Proxy::Common.new common_service end # Access the {Kangaroo::Util::Proxy::Db Db Proxy} # # @return [Kangaroo::Util::Proxy::Db] Db proxy def db @db_proxy ||= Proxy::Db.new db_service end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
kangaroo-0.0.1.pre2 | lib/kangaroo/util/client.rb |
kangaroo-0.0.1.pre | lib/kangaroo/util/client.rb |