restrict additinal package order option, RT#6029
[freeside.git] / FS / FS / ClientAPI / MasonComponent.pm
1 package FS::ClientAPI::MasonComponent;
2
3 use strict;
4 use vars qw( $cache $DEBUG $me );
5 use subs qw( _cache );
6 use FS::Mason qw( mason_interps );
7 use FS::Conf;
8 use FS::ClientAPI_SessionCache;
9 use FS::Record qw( qsearch qsearchs );
10 use FS::cust_main;
11 use FS::part_pkg;
12
13 $DEBUG = 0;
14 $me = '[FS::ClientAPI::MasonComponent]';
15
16 my %allowed_comps = map { $_=>1 } qw(
17   /elements/select-did.html
18   /misc/areacodes.cgi
19   /misc/exchanges.cgi
20   /misc/phonenums.cgi
21   /misc/states.cgi
22   /misc/counties.cgi
23   /misc/svc_acct-domains.cgi
24   /misc/part_svc-columns.cgi
25 );
26
27 my %session_comps = map { $_=>1 } qw(
28   /elements/location.html
29   /edit/cust_main/first_pkg/select-part_pkg.html
30 );
31
32 my %session_callbacks = (
33
34   '/elements/location.html' => sub {
35     my( $custnum, $argsref ) = @_;
36     my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
37       or return "unknown custnum $custnum";
38     my %args = @$argsref;
39     $args{object} = $cust_main;
40     @$argsref = ( %args );
41     return ''; #no error
42   },
43
44   '/edit/cust_main/first_pkg/select-part_pkg.html' => sub {
45     my( $custnum, $argsref ) = @_;
46     my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } )
47       or return "unknown custnum $custnum";
48
49     my $pkgpart = $cust_main->agent->pkgpart_hashref;
50
51     #false laziness w/ edit/cust_main/first_pkg.html
52     my @first_svc = ( 'svc_acct', 'svc_phone' );
53
54     my @part_pkg =
55       grep { $_->svcpart(\@first_svc)
56              && ( $pkgpart->{ $_->pkgpart } 
57                   || ( $_->agentnum && $_->agentnum == $cust_main->agentnum )
58                 )
59            }
60       qsearch( 'part_pkg', { 'disabled' => '' }, '', 'ORDER BY pkg' ); # case?
61
62     my $conf = new FS::Conf;
63     if ( $conf->exists('pkg-addon_classnum') ) {
64
65       my %classnum = map  { ( $_->addon_classnum => 1 ) }
66                      grep { $_->freq !~ /^0/ }
67                      map  { $_->part_pkg }
68                           $cust_main->ncancelled_pkgs;
69
70       warn "classnums: ". join(',', keys %classnum). "\n";
71
72       unless ( $classnum{''} ) {
73         @part_pkg = grep $classnum{ $_->classnum }, @part_pkg;
74       }
75     }
76
77     my %args = @$argsref;
78     $args{part_pkg} = \@part_pkg;
79     @$argsref = ( %args );
80     return ''; #no error
81
82   },
83
84 );
85
86 my $outbuf;
87 my( $fs_interp, $rt_interp ) = mason_interps('standalone', 'outbuf'=>\$outbuf);
88
89 sub mason_comp {
90   my $packet = shift;
91
92   warn "$me mason_comp called on $packet\n" if $DEBUG;
93
94   my $comp = $packet->{'comp'};
95   unless ( $allowed_comps{$comp} || $session_comps{$comp} ) {
96     return { 'error' => 'Illegal component' };
97   }
98
99   my @args = $packet->{'args'} ? @{ $packet->{'args'} } : ();
100
101   if ( $session_comps{$comp} ) {
102
103     my $session = _cache->get($packet->{'session_id'})
104       or return ( 'error' => "Can't resume session" ); #better error message
105     my $custnum = $session->{'custnum'};
106
107     my $error = &{ $session_callbacks{$comp} }( $custnum, \@args );
108     return { 'error' => $error } if $error;
109
110   }
111
112   my $conf = new FS::Conf;
113   $FS::Mason::Request::FSURL = $conf->config('selfservice_server-base_url');
114   $FS::Mason::Request::QUERY_STRING = $packet->{'query_string'} || '';
115
116   $outbuf = '';
117   $fs_interp->exec($comp, @args); #only FS for now alas...
118
119   #errors? (turn off in-line error reporting?)
120
121   return { 'output' => $outbuf };
122
123 }
124
125 #hmm
126 sub _cache {
127   $cache ||= new FS::ClientAPI_SessionCache( {
128                'namespace' => 'FS::ClientAPI::MyAccount',
129              } );
130 }
131
132 1;