#!/usr/bin/perl use strict; use warnings; use autodie qw(open close); use DBI; use Encode qw(encode decode); use Email::MIME::RFC2047::Encoder; use Email::MIME; use Supporters; my $encoder = Email::MIME::RFC2047::Encoder->new(); my $LEDGER_CMD = "/usr/local/bin/ledger"; if (@ARGV != 5 and @ARGV != 6) { print STDERR "usage: $0 \n"; exit 1; } my($SUPPORTERS_SQLITE_DB_FILE, $T_SHIRT_TYPE, $WHO, $HOW, $TEX_FILE, $VERBOSE) = @ARGV; $VERBOSE = 0 if not defined $VERBOSE; my $dbh = DBI->connect("dbi:SQLite:dbname=$SUPPORTERS_SQLITE_DB_FILE", "", "", { RaiseError => 1, sqlite_unicode => 1 }) or die $DBI::errstr; my $sp = new Supporters($dbh, [ "none" ]); my %idsSent; open(TEX_FILE, "<", $TEX_FILE); while (my $line = ) { if ($line =~ /Box.*\&\s*(\d+)\s*\&\s*(\S+)\s*\&\s*(\S+)\s*\&/) { my($id, $ledgerEntityId, $size) = ($1, $2, $3); die "id $id, and/or size $size not defined" unless defined $id and defined $size; $idsSent{$id}{$size} = 0 if not defined $idsSent{$id}{$size}; $idsSent{$id}{$size}++; } else { print STDERR "skipping line $line" if ($VERBOSE >= 2); } } close TEX_FILE; foreach my $id (sort keys %idsSent) { my @requestTypes = $sp->getRequestType(); my $sizesSent; my $foundRequestCount = 0; foreach my $type (@requestTypes) { next unless ($type =~ /shirt/ and $type =~ /$T_SHIRT_TYPE/); my $request = $sp->getRequest({ donorId => $id, requestType => $type, ignoreHeldRequests => 1, ignoreFulfilledRequests => 1 }); if (defined $request and defined $request->{requestId} and defined $request->{requestType}) { $foundRequestCount++; my $size = $request->{requestConfiguration}; if (not defined $idsSent{$id}{$size} and $idsSent{$id}{$size}-- > 0) { my $out = "WARNING: not fufilling $id request for $request->{requstConfiguration} because we sent wrong size of $idsSent{$id}!\n"; print $out; print STDERR $out; $request = undef; } else { $sp->fulfillRequest({ donorId => $id, requestType => $request->{requestType}, who => $WHO, how => $HOW}); if (defined $sizesSent) { $sizesSent .= ", $size"; } else { $sizesSent .= "$size"; } } } } unless ($foundRequestCount > 0) { my $out = "WARNING: We seem to have sent $id a t-shirt that $id didn't request! Ignoring that and contuining...\n"; print $out; print STDERR $out; next; } next unless $sp->emailOk($id); my %emails; my $email = $sp->getPreferredEmailAddress($id); if (defined $email) { $emails{$email} = {}; } else { %emails = $sp->getEmailAddresses($id); } my(@emails) = keys(%emails); my $fullEmailLine = ""; my $emailTo = join(' ', @emails); my $displayName = $sp->getDisplayName($id); foreach my $email (@emails) { $fullEmailLine .= ", " if ($fullEmailLine ne ""); my $line = ""; if (defined $displayName) { $line .= $encoder->encode_phrase($displayName) . " "; } $line .= "<$email>"; $fullEmailLine .= $line; } my $fromAddress = 'supporters@tix.sfconservancy.org'; my $pingNoGet = ""; $pingNoGet = "\nPlease ping us if you do not receive your t-shirt within two weeks in the\nUSA, or three weeks outside of the USA.\n\n" if ($HOW =~ /post/); open(SENDMAIL, "|/usr/lib/sendmail -f \"$fromAddress\" -oi -oem -- $emailTo info\@sfconservancy.org") or die "unable to run sendmail: $!"; print SENDMAIL < Subject: $sizesSent Conservancy T-Shirt was $HOW [ We apologize if you get a duplicate of this notification. ] According to our records, the t-shirt of size $sizesSent that you requested as a Conservancy Supporter was $HOW. $pingNoGet Thank you again so much for supporting Conservancy. We'd really appreciate if you'd post pictures of the shirt on social media and encourage others to sign up as a Conservancy supporter at https://sfconservancy.org/supporter/ . As you can see on that page, we are in the midst of our annual fundraising drive and seeking to reach a match donation. There's a unique opportunity remaining for just two more days for us to make a match donation. So, encouraging others to sign up right now will make a huge difference! Thank you again for your support of Conservancy. Sincerely, -- The Staff at Software Freedom Conservancy DATA close SENDMAIL; die "Unable to send email to $id: $!" unless $? == 0; print STDERR "Emailed $emailTo for $id sending of $sizesSent size t-shirt and marked it fulfilled in database\n" if ($VERBOSE); } ############################################################################### # # Local variables: # compile-command: "perl -c send-t-shirts.plx" # End: