From 29db8ac071beed2ecd1aabe7e20d177a4b93db3e Mon Sep 17 00:00:00 2001 From: dave Date: Fri, 16 Apr 2010 09:43:26 +0000 Subject: [PATCH] Make the roll() function able to determine all fields to roll, and properly handle fields that could be NULL. Use the roll() to roll awards and prizes, both had potential NULL fields that were rolling to '0', causing downloaded awards/prizes to be unrecognized after rollover. This also means we can add fields and rollover will continue to work properly. --- config/rollover.php | 137 ++++++++++++++++++-------------------------- 1 file changed, 56 insertions(+), 81 deletions(-) diff --git a/config/rollover.php b/config/rollover.php index 7671b306..3c7fbb4b 100644 --- a/config/rollover.php +++ b/config/rollover.php @@ -54,18 +54,52 @@ "; echo mysql_error(); } } @@ -75,6 +109,9 @@ $newfairyear=intval($_POST['nextfairyear']); $currentfairyear=intval($config['FAIRYEAR']); + $cy = $currentfairyear; + $ny = $newfairyear; + if($newfairyear<$currentfairyear) echo error(i18n("You cannot roll backwards in years!")); else if($newfairyear==$currentfairyear) @@ -172,83 +209,23 @@ echo i18n("Rolling awards")."
"; //awards + + $q=mysql_query("SELECT * FROM award_awards WHERE year='$currentfairyear'"); echo mysql_error(); - while($r=mysql_fetch_object($q)) - { - /* award_source_fairs_id could be NULL, we want to keep it NULL if it is */ - if($r->award_sourcefairs_id == null) - $award_source_fairs_id="NULL"; - else - $award_source_fairs_id="'".mysql_real_escape_string($r->award_source_fairs_id)."'"; - - mysql_query("INSERT INTO award_awards (sponsors_id,award_types_id,name,criteria,description, - presenter,`order`,year,excludefromac,cwsfaward,self_nominate,schedule_judges,external_identifier, - external_additional_materials,external_register_winners, - external_postback,award_source_fairs_id) VALUES ( - '".mysql_real_escape_string($r->sponsors_id)."', - '".mysql_real_escape_string($r->award_types_id)."', - '".mysql_real_escape_string($r->name)."', - '".mysql_real_escape_string($r->criteria)."', - '".mysql_real_escape_string($r->description)."', - '".mysql_real_escape_string($r->presenter)."', - '".mysql_real_escape_string($r->order)."', - '".mysql_real_escape_string($newfairyear)."', - '".mysql_real_escape_string($r->excludefromac)."', - '".mysql_real_escape_string($r->cwsfaward)."', - '".mysql_real_escape_string($r->self_nominate)."', - '".mysql_real_escape_string($r->schedule_judges)."', - '".mysql_real_escape_string($r->external_identifier)."', - '".mysql_real_escape_string($r->external_additional_materials)."', - '".mysql_real_escape_string($r->external_register_winners)."', - '".mysql_real_escape_string($r->external_postback)."', - $award_source_fairs_id)"); + while($r=mysql_fetch_object($q)) { + /* Roll the one award */ + roll($cy, $ny, 'award_awards', "id='{$r->id}'"); $award_awards_id=mysql_insert_id(); - - $q2=mysql_query("SELECT * FROM award_awards_projectcategories WHERE year='$currentfairyear' AND award_awards_id='$r->id'"); - echo mysql_error(); - while($r2=mysql_fetch_object($q2)) - { - mysql_query("INSERT INTO award_awards_projectcategories (award_awards_id,projectcategories_id,year) VALUES ( - '".mysql_real_escape_string($award_awards_id)."', - '".mysql_real_escape_string($r2->projectcategories_id)."', - '".mysql_real_escape_string($newfairyear)."')"); - } - - $q2=mysql_query("SELECT * FROM award_awards_projectdivisions WHERE year='$currentfairyear' AND award_awards_id='$r->id'"); - echo mysql_error(); - while($r2=mysql_fetch_object($q2)) - { - mysql_query("INSERT INTO award_awards_projectdivisions (award_awards_id,projectdivisions_id,year) VALUES ( - '".mysql_real_escape_string($award_awards_id)."', - '".mysql_real_escape_string($r2->projectdivisions_id)."', - '".mysql_real_escape_string($newfairyear)."')"); - - } + roll($cy, $ny, 'award_awards_projectcategories', "award_awards_id='{$r->id}'", + array('award_awards_id' => $award_awards_id)); + roll($cy, $ny, 'award_awards_projectdivisions', "award_awards_id='{$r->id}'", + array('award_awards_id' => $award_awards_id)); echo i18n("  Rolling award prizes")."
"; - $q2=mysql_query("SELECT * FROM award_prizes WHERE year='$currentfairyear' AND award_awards_id='$r->id'"); - echo mysql_error(); - while($r2=mysql_fetch_object($q2)) - { - mysql_query("INSERT INTO award_prizes (award_awards_id,cash,scholarship,`value`,prize,number,`order`,year,excludefromac,trophystudentkeeper,trophystudentreturn,trophyschoolkeeper,trophyschoolreturn,external_identifier) VALUES ( - '".mysql_real_escape_string($award_awards_id)."', - '".mysql_real_escape_string($r2->cash)."', - '".mysql_real_escape_string($r2->scholarship)."', - '".mysql_real_escape_string($r2->value)."', - '".mysql_real_escape_string($r2->prize)."', - '".mysql_real_escape_string($r2->number)."', - '".mysql_real_escape_string($r2->order)."', - '".mysql_real_escape_string($newfairyear)."', - '".mysql_real_escape_string($r2->excludefromac)."', - '".mysql_real_escape_string($r2->trophystudentkeeper)."', - '".mysql_real_escape_string($r2->trophystudentreturn)."', - '".mysql_real_escape_string($r2->trophyschoolkeeper)."', - '".mysql_real_escape_string($r2->trophyschoolreturn)."', - '".mysql_real_escape_string($r2->external_identifier)."' - )"); - } + roll($cy, $ny, 'award_prizes', "award_awards_id='{$r->id}'", + array('award_awards_id' => $award_awards_id)); } echo i18n("Rolling award types")."
"; @@ -308,15 +285,13 @@ '".mysql_real_escape_string($r->required)."', '".mysql_real_escape_string($r->ord)."')"); - echo i18n("Rolling registration fee items")."
"; //regfee items - roll($currentfairyear, $newfairyear, 'regfee_items', - array('name','description','cost','per')); + echo i18n("Rolling registration fee items")."
"; + roll($cy, $ny, 'regfee_items'); //volunteer positions echo i18n('Rolling volunteer positions')."
"; - roll($currentfairyear, $newfairyear, 'volunteer_positions', - array('name','desc','meet_place','start','end')); + roll($cy, $ny, 'volunteer_positions'); //timeslots and rounds echo i18n('Rolling judging timeslots and rounds')."
";