b99b039384ef6a872b5c7d0507a3f0c737d0b48f
[staff.git] / shift.cgi
1 #!/usr/bin/perl -w
2 #!/usr/bin/perl -Tw
3 # (Text::Template can't do -T, but no user input is used dangerously)
4 #
5 # $Id: shift.cgi,v 1.2 2000-07-18 05:43:27 ivan Exp $
6 #
7 # Copyright (C) 2000 Adam Gould
8 # Copyright (C) 2000 Michal Migurski
9 # Copyright (C) 2000 Ivan Kohler
10 # All rights reserved.
11 #
12 # This program is free software; you can redistribute it and/or modify it under
13 # the same terms as Perl itself.
14
15 ###
16 # user-servicable parts
17 ###
18
19 $template_file = '/var/www/www.420.am/staff/table.html';
20 $data_directory = '/var/www/www.420.am/staff/data';
21 #$mail_smtpserver = 'localhost'; # set blank to disable
22 $mail_smtpserver = ''; # set blank to disable
23 $mail_from = 'ivan-misconfigured-shift-from@420.am';
24 $mail_subject = 'Your shift has been replaced';
25 @mail_cc = (
26   'ivan-misconfigured-shift-cc@420.am',
27   'ivan-misconfigured-shift-cc2@420.am'
28 );
29 $mail_footer = <<END;
30
31 Sorry, I don't have any more information.  The person who installed the 
32 staff sheet didn't customize this message.
33
34 END
35
36 ###
37 # end of user-servicable parts
38 ###
39
40 use strict;
41 use vars qw( $template_file $data_directory $mail_smtpserver $mail_from
42              $mail_subject @mail_cc $mail_footer
43              $cgi $template %shifthash %warning @messages );
44 use subs qw( form inputbox );
45 use Fcntl ":flock";
46 use CGI 2.15;
47 use CGI::Carp qw(fatalsToBrowser);
48 use Text::Template;
49 use Mail::Internet;
50 use Mail::Header;
51 use Date::Format;
52
53 $cgi = new CGI;
54
55 $template = new Text::Template (
56   TYPE   => 'FILE',
57   SOURCE => $template_file,
58 ) or die "Can't create template for $template_file: $Text::Template::ERROR";
59
60 # fill in new data if provided
61 %warning = ();
62 @messages = ();
63 if ( $cgi->param() ) {
64
65   # kludge - grep for inputbox("field") in template to find valid form fields
66   # (DON'T get them from form submission - that's insecure!)
67   open (TEMPLATE_FILE,"<$template_file")
68     or die "Can't open template for $template_file: $!";
69   my @form_fields =
70     map { /inputbox\s*\(\s*([\'\"])(.*)\1\s*\)/; $2 }
71       #grep { /inputbox\s*\(\s*([\'\"])(.*)\1\s*\)/ }
72       grep { /inputbox\s*\(\s*([\'\"])(.*)\1\s*\);?\s*\}/ }
73         <TEMPLATE_FILE>;
74   close TEMPLATE_FILE;
75
76   #changed fields
77   #foreach $_ ( @form_fields ) {
78   #  warn "${_}_old undefined!" unless defined $cgi->param($_. '_old');
79   #  warn "${_}_new undefined!" unless defined $cgi->param($_. '_new');
80   #}
81   my @diff_fields =
82     grep { $cgi->param($_. '_old') ne $cgi->param($_. '_new') } @form_fields;
83
84   if ( @diff_fields ) {
85
86     local $SIG{HUP} = 'IGNORE';
87     local $SIG{INT} = 'IGNORE';
88     local $SIG{QUIT} = 'IGNORE';
89     local $SIG{TERM} = 'IGNORE';
90     local $SIG{TSTP} = 'IGNORE';
91     local $SIG{PIPE} = 'IGNORE';
92
93     #open(LOCKFILE,">>$data_directory/.lock")
94     open(LOCKFILE,"+<$data_directory/.lock")
95       or open(LOCKFILE,">>$data_directory/.lock")
96       or die "Can't open $data_directory/.lock: $!";
97     flock(LOCKFILE,LOCK_EX); #blocks until we have the lock
98     seek(LOCKFILE, 0, 0);
99     print LOCKFILE "$$     \n"; #superfluous
100
101     get_data();
102
103     foreach my $field ( @diff_fields ) {
104       $shifthash{$field}='' unless defined $shifthash{$field};
105       if ( $shifthash{$field} eq $cgi->param($field. '_old') ) {
106         if ( $cgi->param($field. "_new") =~
107                /\b(\w[\w\-\.\+]*\@(([\w\.\-]+\.)+\w+))\b/
108              || $cgi->param($field. "_new") =~ /^\s*$/
109         ) {
110           open(FILE,">$data_directory/.new.$field")
111             or die "Can't open file $data_directory/$field: $!";
112           print FILE $cgi->param($field. "_new");
113           close FILE;
114           rename "$data_directory/.new.$field", "$data_directory/$field";
115           $warning{$field} = '';
116           if (
117             $mail_smtpserver
118             && $shifthash{$field} =~ /\b(\w[\w\-\.\+]*\@(([\w\.\-]+\.)+\w+))\b/
119           ) {
120             my $to = $1;
121             my $header = Mail::Header->new( [
122               "From: $mail_from",
123               "To: $to",
124               "Cc: ". join(", ", @mail_cc),
125               "Sender: $mail_from",
126               "Reply-To: $mail_from",
127               "Date: ". time2str("%a, %d %b %Y %X %z", time),
128               "Subject: $mail_subject",
129             ] );
130             my $msg = Mail::Internet->new(
131               'Header' => $header,
132               'Body'   => [ map "$_\n",
133                 "Hi,",
134                 "",
135                 "The \"$field\" shift you signed up for has been changed to",
136                 '"'. $cgi->param($field. "_new"). '"',
137                 "",
138                 split("\n", $mail_footer),
139               ],
140             );
141             #send later - don't want to block on smtp while we have the lock
142             push @messages, $msg;
143           }
144         } else {
145           $warning{$field} = 
146             "WARNING: you tried to sign up for <B>$field</B>, but your entry ".
147             "<B>\"". $cgi->param($field. '_new').
148             "</B>\" does not contain a valid email address."
149           ;
150         }
151       } elsif ( $shifthash{$field} eq $cgi->param($field. '_new') ) {
152         #somebody else made the same change (or you hit reload); no need to warn
153         $warning{$field} = '';
154       } else {
155         $warning{$field} =
156           "WARNING: you tried to change <B>$field</B> from \"<B>".
157           $cgi->param($field. '_old').
158           "</B>\" to \"<B>".
159           $cgi->param($field. "_new").
160           "</B>\", but in the meantime someone changed it to: "
161         ;
162       }
163     }
164
165     flock(LOCKFILE,LOCK_UN);
166     close LOCKFILE;
167
168   }
169
170 }
171
172 get_data();
173
174 my $text = $template->fill_in()
175   or die "Can't fill in template for $template_file: $Text::Template::ERROR";
176
177 print $cgi->header, $text;
178
179 $ENV{SMTPHOSTS} = $mail_smtpserver;
180 $ENV{MAILADDRESS} = $mail_from;
181 foreach my $msg ( @messages ) {
182   $msg->smtpsend;
183 }
184
185 # subroutines
186
187 sub get_data {
188   opendir DATA_DIR, $data_directory
189     or die "Can't open directory $data_directory: $!";
190   %shifthash = map {
191     open(FILE, "<$data_directory/$_")
192       or die "Can't open file $data_directory/$_: $!";
193     my $value = scalar(<FILE>) || '';
194     close FILE;
195     chomp $value;
196     ( $_ => $value );
197   } grep { ! /^\.{1,2}(lock)?$/ } readdir(DATA_DIR);
198   closedir DATA_DIR;
199 }
200
201 # subroutines for the template
202
203 sub form {
204  $cgi->start_form;
205 }
206
207 sub inputbox {
208   my $field = shift;
209   return $shifthash{$field} || "&nbsp;"
210     if defined $cgi->param('__MAGIC') && $cgi->param('__MAGIC') eq 'print';
211   $shifthash{$field}='' unless defined $shifthash{$field};
212   $warning{$field}='' unless defined $warning{$field};
213   #"$field ".
214   $cgi->hidden(
215     -name    => $field. '_old',
216     -default => $shifthash{$field},
217     -force   => 1,
218   ).
219   $warning{$field}.
220   $cgi->textfield(
221     -name    => $field. '_new',
222     -default => $shifthash{$field},
223     -force   => 1,
224     -size    => 15,
225   );
226 }
227
228 sub warnings {
229   join "<BR>", map {
230     "$warning{$_}<b>$shifthash{$_}</b>"
231   } grep {
232     $warning{$_}
233   } keys %warning;
234 }
235