summaryrefslogtreecommitdiff
path: root/FS/FS/UI/CGI.pm
blob: ae87d13750588448db6c812a7ef05978396a8646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
package FS::UI::CGI;

use strict;
use CGI;
#use CGI::Switch;  #when FS::UID user and preference callback stuff is fixed
use CGI::Carp qw(fatalsToBrowser);
use HTML::Table;
use FS::UID qw(adminsuidsetup);
#use FS::Record qw( qsearch fields );

die "Can't initialize CGI interface; $FS::UI::Base::_lock used"
  if $FS::UI::Base::_lock;
$FS::UI::Base::_lock = "FS::UI::CGI";

=head1 NAME

FS::UI::CGI - Base class for CGI user-interface objects

=head1 SYNOPSIS

  use FS::UI::CGI;
  use FS::UI::some_table;

  $interface = new FS::UI::some_table;

  $error = $interface->browse;
  $error = $interface->search;
  $error = $interface->view;
  $error = $interface->edit;
  $error = $interface->process;

=head1 DESCRIPTION

An FS::UI::CGI object represents a CGI interface object.

=head1 METHODS

=over 4

=item new

=cut

sub new {
  my $proto = shift;
  my $class = ref($proto) || $proto;
  my $self = { @_ };

  $self->{'_cgi'} = new CGI;
  $self->{'_user'} = $self->{'_cgi'}->remote_user;
  $self->{'_dbh'} = FS::UID::adminsuidsetup $self->{'_user'};

  bless ( $self, $class);
}

sub activate {
  my $self = shift;
  print $self->_header,
        join ( "<BR>", map $_->sprint, @{ $self->{'Widgets'} } ),
        $self->_footer,
  ;
}

=item _header

=cut

sub _header {
  my $self = shift;
  my $cgi = $self->{'_cgi'};

  $cgi->header( '-expires' => 'now' ), '<HTML>', 
    '<HEAD><TITLE>', $self->title, '</TITLE></HEAD>',
    '<BODY BGCOLOR="#ffffff">',
    '<FONT COLOR="#ff0000" SIZE=7>', $self->title, '</FONT><BR><BR>',
  ;
}

=item _footer

=cut

sub _footer {
  "</BODY></HTML>";
}

=item interface

Returns the string `CGI'.  Useful for the author of a table-specific UI class
to conditionally specify certain behaviour.

=cut

sub interface { 'CGI'; }

=back

=cut

package FS::UI::_Widget;

use vars qw( $AUTOLOAD );

sub new {
  my $proto = shift;
  my $class = ref($proto) || $proto;
  my $self = { @_ };
  bless ( $self, $class );
}

sub AUTOLOAD {
  my $self = shift;
  my $value = shift;
  my($field)=$AUTOLOAD;
  $field =~ s/.*://;
  if ( defined($value) ) {
    $self->{$field} = $value;
  } else {
    $self->{$field};
  }    
}

package FS::UI::_Text;

use vars qw ( @ISA );

@ISA = qw ( FS::UI::_Widget);

sub new {
  my $proto = shift;
  my $class = ref($proto) || $proto;
  my $self = {};
  $self->{'_text'} = shift;
  bless ( $self, $class );
}

sub sprint {
  my $self = shift;
  $self->{'_text'};
}

package FS::UI::_Link;

use vars qw ( @ISA $BASE_URL );

@ISA = qw ( FS::UI::_Widget);
$BASE_URL = "http://rootwood.sisd.com/freeside";

sub sprint {
  my $self = shift;
  my $table = $self->{'table'};
  my $method = $self->{'method'};

  # i will be cleaned up when we're done moving from the old webinterface!
  my @arg = @{$self->{'arg'}};
  my $yuck = join( "&", @arg);
  qq(<A HREF="$BASE_URL/$method/$table.cgi?$yuck">). $self->{'text'}. "<\A>";
}

package FS::UI::_Table;

use vars qw ( @ISA );

@ISA = qw ( FS::UI::_Widget);

sub new {
  my $proto = shift;
  my $class = ref($proto) || $proto;
  my $self = $class eq $proto ? { @_ } : $proto;
  bless ( $self, $class );
  $self->{'_table'} = new HTML::Table ( $self->rows, $self->columns );
  $self;
}

sub attach {
  my $self = shift;
  my ( $row, $column, $widget, $rowspan, $colspan ) = @_;
  $self->{"_table"}->setCell( $row+1, $column+1, $widget->sprint );
  $self->{"_table"}->setCellRowSpan( $row+1, $column+1, $rowspan ) if $rowspan;
  $self->{"_table"}->setCellColSpan( $row+1, $column+1, $colspan ) if $colspan;
}

sub sprint {
  my $self = shift;
  $self->{'_table'}->getTable;
}

package FS::UI::_Tableborder;

use vars qw ( @ISA );

@ISA = qw ( FS::UI::_Table );

sub new {
  my $proto = shift;
  my $class = ref($proto) || $proto;
  my $self = $class eq $proto ? { @_ } : $proto;
  bless ( $self, $class );
  $self->SUPER::new(@_);
  $self->{'_table'}->setBorder;
  $self;
}

=head1 VERSION

$Id: CGI.pm,v 1.1 1999-08-04 09:03:53 ivan Exp $

=head1 BUGS

This documentation is incomplete.

In _Tableborder, headers should be links that sort on their fields.

_Link uses a constant $BASE_URL

_Link passes the arguments as a manually-constructed GET string instead
of POSTing, for compatability while the web interface is upgraded.  Once
this is done it should pass arguements properly (i.e. as a POST, 8-bit clean)

Still some small bits of widget code same as FS::UI::Gtk.

=head1 SEE ALSO

L<FS::UI::Base>

=head1 HISTORY

$Log: CGI.pm,v $
Revision 1.1  1999-08-04 09:03:53  ivan
initial checkin of module files for proper perl installation

Revision 1.1  1999/01/20 09:30:36  ivan
skeletal cross-UI UI code.


=cut

1;