shorturl/process.php

75 lines
1.8 KiB
PHP
Raw Normal View History

2013-10-06 15:00:00 +02:00
<?php
require('config.php');
function sort_array(&$array, $key, $order=SORT_DESC) {
$sort_keys = array();
foreach ($array as $key2 => $entry) {
$sort_keys[$key2] = $entry[$key];
2013-10-09 15:00:00 +02:00
}
return array_multisort($sort_keys, $order, $array);
2013-10-06 15:00:00 +02:00
}
2013-10-09 15:00:00 +02:00
if(empty($_POST['url'])) {
header('location : index.php');
2013-10-09 15:00:00 +02:00
}
else {
if (is_readable(DATA_FILE)) {
$data = unserialize(gzinflate(file_get_contents(DATA_FILE)));
}
else {
$data = array();
2013-10-09 15:00:00 +02:00
}
2013-10-06 15:00:00 +02:00
}
?>
<!DOCTYPE html>
<html lang="fr">
2013-10-09 15:00:00 +02:00
<head>
<meta charset="utf-8">
<title>Shorten me !</title>
2013-10-09 15:00:00 +02:00
<link rel="stylesheet" media="screen" type="text/css" href="design.css" />
</head>
<body>
<h1>It was too long !</h1>
2013-10-06 15:00:00 +02:00
<?php
2013-10-09 15:00:00 +02:00
if (isset($_POST['short']) && $_POST['short'] != "") {
$short = htmlspecialchars($_POST['short']);
}
else {
$short = dechex(crc32($_POST['url']));
}
if (isset($_POST['url']) && $_POST['url'] != "") {
$url = htmlspecialchars($_POST['url']);
$array = array("url"=>$url, "short"=>$short);
if (count($data) >= MAX_SAVED_URLS)
{
// Delete the first element
sort_array($data, 'timestamp');
array_shift($data);
}
// Store short link in the data array
$data[$short] = array('timestamp'=>time(), 'url'=>$url);
2013-10-09 15:00:00 +02:00
// Save it in the file
file_put_contents(DATA_FILE, gzdeflate(serialize($data)));
2013-10-09 15:00:00 +02:00
// Echoes the result
$new_url = BASE_URL.'/?'.$short;
2013-10-09 15:00:00 +02:00
?>
<p>Your shorten URL:<br/>
<strong><a href="<?php echo $new_url ?>"><?php echo $new_url; ?></a></strong>
</p>
<p>Short link for: <?php echo '<a href="'.$url.'">'.$url.'</a>'; ?></p>
2013-10-09 15:00:00 +02:00
<?php
}
else {
echo "<p>Missing URL. <a href='index.php'>Back to index page</a>.</p>";
}
2013-10-06 15:00:00 +02:00
?>
2013-10-09 15:00:00 +02:00
</body>
2013-10-06 15:00:00 +02:00
</html>