X-Git-Url: https://git.hcoop.net/clinton/MarylandElectronicPetitionSignature.git/blobdiff_plain/2b1ae240642778bdea60c8a841f1231b6ee29271..b697498f5308dc64bc86f070f76a342cc2f4f058:/eligible.php diff --git a/eligible.php b/eligible.php index b663952..7510d57 100644 --- a/eligible.php +++ b/eligible.php @@ -7,8 +7,15 @@ $web_last_name = $_COOKIE['web_last_name']; $web_house_number = $_COOKIE['web_house_number']; $web_zip_code = $_COOKIE['web_zip_code']; if ($web_first_name != '' && $web_last_name != '' && $web_house_number != '' && $web_zip_code != ''){ - // ok to check for records + include_once('header.php'); + $web_first_name = $petition->real_escape_string($web_first_name); + $web_last_name = $petition->real_escape_string($web_last_name); + $web_house_number = $petition->real_escape_string($web_house_number); + $web_zip_code = $petition->real_escape_string($web_zip_code); + $DOB = $petition->real_escape_string($DOB); + $PHONE = $petition->real_escape_string($PHONE); }else{ + // we should NEVER hit this page anymore header('Location: warning_incomplete.php'); } $q = "select * from VoterList where LASTNAME = '$web_last_name' and FIRSTNAME = '$web_first_name' and HOUSE_NUMBER = '$web_house_number' and RESIDENTIALZIP5 = '$web_zip_code'"; @@ -23,49 +30,103 @@ if ($d['VTRID'] != ''){ $RESIDENTIALCITY = $d['RESIDENTIALCITY']; $COUNTY = $d['COUNTY']; $RESIDENTIALZIP5 = $d['RESIDENTIALZIP5']; + slack_general('MATCH: eligible ('.$FIRSTNAME.' '.$LASTNAME.' '.$RESIDENTIALCITY.') ('.$_COOKIE['invite'].')','md-petition'); }else{ - header('Location: warning_not_found.php'); + slack_general('MISS: eligible ('.$web_first_name.' '.$web_last_name.' '.$PHONE.') ('.$_COOKIE['invite'].')','md-petition'); + header('Location: warning_not_found.php'); } + +if (isset($_GET['remove'])){ + $id = $_GET['remove']; + $q = "update signatures set signature_status = 'removed' where id = '$id'"; + $petition->query($q); + slack_general('SQL: eligible ('.$q.') ('.$_COOKIE['invite'].')','md-petition'); + header('Location: eligible.php'); +} + echo $head; + $available=''; -$q2 = "SELECT * FROM petitions"; +$q2 = "SELECT * FROM petitions where admin_status = 'approved'"; $r2 = $petition->query($q2); while($d2 = mysqli_fetch_array($r2)){ + $checked = ''; $field = $d2['eligibleVoterListField']; $pass = $d2['eligibleVoterListEquals']; - if ($d[$field] == $pass){ + + + + if($d[$field] == $pass){ + // good to go + $checked = ''; + if($_COOKIE['invite'] != '' && strtoupper($_COOKIE['invite']) == strtoupper($d2['web_short_name'])){ + $checked = 'checked'; + }else{ + $checked = ''; + } $available .= "
-
-
$d2[petition_name]
-
$field == $pass
+
+

$d2[petition_name]
$field == $pass

+

$d2[eligibleVoterListEnforce]

"; + + if($_COOKIE['invite'] != '' && strtoupper($_COOKIE['invite']) == strtoupper($d2['web_short_name'])){ + $available .= ''; + } }else{ + // not a eligable voter + $checked = ''; + if($_COOKIE['invite'] != '' && strtoupper($_COOKIE['invite']) == strtoupper($d2['web_short_name'])){ + $checked = 'checked'; + }else{ + $checked = ''; + } + $mytest = $d[$field]; $available .= "
-
-
$d2[petition_name]
-
$field != $pass
+
"; if ($d2['eligibleVoterListEnforce'] == 'NO'){ $available .=""; }else{ $available .= "

Constituents Only

"; } $available .= "
+

$d2[petition_name]
$field != $pass ($mytest)

+

$d2[eligibleVoterListEnforce]

"; + if($d2['eligibleVoterListEnforce'] == 'NO' && $_COOKIE['invite'] != '' && strtoupper($_COOKIE['invite']) == strtoupper($d2['web_short_name']) ){ + $available .= ''; + }elseif($d2['eligibleVoterListEnforce'] == 'YES' && $_COOKIE['invite'] != '' && strtoupper($_COOKIE['invite']) == strtoupper($d2['web_short_name']) ){ + setcookie("invite", ""); // clear invite + $available .= ''; + } } } ?> -
+ + + query($q); + $d = mysqli_fetch_array($r); + ?> +
-

Active Petitions and Eligiblity Requirements to Sign.

+

-

Pick One

-

Petition Name

-

Requirements

+

Pick One

+

Petition Name
Eligible

+

Locked

-
-
+
+
+
+