2013-10-06 15:00:00 +02:00
|
|
|
<?php
|
2013-10-10 15:00:00 +02:00
|
|
|
require('config.php');
|
2013-10-06 15:00:00 +02:00
|
|
|
// Add a new line to $data
|
2013-10-09 15:00:00 +02:00
|
|
|
function add($that) {
|
|
|
|
global $data;
|
2013-10-10 15:00:00 +02:00
|
|
|
if (count($data) >= MAX_SAVED_URLS)
|
2013-10-09 15:00:00 +02:00
|
|
|
{
|
|
|
|
// Delete the first element
|
|
|
|
array_shift($data);
|
|
|
|
}
|
|
|
|
// Add that to the array
|
|
|
|
array_push($data, $that);
|
|
|
|
return $data;
|
2013-10-06 15:00:00 +02:00
|
|
|
}
|
|
|
|
|
2013-10-09 15:00:00 +02:00
|
|
|
if(empty($_POST['url'])) {
|
2013-10-10 15:00:00 +02:00
|
|
|
header('location : index.php');
|
2013-10-09 15:00:00 +02:00
|
|
|
}
|
|
|
|
else {
|
2013-10-10 15:00:00 +02:00
|
|
|
if (is_readable(DATA_FILE)) {
|
|
|
|
$data = unserialize(gzinflate(file_get_contents(DATA_DIR.ASSOC_NAME)));
|
|
|
|
}
|
|
|
|
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>
|
|
|
|
<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);
|
|
|
|
// Add the association at the end of $data array
|
|
|
|
$data = add($array);
|
|
|
|
// Save it in the file
|
2013-10-10 15:00:00 +02:00
|
|
|
file_put_contents(DATA_FILE, gzdeflate(serialize($data)));
|
2013-10-09 15:00:00 +02:00
|
|
|
// Echoes the result
|
|
|
|
$new_url = $BASE_URL.'/?'.$short;
|
|
|
|
?>
|
|
|
|
<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>
|
|
|
|
<?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>
|