diff options
Diffstat (limited to 'cgi/shows.cgi')
-rwxr-xr-x | cgi/shows.cgi | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/cgi/shows.cgi b/cgi/shows.cgi new file mode 100755 index 0000000..461adfc --- /dev/null +++ b/cgi/shows.cgi @@ -0,0 +1,120 @@ +#!/usr/bin/perl -Tw +# $Id: shows.cgi,v 1.1 1999-04-23 06:34:07 ivan Exp $ +# Copyright (c) 1999 Ivan Kohler. All rights reserved. +# This program is free software; you can redistribute it and/or modify it under +# the same terms as perl itself + +use strict; +use vars qw ( $data_source $user $password $table @fields + $cgi $dbh + ); +use subs qw( print_form ); +use CGI qw(tr th td); +use CGI::Carp qw(fatalsToBrowser); +use DBI; + +$data_source = "DBI:mysql:technostate"; +$user = "agent"; +$password = "t3chno"; + +$table = "SHOWS"; +@fields = qw( SHOW_ID PERSON_ID SHOWSTART DURATION STUDIO_ID ); + +$cgi = new CGI; + +$dbh = DBI->connect( $data_source, $user, $password ) + or die "Cannot connect: ". $DBI::errstr; + +unless ( $cgi->param('magic') ) { #first time through + + my $sth = $dbh->prepare( "SELECT * FROM $table" ) + or die $dbh->errstr; + my $rv = $sth->execute; + die $sth->errstr unless $rv; + + print $cgi->header( '-expires' => 'now' ), + $cgi->start_html('Show listing'), + $cgi->h1('Show listing'), + ; + + unless ( $sth eq '0E0' ) { + + my @columns = @{ $sth->{'NAME'} }; + + print $cgi->start_table, + $cgi->tr( + map { + $cgi->th($_) + } @columns + ) + ; + + my %hash = (); + my $hashref = undef; + while ( $hashref = $sth->fetchrow_hashref ) { + %hash = %{$hashref}; + print $cgi->tr( map { $cgi->td( $hash{$_} ) } @columns ); + } + print $cgi->end_table; + + } + + $cgi->param('magic', 'new_form'); + print '<P><A HREF="', $cgi->self_url, '">Add new show</A>'; + print $cgi->end_html; + + exit; + +} elsif ( $cgi->param('magic') eq 'new_form' ) { + $cgi->param('SHOW_ID', 0); + $cgi->param('magic', 'process_form'); + &print_form( $cgi, "Add show" ); + exit; +} elsif ( $cgi->param('magic') eq 'process_form' ) { + + my $field; + foreach $field ( @fields ) { + if ( $cgi->param( $field ) ) { + $cgi->param( $field ) =~ /^(.*)$/; + my $param = $1 || 0; + if ( (DBI::looks_like_number($param))[0] ) { + $cgi->param( $field, $param ); + } else { + $cgi->param( $field, $dbh->quote($param) ); + } + } + } + my $statement = "INSERT INTO $table ( ". + join(', ', @fields ). + ' ) VALUES ( '. + join( ', ', map { $cgi->param($_) } @fields ). + ' )' + ; + my $sth = $dbh->prepare($statement) + or die $dbh->errstr; + my $rv = $sth->execute; + die $sth->errstr unless $rv; + + my $url = $cgi->url; + $url =~ s/^\/[\/]+$//; + print $cgi->redirect($url); +} + +sub print_form { + my $cgi = shift; + my $action = shift; + print $cgi->header, + $cgi->start_html($action), + $cgi->h1($action), + $cgi->start_form, + $cgi->hidden( -name => 'SHOW_ID' ), + "Person_ID: ", $cgi->textfield( -name => 'PERSON_ID' ), "<BR>", + "Show start: ", $cgi->textfield( -name => 'SHOWSTART' ), "<BR>", + "Duration: ", $cgi->textfield( -name => 'DURATION' ), "<BR>", + "Studio_ID: ", $cgi->textfield( -name => 'STUDIO_ID' ), "<BR>", + $cgi->hidden( -name => 'magic'), + $cgi->submit('Submit'), + $cgi->end_form, + $cgi->end_html; + ; +} |