2018-02-03 23:14:25 -06:00
|
|
|
<?php
|
2018-04-07 18:19:14 -05:00
|
|
|
$page_title = "The Beaming";
|
2018-02-03 23:14:25 -06:00
|
|
|
|
2018-04-07 18:19:14 -05:00
|
|
|
include("res/config.php");
|
2018-02-03 23:14:25 -06:00
|
|
|
include("lib.php");
|
2017-12-03 22:20:10 -06:00
|
|
|
|
2018-04-07 18:19:14 -05:00
|
|
|
include("res/header.php");
|
|
|
|
echo("\n<main>\n");
|
2017-12-19 15:07:09 -06:00
|
|
|
|
2017-12-03 22:20:10 -06:00
|
|
|
|
2018-04-07 18:19:14 -05:00
|
|
|
if (!empty($_POST["desired_filename"]))
|
2017-12-03 22:20:10 -06:00
|
|
|
{
|
2018-02-03 23:14:25 -06:00
|
|
|
$file_name = $_POST["desired_filename"];
|
2018-04-07 20:40:17 -05:00
|
|
|
|
|
|
|
if (!pathinfo($file_name, PATHINFO_EXTENSION))
|
|
|
|
{
|
|
|
|
$file_name = $file_name . "." .
|
|
|
|
(pathinfo($_FILES["fileToUpload"]["name"],
|
|
|
|
PATHINFO_EXTENSION));
|
|
|
|
}
|
|
|
|
|
2018-04-07 18:19:14 -05:00
|
|
|
$beaming_permitted = 0;
|
2017-12-03 22:20:10 -06:00
|
|
|
}
|
2018-02-03 23:14:25 -06:00
|
|
|
else if (!empty($_FILES["fileToUpload"]["name"]))
|
2017-12-03 22:20:10 -06:00
|
|
|
{
|
2018-02-03 23:14:25 -06:00
|
|
|
$file_name = $_FILES["fileToUpload"]["name"];
|
2018-04-07 18:19:14 -05:00
|
|
|
$file_name = sanitize_filename($file_name);
|
|
|
|
$dest_file = $file_beam_dir . $file_name;
|
|
|
|
|
|
|
|
$beaming_permitted = 0;
|
2017-12-03 22:20:10 -06:00
|
|
|
}
|
2018-02-03 23:14:25 -06:00
|
|
|
else
|
|
|
|
{
|
2018-04-07 18:19:14 -05:00
|
|
|
$beaming_permitted = 1;
|
2018-02-03 23:14:25 -06:00
|
|
|
}
|
|
|
|
|
2018-04-07 20:40:17 -05:00
|
|
|
$file_name = sanitize_filename($file_name);
|
|
|
|
$dest_file = $file_beam_dir . $file_name;
|
|
|
|
|
2017-12-03 21:59:23 -06:00
|
|
|
if (file_exists($dest_file))
|
|
|
|
{
|
2018-04-07 18:19:14 -05:00
|
|
|
$beaming_permitted = 2;
|
2017-12-03 21:59:23 -06:00
|
|
|
}
|
2018-02-03 23:14:25 -06:00
|
|
|
|
2018-04-07 18:19:14 -05:00
|
|
|
|
|
|
|
|
|
|
|
switch ($beaming_permitted)
|
2017-12-03 21:59:23 -06:00
|
|
|
{
|
2018-04-07 18:19:14 -05:00
|
|
|
case 1:
|
|
|
|
celebrate_death($dest_file, $file_beam_item,
|
|
|
|
$file_beam_die_img, $file_beam_die_alt,
|
|
|
|
"<p>… you didn't upload anything, dope.
|
|
|
|
<p>Try again.</p>");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
celebrate_death($dest_file, $url_aliasize_item,
|
|
|
|
$file_beam_die_img, $file_beam_die_alt,
|
|
|
|
"<p>Er, that coin already exists— try a different file-name.</p>");
|
|
|
|
break;
|
|
|
|
case 0:
|
2018-02-03 23:14:25 -06:00
|
|
|
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"],$dest_file))
|
|
|
|
{
|
2018-04-07 18:19:14 -05:00
|
|
|
write_metadata($dest_file, $_POST["file_source"]);
|
|
|
|
celebrate($dest_file, $file_beam_item,
|
|
|
|
$file_beam_win_img, $file_beam_win_alt, true);
|
2018-02-03 23:14:25 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-04-07 18:19:14 -05:00
|
|
|
celebrate_death($dest_file, $url_aliasize_item,
|
|
|
|
$file_beam_die_img, $file_beam_die_alt,
|
|
|
|
"<p>What the hell just happened? :o</p>
|
|
|
|
<p>I dunno, but maybe you should give it another go?</p>");
|
2018-02-03 23:14:25 -06:00
|
|
|
}
|
2018-04-07 18:19:14 -05:00
|
|
|
break;
|
2017-12-03 21:59:23 -06:00
|
|
|
}
|
|
|
|
|
2017-12-22 23:07:38 -06:00
|
|
|
?>
|
|
|
|
|
|
|
|
</main>
|
2017-12-03 21:59:23 -06:00
|
|
|
|
2017-12-22 23:07:38 -06:00
|
|
|
<?php
|
2018-04-07 18:19:14 -05:00
|
|
|
include("res/footer.html");
|
2017-12-21 01:13:31 -06:00
|
|
|
?>
|