2009-10-09 00:42:47 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
* SFIAB Website : http :// www . sfiab . ca
*
* Copyright ( C ) 2009 James Grant < james @ lightbox . org >
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation , version 2.
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; see the file COPYING . If not , write to
* the Free Software Foundation , Inc . , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*/
2009-10-09 00:42:47 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require ( '../common.inc.php' );
require_once ( '../user.inc.php' );
user_auth_required ( 'committee' , 'admin' );
require ( 'fundraising_common.inc.php' );
$userslist = array ();
$otherlist = array ();
2009-10-09 00:42:47 +00:00
2025-01-29 03:30:48 +00:00
if ( $_POST [ 'donortype' ] == 'organization' ) {
$q = $pdo -> prepare ( 'SELECT id, organization AS name, address, address2, city, province_code, postalcode FROM sponsors ORDER BY name' );
2009-10-09 00:42:47 +00:00
2024-12-08 02:42:00 -05:00
$q -> execute ();
2025-01-03 15:15:13 -05:00
show_pdo_errors_if_any ( $pdo );
2009-10-09 00:42:47 +00:00
2025-01-29 03:30:48 +00:00
if ( ! $_POST [ 'contacttype' ])
$contacttype = array ( 'primary' , 'secondary' );
else
$contacttype = $_POST [ 'contacttype' ];
$primary = '' ;
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
foreach ( $contacttype AS $ct ) {
switch ( $ct ) {
case 'primary' :
$primary = 'yes' ;
break ;
case 'secondary' :
$primary = 'no' ;
break ;
}
2024-12-08 02:42:00 -05:00
$cq = $pdo -> prepare ( " SELECT *,MAX(year) FROM users LEFT JOIN users_sponsor ON users_sponsor.users_id=users.id
2009-10-11 03:32:14 +00:00
WHERE
sponsors_id = '" . $r->id . "'
AND `primary` = '$primary'
AND types LIKE '%sponsor%'
GROUP BY uid
HAVING deleted = 'no'
ORDER BY users_sponsor . primary DESC , lastname , firstname
" );
2024-12-08 02:42:00 -05:00
$cq -> execute ();
2009-10-11 03:32:14 +00:00
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
while ( $cr = $cq -> fetch ( PDO :: FETCH_OBJ )) {
if ( ! $userslist [ $cr -> uid ])
$userslist [ $cr -> uid ] = user_load ( $cr -> users_id );
}
}
}
} else if ( $_POST [ 'donortype' ] == 'individual' ) {
if ( ! $_POST [ 'individual_type' ])
$individual_type = array ( 'judge' , 'teacher' , 'sciencehead' , 'principal' , 'parent' , 'mentor' , 'committee' , 'volunteer' , 'students' );
else
$individual_type = $_POST [ 'individual_type' ];
foreach ( $individual_type AS $t ) {
$query = " SELECT *,MAX(year) FROM users WHERE types LIKE '% $t %' GROUP BY uid HAVING deleted='no' ORDER BY lastname,firstname " ;
$q = $pdo -> prepare ( $query );
2024-12-08 02:42:00 -05:00
$q -> execute ();
2025-01-03 15:15:13 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
if ( ! $userslist [ $r -> uid ])
$userslist [ $r -> uid ] = user_load_by_uid ( $r -> uid );
}
}
2009-10-09 00:42:47 +00:00
}
2009-10-11 03:32:14 +00:00
2025-01-29 03:30:48 +00:00
// okie dokie, now we need to filter ou the list on the other criteria
if ( $_POST [ 'emailaddress' ]) {
$emailaddress = $_POST [ 'emailaddress' ];
} else {
$emailaddress = array ( 'available' , 'not available' );
2009-10-11 03:32:14 +00:00
}
2025-01-29 03:30:48 +00:00
if ( count ( $emailaddress ) == 1 ) {
$emailavailablelist = array ();
$emailnotavailablelist = array ();
2009-10-11 03:32:14 +00:00
2025-01-29 03:30:48 +00:00
foreach ( $userslist AS $uid => $u ) {
if ( $u [ 'email' ])
$emailavailablelist [ $uid ] = $u ;
2009-10-11 03:32:14 +00:00
else
2025-01-29 03:30:48 +00:00
$emailnotavailablelist [ $uid ] = $u ;
2009-10-11 03:32:14 +00:00
}
2025-01-29 03:30:48 +00:00
if ( $emailaddress [ 0 ] == 'available' ) {
$userslist = $emailavailablelist ;
2009-10-11 03:32:14 +00:00
} else {
2025-01-29 03:30:48 +00:00
$userslist = $emailnotavailablelist ;
2009-10-11 03:32:14 +00:00
}
}
2025-01-29 03:30:48 +00:00
if ( $_POST [ 'donationhistory' ]) {
$donationhistory = $_POST [ 'donationhistory' ];
} else {
$donationhistory = array ( 'never' , 'past' , 'lastyear' , 'thisyear' );
2009-10-11 03:32:14 +00:00
}
/*
2025-01-29 03:30:48 +00:00
* FIXME : put this back in as it would eliminate a lot of processing
*
* if ( in_array ( 'never' , $donationhistory ) && in_array ( 'past' , $donationhistory )) {
* //these cancel eachother out basically, so include everyone
* unset ( $donationhistory [ array_search ( " never " , $donationhistory )]);
* unset ( $donationhistory [ array_search ( " past " , $donationhistory )]);
* }
*/
$neverlist = $userslist ;
$pastlist = $userslist ;
$lastyearlist = $userslist ;
$thisyearlist = $userslist ;
// if they dont have a sponsors id, then they,ve never donated for sure, so keep them
// if they DO have a sponsors id, we need to check if tere is a donation record for them
// and if so, remove them if there is because tey have donated in the past
foreach ( $neverlist AS $uid => $u ) {
if ( $u [ 'sponsors_id' ]) {
$q = $pdo -> prepare ( " SELECT * FROM fundraising_donations WHERE status='received' AND sponsors_id=' { $u [ 'sponsors_id' ] } ' " );
$q -> execute ();
if ( $q -> rowCount ()) {
// echo "removing $uid because they have donated in the past <br />";
unset ( $neverlist [ $uid ]);
2009-10-11 03:32:14 +00:00
}
}
2025-01-29 03:30:48 +00:00
}
2009-10-11 03:32:14 +00:00
2025-01-29 03:30:48 +00:00
// if they dont have a sponsors id, then they,ve never donated for sure, get rid of them
// if they DO have a sponsors id, we need to check if tere is a donation record for them
// and if not remove them if there is because tey have not donated in the past
2009-10-11 03:32:14 +00:00
2025-01-29 03:30:48 +00:00
foreach ( $pastlist AS $uid => $u ) {
if ( $u [ 'sponsors_id' ]) {
$q = $pdo -> prepare ( " SELECT * FROM fundraising_donations WHERE status='received' AND sponsors_id=' { $u [ 'sponsors_id' ] } ' " );
$q -> execute ();
if ( ! $q -> rowCount ()) {
// echo "removing $uid because they have NOT donated in the past <br />";
unset ( $pastlist [ $uid ]);
2009-10-11 03:32:14 +00:00
}
2025-01-29 03:30:48 +00:00
} else {
// echo "removing $uid because they have NOT donated in the past <br />";
unset ( $pastlist [ $uid ]);
2009-10-11 03:32:14 +00:00
}
2025-01-29 03:30:48 +00:00
}
2009-10-11 03:32:14 +00:00
2025-01-29 03:30:48 +00:00
$lastyear = $config [ 'FISCALYEAR' ] - 1 ;
2009-10-11 03:32:14 +00:00
2025-01-29 03:30:48 +00:00
foreach ( $lastyearlist AS $uid => $u ) {
if ( $u [ 'sponsors_id' ]) {
$q = $pdo -> prepare ( " SELECT * FROM fundraising_donations WHERE status='received' AND sponsors_id=' { $u [ 'sponsors_id' ] } ' AND fiscalyear=' $lastyear ' " );
$q -> execute ();
if ( ! $q -> rowCount ()) {
// echo "removing $uid because they have NOT donated last year <br />";
unset ( $lastyearlist [ $uid ]);
2009-10-11 03:32:14 +00:00
}
2025-01-29 03:30:48 +00:00
} else {
2009-10-11 03:32:14 +00:00
// echo "removing $uid because they have NOT donated last year <br />";
2025-01-29 03:30:48 +00:00
unset ( $lastyearlist [ $uid ]);
2009-10-11 03:32:14 +00:00
}
2025-01-29 03:30:48 +00:00
}
2009-10-11 03:32:14 +00:00
2025-01-29 03:30:48 +00:00
foreach ( $thisyearlist AS $uid => $u ) {
if ( $u [ 'sponsors_id' ]) {
$q = $pdo -> prepare ( " SELECT * FROM fundraising_donations WHERE status='received' AND sponsors_id=' { $u [ 'sponsors_id' ] } ' AND fiscalyear=' { $config [ 'FISCALYEAR' ] } ' " );
$q -> execcute ();
if ( ! $q -> rowCount ()) {
// echo "removing $uid because they have NOT donated this year <br />";
unset ( $thisyearlist [ $uid ]);
2009-10-11 03:32:14 +00:00
}
2025-01-29 03:30:48 +00:00
} else {
2009-10-11 03:32:14 +00:00
// echo "removing $uid because they have NOT donated this year <br />";
2025-01-29 03:30:48 +00:00
unset ( $thisyearlist [ $uid ]);
2009-10-11 03:32:14 +00:00
}
2025-01-29 03:30:48 +00:00
}
2009-10-11 03:32:14 +00:00
/*
2025-01-29 03:30:48 +00:00
* echo " neverlist: " . count ( $neverlist ) . " <br /> " ;
* echo " pastlist: " . count ( $pastlist ) . " <br /> " ;
* echo " lastyearlist: " . count ( $lastyearlist ) . " <br /> " ;
* echo " thisyearlist: " . count ( $thisyearlist ) . " <br /> " ;
*/
$userslist = array ();
foreach ( $donationhistory AS $dh ) {
$arr = $dh . 'list' ;
foreach ( $$arr AS $uid => $u ) {
$userslist [ $uid ] = $u ;
2009-10-11 03:32:14 +00:00
}
}
2025-01-29 03:30:48 +00:00
if ( $_GET [ 'generatelist' ]) {
$campaignid = $_POST [ 'fundraising_campaigns_id' ];
$params = serialize ( $_POST );
2009-10-11 03:32:14 +00:00
echo " params= $params " ;
2024-12-08 02:42:00 -05:00
$stmt = $pdo -> prepare ( " UPDATE fundraising_campaigns SET filterparameters=' { $params } ' WHERE id=' $campaignid ' " );
$stmt -> execute ();
2025-01-29 03:30:48 +00:00
$uids = array_keys ( $userslist );
foreach ( $uids AS $u ) {
2024-12-08 02:42:00 -05:00
$stmt = $pdo -> prepare ( " INSERT INTO fundraising_campaigns_users_link (fundraising_campaigns_id, users_uid) VALUES (' $campaignid ',' $u ') " );
2025-01-29 03:30:48 +00:00
$stmt -> execute ();
}
2024-12-08 02:42:00 -05:00
2025-01-29 03:30:48 +00:00
echo 'List created' ;
} else {
// just show the results
$usersnum = count ( $userslist );
echo i18n ( '%1 users match the given criteria' , array ( $usersnum )) . ' <br />' ;
echo '<input type="submit" value="' . i18n ( 'Generate List' ) . " \" > \n " ;
// print_r($userslist);
// print_r($otherlist);
2009-10-11 03:32:14 +00:00
}
2025-01-29 03:30:48 +00:00
echo '<br /><br />' ;
echo nl2br ( print_r ( $_POST , true ));
2009-10-09 00:42:47 +00:00
?>