turn off debugging
[freeside.git] / FS / FS / UI / Web.pm
1 package FS::UI::Web;
2
3 use vars qw($DEBUG);
4 use FS::Conf;
5 use FS::Record qw(dbdef);
6
7 #use vars qw(@ISA);
8 #use FS::UI
9 #@ISA = qw( FS::UI );
10
11 use Date::Parse;
12 sub parse_beginning_ending {
13   my($cgi) = @_;
14
15   my $beginning = 0;
16   if ( $cgi->param('begin') =~ /^(\d+)$/ ) {
17     $beginning = $1;
18   } elsif ( $cgi->param('beginning') =~ /^([ 0-9\-\/]{1,64})$/ ) {
19     $beginning = str2time($1) || 0;
20   }
21
22   my $ending = 4294967295; #2^32-1
23   if ( $cgi->param('end') =~ /^(\d+)$/ ) {
24     $ending = $1 - 1;
25   } elsif ( $cgi->param('ending') =~ /^([ 0-9\-\/]{1,64})$/ ) {
26     #probably need an option to turn off the + 86399
27     $ending = str2time($1) + 86399;
28   }
29
30   ( $beginning, $ending );
31 }
32
33 ###
34 # cust_main report methods
35 ###
36
37 =item cust_header
38
39 Returns an array of customer information headers according to the
40 B<cust-fields> configuration setting.
41
42 =cut
43
44 use vars qw( @cust_fields );
45
46 sub cust_sql_fields {
47   my @fields = qw( last first company );
48   push @fields, map "ship_$_", @fields
49     if dbdef->table('cust_main')->column('ship_last');
50   map "cust_main.$_", @fields;
51 }
52
53 sub cust_header {
54
55   warn "FS::svc_Common::cust_header called"
56     if $DEBUG;
57
58   my $conf = new FS::Conf;
59
60   my %header2method = (
61     'Customer'           => 'name',
62     'Cust#'              => 'custnum',
63     'Name'               => 'contact',
64     'Company'            => 'company',
65     '(bill) Customer'    => 'name',
66     '(service) Customer' => 'ship_name',
67     '(bill) Name'        => 'contact',
68     '(service) Name'     => 'ship_contact',
69     '(bill) Company'     => 'company',
70     '(service) Company'  => 'ship_company',
71   );
72
73   my @cust_header;
74   if (    $conf->exists('cust-fields')
75        && $conf->config('cust-fields') =~ /^([\w \|\#\(\)]+):/
76      )
77   {
78     warn "  found cust-fields configuration value"
79       if $DEBUG;
80
81     my $cust_fields = $1;
82      @cust_header = split(/ \| /, $cust_fields);
83      @cust_fields = map { $header2method{$_} } @cust_header;
84   } else { 
85     warn "  no cust-fields configuration value found; using default 'Customer'"
86       if $DEBUG;
87     @cust_header = ( 'Customer' );
88     @cust_fields = ( 'name' );
89   }
90
91   #my $svc_x = shift;
92   @cust_header;
93 }
94
95 =item cust_fields
96
97 Given a svc_ object that contains fields from cust_main (say, from a
98 JOINed search.  See httemplate/search/svc_* for examples), returns an array
99 of customer information according to the <B>cust-fields</B> configuration
100 setting, or "(unlinked)" if this service is not linked to a customer.
101
102 =cut
103
104 sub cust_fields {
105   my $svc_x = shift;
106   warn "FS::svc_Common::cust_fields called for $svc_x ".
107        "(cust_fields: @cust_fields)"
108     if $DEBUG > 1;
109
110   cust_header() unless @cust_fields;
111
112   my $seen_unlinked = 0;
113   map { 
114     if ( $svc_x->custnum ) {
115       warn "  $svc_x -> $_"
116         if $DEBUG > 1;
117       $svc_x->$_(@_);
118     } else {
119       warn "  ($svc_x unlinked)"
120         if $DEBUG > 1;
121       $seen_unlinked++ ? '' : '(unlinked)';
122     }
123   } @cust_fields;
124 }
125
126 ###
127 # begin JSRPC code...
128 ###
129
130 package FS::UI::Web::JSRPC;
131
132 use strict;
133 use vars qw($DEBUG);
134 use Storable qw(nfreeze);
135 use MIME::Base64;
136 use JSON;
137 use FS::UID;
138 use FS::Record qw(qsearchs);
139 use FS::queue;
140
141 $DEBUG = 0;
142
143 sub new {
144         my $class = shift;
145         my $self  = {
146                 env => {},
147                 job => shift,
148                 cgi => shift,
149         };
150
151         bless $self, $class;
152
153         die "CGI object required as second argument" unless $self->{'cgi'};
154
155         return $self;
156 }
157
158 sub process {
159
160   my $self = shift;
161
162   my $cgi = $self->{'cgi'};
163
164   # XXX this should parse JSON foo and build a proper data structure
165   my @args = $cgi->param('arg');
166
167   #work around konqueror bug!
168   @args = map { s/\x00$//; $_; } @args;
169
170   my $sub = $cgi->param('sub'); #????
171
172   warn "FS::UI::Web::JSRPC::process:\n".
173        "  cgi=$cgi\n".
174        "  sub=$sub\n".
175        "  args=".join(', ',@args)."\n"
176     if $DEBUG;
177
178   if ( $sub eq 'start_job' ) {
179
180     $self->start_job(@args);
181
182   } elsif ( $sub eq 'job_status' ) {
183
184     $self->job_status(@args);
185
186   }
187
188 }
189
190 sub start_job {
191   my $self = shift;
192
193   warn "FS::UI::Web::start_job: ". join(', ', @_) if $DEBUG;
194 #  my %param = @_;
195   my %param = ();
196   while ( @_ ) {
197     my( $field, $value ) = splice(@_, 0, 2);
198     unless ( exists( $param{$field} ) ) {
199       $param{$field} = $value;
200     } elsif ( ! ref($param{$field}) ) {
201       $param{$field} = [ $param{$field}, $value ];
202     } else {
203       push @{$param{$field}}, $value;
204     }
205   }
206   warn "FS::UI::Web::start_job\n".
207        join('', map {
208                       if ( ref($param{$_}) ) {
209                         "  $_ => [ ". join(', ', @{$param{$_}}). " ]\n";
210                       } else {
211                         "  $_ => $param{$_}\n";
212                       }
213                     } keys %param )
214     if $DEBUG;
215
216   #first get the CGI params shipped off to a job ASAP so an id can be returned
217   #to the caller
218   
219   my $job = new FS::queue { 'job' => $self->{'job'} };
220   
221   #too slow to insert all the cgi params as individual args..,?
222   #my $error = $queue->insert('_JOB', $cgi->Vars);
223   
224   #warn 'froze string of size '. length(nfreeze(\%param)). " for job args\n"
225   #  if $DEBUG;
226
227   my $error = $job->insert( '_JOB', encode_base64(nfreeze(\%param)) );
228
229   if ( $error ) {
230     $error;  #this doesn't seem to be handled well,
231              # will trigger "illegal jobnum" below?
232              # (should never be an error inserting the job, though, only thing
233              #  would be Pg f%*kage)
234   } else {
235     $job->jobnum;
236   }
237   
238 }
239
240 sub job_status {
241   my( $self, $jobnum ) = @_; #$url ???
242
243   sleep 1; # XXX could use something better...
244
245   my $job;
246   if ( $jobnum =~ /^(\d+)$/ ) {
247     $job = qsearchs('queue', { 'jobnum' => $jobnum } );
248   } else {
249     die "FS::UI::Web::job_status: illegal jobnum $jobnum\n";
250   }
251
252   my @return;
253   if ( $job && $job->status ne 'failed' ) {
254     @return = ( 'progress', $job->statustext );
255   } elsif ( !$job ) { #handle job gone case : job sucessful
256                       # so close popup, redirect parent window...
257     @return = ( 'complete' );
258   } else {
259     @return = ( 'error', $job ? $job->statustext : $jobnum );
260   }
261
262   objToJson(\@return);
263
264 }
265
266 1;
267