insert-coin/resources/library/insert-coin.php

153 lines
2.8 KiB
PHP
Raw Normal View History

2018-02-03 23:14:25 -06:00
<?php
include("res/config.php");
2018-02-03 23:14:25 -06:00
function write_alias($filename, $target)
{
$file_p = fopen($filename, 'w');
fwrite($file_p, "<?php header('Location: " . $target . "'); ?>\n");
fclose($file_p);
return 0;
}
function write_metadata($filename, $source)
2018-02-03 23:14:25 -06:00
{
$metafile = fopen($filename . ".txt", 'w');
if (empty($source))
{
$source = "[citation needed]";
}
2018-02-03 23:14:25 -06:00
fwrite($metafile, "Source:\n\t" . implode('', sanitize_long_input($source, "\t")) . "\n");
fclose($metafile);
}
function sanitize_long_input($sanitizee, $preface)
{
$sanitized = [];
$sani_len = strlen($sanitizee) - 1;
if ($sani_len + 1 == 0)
{
$sanitized = "N/A";
return $sanitized;
}
$j = 0;
for($i = 0; $i <= $sani_len; $i++)
{
if ($i % 80 == 0 && $i != 0)
{
if (substr($sanitizee, $i, 1) == ' ')
{
$sanitized[$j] = "\n";
$sanitized[$j + 1] = $preface;
$j++;
}
else
{
$sanitized[$j] = "-";
$sanitized[$j + 1] = "\n";
$sanitized[$j + 2] = $preface;
$sanitized[$j + 3] = $sanitizee[$i];
$j += 3;
}
}
else
{
$sanitized[$j] = $sanitizee[$i];
}
$j++;
}
return $sanitized;
}
function sanitize_filename($sanitizee)
{
$sanitized = str_replace(" ", "_", $sanitizee);
$sanitized = str_replace("..", "_", $sanitized);
$sanitized = str_replace("/", "_", $sanitized);
$sanitized = str_replace("\\", "_", $sanitized);
return $sanitized;
}
function url_to_filename($url)
{
$working = explode('/', $url);
$filename = $working[count($working) - 1];
return $filename;
}
2018-04-07 21:15:07 -05:00
function get_cwd($url)
{
$url_array = (explode("/", $url));
if (end($url_array))
{
$parts = count($url_array);
2018-04-07 23:09:34 -05:00
$url = $_SERVER["HTTP_HOST"] . implode(array_splice($url_array, 1, $parts - 2));
2018-04-07 21:15:07 -05:00
return $url;
}
else
{
return $url;
}
}
2018-04-07 23:09:34 -05:00
function sanitize_image($path)
2018-04-07 21:48:41 -05:00
{
2018-04-07 23:09:34 -05:00
exec("mogrify -strip " . $path, $result);
2018-04-07 21:48:41 -05:00
}
2018-04-07 21:15:07 -05:00
function celebrate($dest_file, $item_type, $image_url, $image_alt, $meta_data = false)
{
?>
<title><?php echo($site_name . ": " . $item_type); ?> inserted <3</title>
<p>Thanks for feeding me</p>
<p>Your <?php echo($item_type); ?>'s in safe hands</p>
<img alt="<?php echo($image_alt); ?>" src="<?php echo($image_url); ?>">
<p>Your <?php echo($item_type); ?>'s
<a href="<?php echo ($dest_file); ?>">over here</a></p>
2018-04-07 21:15:07 -05:00
<p><b><?php echo("https://" . get_cwd($_SERVER["REQUEST_URI"]) . "/" . $dest_file); ?></b></p>
<?php
if ($meta_data)
{
?>
<p>It's meta-stuff (or lack thereof) is
<a href="<?php echo($dest_file); ?>.txt">here</a></p>
<?php
}
}
function celebrate_death($dest_file, $item_type, $image_url, $image_alt, $message)
{
2018-02-03 23:14:25 -06:00
?>
<title><?php echo($site_name . ": " . $item_type); ?> burned </3</title>
<p>Oh God, I've never seen so much blood—</p>
<p>err, I mean, there're just some minor problems under the hood!</p>
<img alt="<?php echo($image_alt); ?>" src="<?php echo($image_url); ?>">
<?php echo($message); ?>
<?php
}