622f3df0599f0ea84f859dcc00278a6751f3a2ae
[freeside.git] / FS / FS / ClientAPI_XMLRPC.pm
1 package FS::ClientAPI_XMLRPC;
2
3 =head1 NAME
4
5 FS::ClientAPI_XMLRPC - Freeside XMLRPC accessible self-service API, on the backend
6
7 =head1 SYNOPSIS
8
9 This module implements the self-service API offered by xmlrpc.cgi and friends,
10 but on a backend machine.
11
12 =head1 DESCRIPTION
13
14 Use this API to implement your own client "self-service" module vi XMLRPC.
15
16 Each routine described in L<FS::SelfService> is available vi XMLRPC as the
17 method FS.SelfService.XMLRPC.B<method>.  All values are passed to the
18 selfservice-server in a struct of strings.  The return values are in a
19 struct as strings, arrays, or structs as appropriate for the values
20 described in L<FS::SelfService>.
21
22 =head1 BUGS
23
24 =head1 SEE ALSO
25
26 L<FS::SelfService::XMLRPC>, L<FS::SelfService>
27
28 =cut
29
30 use strict;
31
32 use vars qw($DEBUG $AUTOLOAD);
33 use Encode;
34 use FS::XMLRPC_Lite; #XMLRPC::Lite, for XMLRPC::Data
35 use FS::ClientAPI;
36
37 $DEBUG = 0;
38 $FS::ClientAPI::DEBUG = $DEBUG;
39
40 #false laziness w/FS::SelfService/XMLRPC.pm, same problem as below but worse
41 our %typefix_skin_info = (
42   'logo'              => 'base64',
43   'title_left_image'  => 'base64',
44   'title_right_image' => 'base64',
45   'menu_top_image'    => 'base64',
46   'menu_body_image'   => 'base64',
47   'menu_bottom_image' => 'base64',
48 );
49 our %typefix = (
50   'invoice_pdf'        => { 'invoice_pdf' => 'base64', },
51   'legacy_invoice_pdf' => { 'invoice_pdf' => 'base64', },
52   'skin_info'          => \%typefix_skin_info,
53   'login_info'         => \%typefix_skin_info,
54   'invoice_logo'       => { 'logo' => 'base64', },
55   'login_banner_image' => { 'image' => 'base64', },
56   'quotation_print'    => { 'document' => 'base64' },
57 );
58
59 sub AUTOLOAD {
60   my $call = $AUTOLOAD;
61   $call =~ s/^FS::(SelfService::|ClientAPI_)XMLRPC:://;
62
63   warn "FS::ClientAPI_XMLRPC::AUTOLOAD $call\n" if $DEBUG;
64
65   my $autoload = &ss2clientapi;
66
67   if (exists($autoload->{$call})) {
68
69     shift; #discard package name;
70
71
72     #$call = "FS::SelfService::$call";
73     #no strict 'refs';
74     #&{$call}(@_);
75     #FS::ClientAPI->dispatch($autoload->{$call}, @_);
76
77     my %hash = @_;
78     #XXX doesn't handle multi-level data structs
79     $hash{$_} = decode(utf8=>$hash{$_}) foreach keys %hash;
80
81     my $return = FS::ClientAPI->dispatch($autoload->{$call}, \%hash );
82
83     if ( exists($typefix{$call}) ) {
84       my $typefix = $typefix{$call};
85       foreach my $field ( grep exists($return->{$_}), keys %$typefix ) {
86         my $type = $typefix->{$field};
87         $return->{$field} = XMLRPC::Data->value($return->{$field})
88                                         ->type($type);
89       }
90     }
91
92     $return;
93
94   } else {
95     die "No such procedure: $call";
96   }
97 }
98
99 #terrible false laziness w/SelfService.pm
100 # - fix at build time, by including some file in both selfserv and backend libs?
101 # - or fix at runtime, by having selfservice client ask server for the list?
102 sub ss2clientapi {
103   {
104   'passwd'                    => 'passwd/passwd',
105   'chfn'                      => 'passwd/passwd',
106   'chsh'                      => 'passwd/passwd',
107   'login_info'                => 'MyAccount/login_info',
108   'login_banner_image'        => 'MyAccount/login_banner_image',
109   'login'                     => 'MyAccount/login',
110   'logout'                    => 'MyAccount/logout',
111   'switch_acct'               => 'MyAccount/switch_acct',
112   'switch_cust'               => 'MyAccount/switch_cust',
113   'customer_info'             => 'MyAccount/customer_info',
114   'customer_info_short'       => 'MyAccount/customer_info_short',
115
116   'contact_passwd'            => 'MyAccount/contact/contact_passwd',
117   'list_contacts'             => 'MyAccount/contact/list_contacts',
118   'edit_contact'              => 'MyAccount/contact/edit_contact',
119   'delete_contact'            => 'MyAccount/contact/delete_contact',
120   'new_contact'               => 'MyAccount/contact/new_contact',
121
122   'billing_history'           => 'MyAccount/billing_history',
123   'edit_info'                 => 'MyAccount/edit_info',     #add to ss cgi!
124   'invoice'                   => 'MyAccount/invoice',
125   'invoice_pdf'               => 'MyAccount/invoice_pdf',
126   'legacy_invoice'            => 'MyAccount/legacy_invoice',
127   'legacy_invoice_pdf'        => 'MyAccount/legacy_invoice_pdf',
128   'invoice_logo'              => 'MyAccount/invoice_logo',
129   'list_invoices'             => 'MyAccount/list_invoices', #?
130   'list_payby'                => 'MyAccount/list_payby',
131   'insert_payby'              => 'MyAccount/insert_payby',
132   'delete_payby'              => 'MyAccount/delete_payby',
133   'cancel'                    => 'MyAccount/cancel',        #add to ss cgi!
134   'payment_info'              => 'MyAccount/payment_info',
135   'payment_info_renew_info'   => 'MyAccount/payment_info_renew_info',
136   'process_payment'           => 'MyAccount/process_payment',
137   'store_payment'             => 'MyAccount/store_payment',
138   'process_stored_payment'    => 'MyAccount/process_stored_payment',
139   'process_payment_order_pkg' => 'MyAccount/process_payment_order_pkg',
140   'process_payment_change_pkg' => 'MyAccount/process_payment_change_pkg',
141   'process_payment_order_renew' => 'MyAccount/process_payment_order_renew',
142   'process_prepay'            => 'MyAccount/process_prepay',
143   'start_thirdparty'          => 'MyAccount/start_thirdparty',
144   'finish_thirdparty'         => 'MyAccount/finish_thirdparty',
145   'realtime_collect'          => 'MyAccount/realtime_collect',
146   'list_pkgs'                 => 'MyAccount/list_pkgs',     #add to ss (added?)
147   'list_svcs'                 => 'MyAccount/list_svcs',     #add to ss (added?)
148   'list_svc_usage'            => 'MyAccount/list_svc_usage',   
149   'svc_status_html'           => 'MyAccount/svc_status_html',
150   'svc_status_hash'           => 'MyAccount/svc_status_hash',
151   'set_svc_status_hash'       => 'MyAccount/set_svc_status_hash',
152   'set_svc_status_listadd'    => 'MyAccount/set_svc_status_listadd',
153   'set_svc_status_listdel'    => 'MyAccount/set_svc_status_listdel',
154   'set_svc_status_vacationadd'=> 'MyAccount/set_svc_status_vacationadd',
155   'set_svc_status_vacationdel'=> 'MyAccount/set_svc_status_vacationdel',
156   'acct_forward_info'         => 'MyAccount/acct_forward_info',
157   'process_acct_forward'      => 'MyAccount/process_acct_forward',
158   'list_dsl_devices'          => 'MyAccount/list_dsl_devices',   
159   'add_dsl_device'            => 'MyAccount/add_dsl_device',   
160   'delete_dsl_device'         => 'MyAccount/delete_dsl_device',   
161   'port_graph'                => 'MyAccount/port_graph',   
162   'list_cdr_usage'            => 'MyAccount/list_cdr_usage',   
163   'list_support_usage'        => 'MyAccount/list_support_usage',   
164   'order_pkg'                 => 'MyAccount/order_pkg',     #add to ss cgi!
165   'change_pkg'                => 'MyAccount/change_pkg', 
166   'order_recharge'            => 'MyAccount/order_recharge',
167   'renew_info'                => 'MyAccount/renew_info',
168   'order_renew'               => 'MyAccount/order_renew',
169   'cancel_pkg'                => 'MyAccount/cancel_pkg',    #add to ss cgi!
170   'suspend_pkg'               => 'MyAccount/suspend_pkg',   #add to ss cgi!
171   'charge'                    => 'MyAccount/charge',        #?
172   'part_svc_info'             => 'MyAccount/part_svc_info',
173   'provision_acct'            => 'MyAccount/provision_acct',
174   'provision_phone'           => 'MyAccount/provision_phone',
175   'provision_pbx'             => 'MyAccount/provision_pbx',
176   'provision_external'        => 'MyAccount/provision_external',
177   'unprovision_svc'           => 'MyAccount/unprovision_svc',
178   'myaccount_passwd'          => 'MyAccount/myaccount_passwd',
179   'reset_passwd'              => 'MyAccount/reset_passwd',
180   'check_reset_passwd'        => 'MyAccount/check_reset_passwd',
181   'process_reset_passwd'      => 'MyAccount/process_reset_passwd',
182   'list_tickets'              => 'MyAccount/list_tickets',
183   'create_ticket'             => 'MyAccount/create_ticket',
184   'get_ticket'                => 'MyAccount/get_ticket',
185   'adjust_ticket_priority'    => 'MyAccount/adjust_ticket_priority',
186   'did_report'                => 'MyAccount/did_report',
187   'signup_info'               => 'Signup/signup_info',
188   'skin_info'                 => 'MyAccount/skin_info',
189   'access_info'               => 'MyAccount/access_info',
190   'domain_select_hash'        => 'Signup/domain_select_hash',  # expose?
191   'new_customer'              => 'Signup/new_customer',
192   'new_customer_minimal'      => 'Signup/new_customer_minimal',
193   'capture_payment'           => 'Signup/capture_payment',
194   'clear_signup_cache'        => 'Signup/clear_cache',
195   'new_prospect'              => 'Signup/new_prospect',
196   'new_agent'                 => 'Agent/new_agent',
197   'agent_login'               => 'Agent/agent_login',
198   'agent_logout'              => 'Agent/agent_logout',
199   'agent_info'                => 'Agent/agent_info',
200   'agent_list_customers'      => 'Agent/agent_list_customers',
201   'check_username'            => 'Agent/check_username',
202   'suspend_username'          => 'Agent/suspend_username',
203   'unsuspend_username'        => 'Agent/unsuspend_username',
204   'mason_comp'                => 'MasonComponent/mason_comp',
205   'call_time'                 => 'PrepaidPhone/call_time',
206   'call_time_nanpa'           => 'PrepaidPhone/call_time_nanpa',
207   'phonenum_balance'          => 'PrepaidPhone/phonenum_balance',
208
209   'list_quotations'           => 'MyAccount/quotation/list_quotations',
210   'quotation_new'             => 'MyAccount/quotation/quotation_new',
211   'quotation_delete'          => 'MyAccount/quotation/quotation_delete',
212   'quotation_info'            => 'MyAccount/quotation/quotation_info',
213   'quotation_print'           => 'MyAccount/quotation/quotation_print',
214   'quotation_add_pkg'         => 'MyAccount/quotation/quotation_add_pkg',
215   'quotation_remove_pkg'      => 'MyAccount/quotation/quotation_remove_pkg',
216   'quotation_order'           => 'MyAccount/quotation/quotation_order',
217
218   'freesideinc_service'       => 'Freeside/freesideinc_service',
219   };
220 }
221
222 1;