mirror of
https://github.com/psenough/pouet.net.git
synced 2025-01-17 13:18:24 +01:00
159 lines
4.8 KiB
PHP
159 lines
4.8 KiB
PHP
<?
|
|
require("include/top.php");
|
|
|
|
if($whichwhen)
|
|
{
|
|
list($which,$when) = explode("|",$whichwhen);
|
|
}
|
|
|
|
$when2d = substr($when,-2);
|
|
$when = intval($when);
|
|
if ($when < 50) {
|
|
$when += 2000;
|
|
} elseif ($when < 100) {
|
|
$when += 1900;
|
|
}
|
|
|
|
unset($submitok);
|
|
// check the submitted data
|
|
if(is_uploaded_file($resultsfile))
|
|
{
|
|
|
|
// check user account
|
|
if(!$_SESSION["SESSION"]||!$_SESSION["SCENEID"])
|
|
$errormessage[]="you need to be logged in first.";
|
|
// check if there is already an nfo file for thid prod
|
|
if(file_exists("results/".$which."_".$when2d.".txt"))
|
|
{
|
|
if($SESSION_LEVEL=='administrator' || $SESSION_LEVEL=='moderator' || $SESSION_LEVEL=='gloperator')
|
|
{
|
|
unlink("results/".$which."_".$when2d.".txt");
|
|
copy($resultsfile, "results/".$which."_".$when2d.".txt");
|
|
unlink($resultsfile);
|
|
$errormessage[]="there was already a results file for this party but since you're so leet and all i replaced it.";
|
|
} else {
|
|
$errormessage[]="there is already an nfo file for this prod";
|
|
}
|
|
}
|
|
// check if there are any prods from this party year
|
|
$query = "SELECT count(0) FROM prods WHERE party=".$which." AND party_year=".$when;
|
|
$result = mysql_query($query);
|
|
if(!mysql_result($result,0))
|
|
$errormessage[] = "Why do you want to submit results for a year of a party with no prods on the database? (\/) Oo (\/)";
|
|
// check the nfo file
|
|
if(filesize($nfofile)>65536) {
|
|
$errormessage[]="the size of the infofile must not be greater than 64Kb";
|
|
}
|
|
|
|
// if everything is ok
|
|
if(!$errormessage)
|
|
$submitok=true;
|
|
}
|
|
|
|
if(!$submitok&&file_exists($resultsfile)){
|
|
unlink($resultsfile);
|
|
}
|
|
|
|
// move the submitted nfo to the appropriate location
|
|
if($submitok){
|
|
copy($resultsfile, "results/".$which."_".$when2d.".txt");
|
|
unlink($resultsfile);
|
|
}
|
|
|
|
?>
|
|
<br>
|
|
<form action="submitpartyresults.php" method="post" enctype="multipart/form-data">
|
|
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="65536">
|
|
<table bgcolor="#000000" cellspacing="1" cellpadding="0"><tr><td>
|
|
<table bgcolor="#000000" cellspacing="1" cellpadding="2">
|
|
<? if($submitok): ?>
|
|
<tr><th bgcolor="#224488">the resultsfile has been added</th></tr>
|
|
<tr>
|
|
<td bgcolor="#446688" align="center">
|
|
<!--feel free to add another one<br>-->
|
|
<a href="results.php?which=<? print($which); ?>&when=<? print($when); ?>">see what you've done</a><br>
|
|
</td>
|
|
</tr>
|
|
<? endif; ?>
|
|
<? if($errormessage): ?>
|
|
<tr><th bgcolor="#224488">errors found</th></tr>
|
|
<? for($i=0;$i<count($errormessage);$i++): ?>
|
|
<? if($i%2): ?>
|
|
<tr><td bgcolor="#557799"> <b>- <font color="#FF8888"><? print($errormessage[$i]); ?></font></b></td></tr>
|
|
<? else: ?>
|
|
<tr><td bgcolor="#446688"> <b>- <font color="#FF8888"><? print($errormessage[$i]); ?></font></b></td></tr>
|
|
<? endif; ?>
|
|
<? endfor; ?>
|
|
<? endif; ?>
|
|
<? if(!$submitok): ?>
|
|
<tr>
|
|
<th bgcolor="#224488">party information</th>
|
|
</tr>
|
|
<tr>
|
|
<td bgcolor="#446688">
|
|
<table>
|
|
<tr>
|
|
<? if($which&&$when):
|
|
$query="SELECT name FROM parties WHERE id=".$which;
|
|
$result=mysql_query($query);
|
|
$party_name=mysql_result($result,0);
|
|
?>
|
|
<input type="hidden" name="which" value="<?=$which?>">
|
|
<input type="hidden" name="when" value="<?=$when?>">
|
|
<td>party:</td>
|
|
<td valign="bottom">
|
|
<a href="party.php?which=<?=$which?>&when=<? print($when); ?>"><?=$party_name?> <?=$when?></a>
|
|
</td>
|
|
<? else:
|
|
// build the form
|
|
$query="select distinct prods.party_year,parties.id,parties.name from parties,prods where parties.id=prods.party order by parties.name";
|
|
$result=mysql_query($query);
|
|
$i=0;
|
|
while($tmp=mysql_fetch_array($result)) {
|
|
if(!file_exists("results/".$tmp["id"]."_".sprintf("%02d",$tmp["party_year"]).".txt")) {
|
|
$prods[$i]["id"]=$tmp["id"];
|
|
$prods[$i]["name"]=$tmp["name"];
|
|
$prods[$i]["party_year"]=$tmp["party_year"];
|
|
$i++;
|
|
}
|
|
}
|
|
?>
|
|
<td>select the prod you want<br>to upload a results file for:</td>
|
|
<td valign="bottom">
|
|
<select name="whichwhen">
|
|
<? for($i=1;$i<count($prods);$i++): ?>
|
|
<?
|
|
if($which==$prods[$i]["id"]) {
|
|
$is_selected = " selected";
|
|
} else {
|
|
$is_selected = "";
|
|
}
|
|
?>
|
|
<option value="<? print($prods[$i]["id"]."|".$prods[$i]["party_year"]); ?>"<? print($is_selected); ?>><? print($prods[$i]["name"]." ".sprintf("%02d",$prods[$i]["party_year"])); ?></option>
|
|
<? endfor; ?>
|
|
</select>
|
|
</td>
|
|
<? endif; ?>
|
|
</tr>
|
|
<tr>
|
|
<td>resultsfile:</td>
|
|
<td><input type="file" name="resultsfile"></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" align="center">
|
|
the results file must be an ascii textfile below 64k<br>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td bgcolor="#224488" align="right"><input type="image" src="gfx/submit.gif" style="border: 0px"></td>
|
|
</tr>
|
|
<? endif; ?>
|
|
</table>
|
|
</td></tr></table>
|
|
</form>
|
|
<br />
|
|
<? require("include/bottom.php"); ?>
|