From: khoff Date: Wed, 2 Mar 2005 21:00:59 +0000 (+0000) Subject: Initial version of the xmlrpc interface for freeside. X-Git-Tag: BEFORE_FINAL_MASONIZE~688 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=d9649d434ba0955cd079d70e885b9f33f5ad85b5 Initial version of the xmlrpc interface for freeside. --- diff --git a/FS/FS/XMLRPC.pm b/FS/FS/XMLRPC.pm new file mode 100644 index 000000000..c7f2d734e --- /dev/null +++ b/FS/FS/XMLRPC.pm @@ -0,0 +1,134 @@ +package FS::XMLRPC; + +use strict; +use vars qw( @ISA $DEBUG ); +use Frontier::RPC2; +use FS::Record qw( qsearch qsearchs ); +use FS::cust_main qw( smart_search ); + +@ISA = qw( ); + +$DEBUG = 1; + +=head1 NAME + +FS::XMLRPC - Object methods for handling XMLRPC requests + +=head1 SYNOPSIS + + use FS::XMLRPC; + + $xmlrpc = new FS::XMLRPC; + + ($error, $response_xml) = $xmlrpc->serve($request_xml); + +=head1 DESCRIPTION + +The FS::XMLRPC object is a mechanisim to access read-only data from freeside's subroutines. It does not, at least not at this point, give you the ability to access methods of freeside objects remotely. It can, however, be used to call subroutines such as FS::cust_main::smart_search and FS::Record::qsearch. + +See the serve method below for calling syntax. + +=head1 METHODS + +=over 4 + +=item new + +Provides a FS::XMLRPC object used to handle incoming XMLRPC requests. + +=cut + +sub new { + + my $class = shift; + my $self = {}; + bless($self, $class); + + $self->{_coder} = new Frontier::RPC2; + + return $self; + +} + +=item serve REQUEST_XML_SCALAR + +The serve method takes a scalar containg an XMLRPC request for one of freeside's subroutines (not object methods). Parameters passed in the 'methodCall' will be passed as a list to the subroutine untouched. The return value of the called subroutine _must_ be a freeside object reference (eg. qsearchs) or a list of freeside object references (eg. qsearch, smart_search), _and_, the object(s) returned must support the hashref method. This will be checked first by calling UNIVERSAL::can('FS::class::subroutine', 'hashref'). + +Return value is an XMLRPC methodResponse containing the results of the call. The result of the subroutine call itself will be coded in the methodResponse as an array of structs, regardless of whether there was many or a single object returned. In other words, after you decode the response, you'll always have an array. + +=cut + +sub serve { + + my ($self, $request_xml) = (shift, shift); + my $response_xml; + + my $coder = $self->{_coder}; + my $call = $coder->decode($request_xml); + + warn "Got methodCall with method_name='" . $call->{method_name} . "'" + if $DEBUG; + + $response_xml = $coder->encode_response(&_serve($call->{method_name}, $call->{value})); + + return ('', $response_xml); + +} + +sub _serve { #Subroutine, not method + + my ($method_name, $params) = (shift, shift); + + use Data::Dumper; + + #die 'Called _serve without parameters' unless ref($params) eq 'ARRAY'; + $params = [] unless (ref($params) eq 'ARRAY'); + + my ($class, $sub) = split(/\./, $method_name); + my $fssub = "FS::${class}::${sub}"; + warn "fssub: ${fssub}" if $DEBUG; + warn "params: " . Dumper($params) if $DEBUG; + + unless (UNIVERSAL::can("FS::${class}", $sub)) { + warn "FS::XMLRPC: Can't call undefined subroutine '${fssub}'"; + # Should we encode an error in the response, + # or just break silently to the remote caller and complain locally? + return []; + } + + my @result; + eval { + no strict 'refs'; + my $fssub = "FS::${class}::${sub}"; + @result = (&$fssub(@$params)); + }; + + if ($@) { + warn "FS::XMLRPC: Error while calling '${fssub}': $@"; + return []; + } + + warn Dumper(@result); + + if (grep { UNIVERSAL::can($_, 'hashref') ? 0 : 1 } @result) { + warn "FS::XMLRPC: One or more objects returned from '${fssub}' doesn't " . + "support the 'hashref' method."; + return []; + } else { + return [ map { $_->hashref } @result ]; + } + +} + +=head1 BUGS + +Probably lots. + +=head1 SEE ALSO + +L. + +=cut + +1; + diff --git a/eg/xmlrpc-example.pl b/eg/xmlrpc-example.pl new file mode 100755 index 000000000..7a2a0a6f0 --- /dev/null +++ b/eg/xmlrpc-example.pl @@ -0,0 +1,23 @@ +#!/usr/bin/perl + +use strict; +use Frontier::Client; +use Data::Dumper; + +my $server = new Frontier::Client ( + url => 'http://user:pass@freesidehost/misc/xmlrpc.cgi', +); + +#my $method = 'cust_main.smart_search'; +#my @args = (search => '1'); + +my $method = 'Record.qsearch'; +my @args = (cust_main => { }); + +my $result = $server->call($method, @args); + +if (ref($result) eq 'ARRAY') { + print "Result:\n"; + print Dumper(@$result); +} + diff --git a/htetc/handler.pl b/htetc/handler.pl index 934b41967..f115104b1 100644 --- a/htetc/handler.pl +++ b/htetc/handler.pl @@ -160,6 +160,7 @@ sub handler use FS::rate; use FS::rate_region; use FS::rate_prefix; + use FS::XMLRPC; if ( %%%RT_ENABLED%%% ) { eval ' diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index e77714729..1632fb38d 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -61,6 +61,7 @@ Before installing, you need:
  • Chart
  • Crypt::PasswdMD5
  • JavaScript::RPC (JavaScript::RPC::Server::CGI) +
  • Frontier::RPC
  • Apache::DBI (optional but recommended for better webinterface performance) diff --git a/httemplate/misc/xmlrpc.cgi b/httemplate/misc/xmlrpc.cgi new file mode 100644 index 000000000..53ef8fb80 --- /dev/null +++ b/httemplate/misc/xmlrpc.cgi @@ -0,0 +1,17 @@ +<% + + my $request_xml = $cgi->param('POSTDATA'); + + #$r->log_error($request_xml); + + my $fsxmlrpc = new FS::XMLRPC; + my ($error, $response_xml) = $fsxmlrpc->serve($request_xml); + + #$r->log_error($error) if $error; + + http_header('Content-Type' => 'text/xml', + 'Content-Length' => length($response_xml)); + + print $response_xml; + +%>