2016-06-09 09:22:48 +01:00
|
|
|
<?php
|
|
|
|
include "config/config.php";
|
2016-06-11 17:32:49 +01:00
|
|
|
|
|
|
|
function generate_uid () {
|
|
|
|
global $conn;
|
|
|
|
$name = '';
|
|
|
|
// We start at N retries, and --N until we give up
|
|
|
|
$tries = 500;
|
|
|
|
do {
|
|
|
|
// Iterate until we reach the maximum number of retries
|
|
|
|
if ($tries-- == 0) throw new Exception('Gave up trying to find an unused name', 500);
|
|
|
|
$chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
|
|
|
|
$name = '';
|
|
|
|
for ($i = 0; $i < 8; $i++) {
|
2016-06-12 10:57:55 +01:00
|
|
|
$name .= $chars[mt_rand(0, 61)];
|
2016-06-11 17:32:49 +01:00
|
|
|
// $chars string length is hardcoded, should use a variable to store it?
|
|
|
|
}
|
|
|
|
// Check if a paste with the same uid does already exist in the database
|
|
|
|
$q = $conn->prepare('SELECT COUNT(uid) FROM pastes WHERE uid = (:name)');
|
|
|
|
$q->bindValue(':name', $name, PDO::PARAM_STR);
|
|
|
|
$q->execute();
|
|
|
|
$result = $q->fetchColumn();
|
|
|
|
// If it does, generate a new uid
|
|
|
|
} while($result > 0);
|
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
|
2016-06-09 09:22:48 +01:00
|
|
|
if(isset($_POST["type"])){
|
|
|
|
//===New_Paste===//
|
|
|
|
if($_POST["type"]=="paste" && isset($_POST["text"])){
|
|
|
|
/* Set paste details */
|
|
|
|
$title = "Untitled";
|
|
|
|
$text = $_POST["text"];
|
2016-06-12 16:32:25 +01:00
|
|
|
$exposure = 0;
|
2016-06-09 09:22:48 +01:00
|
|
|
if(isset($_POST["title"]))
|
|
|
|
$title = $_POST["title"];
|
2016-06-12 16:32:25 +01:00
|
|
|
if(isset($_POST["exposure"]) && is_numeric($_POST["exposure"]))
|
|
|
|
$$exposure = $_POST["exposure"];
|
2016-06-11 17:32:49 +01:00
|
|
|
$uid = generate_uid();
|
2016-06-11 21:03:17 +01:00
|
|
|
$created = time();
|
|
|
|
$expire = 0;
|
|
|
|
if(isset($_POST["expire"]) && is_numeric($_POST["expire"]))
|
|
|
|
$expire = $created + $_POST["expire"];
|
2016-06-12 16:32:25 +01:00
|
|
|
$owner = 0;
|
|
|
|
if(isset($_POST["asguest"]) && $_POST["asguest"]=="on")
|
|
|
|
$owner = 0;
|
|
|
|
else if(isset($_COOKIE["pp_sid"]) && isset($_COOKIE["pp_skey"])){
|
|
|
|
include "includes/user.php";
|
|
|
|
$owner = GetUsersIDBySession($_COOKIE["pp_sid"],$_COOKIE["pp_skey"]);
|
|
|
|
}
|
2016-06-09 09:22:48 +01:00
|
|
|
/* Add paste to database */
|
2016-06-12 16:32:25 +01:00
|
|
|
$QuerySTR = "INSERT INTO pastes (uid,title,text,created,expire,exposure,owner)
|
|
|
|
VALUES (:uid, :tit, :txt, :cre, :exp, :exposure, :own)";
|
2016-06-11 21:03:17 +01:00
|
|
|
$stmt = $conn->prepare($QuerySTR);
|
2016-06-12 16:32:25 +01:00
|
|
|
$stmt->bindParam(':exp', $expire);
|
2016-06-11 17:32:49 +01:00
|
|
|
$stmt->bindParam(':uid', $uid);
|
2016-06-09 09:22:48 +01:00
|
|
|
$stmt->bindParam(':tit', $title);
|
|
|
|
$stmt->bindParam(':txt', $text);
|
2016-06-11 21:03:17 +01:00
|
|
|
$stmt->bindParam(':cre', $created);
|
2016-06-12 16:32:25 +01:00
|
|
|
$stmt->bindParam(':exposure', $exposure);
|
|
|
|
$stmt->bindParam(':own', $owner);
|
2016-06-09 09:22:48 +01:00
|
|
|
$stmt->execute();
|
|
|
|
$conn = null; //close connection to database
|
2016-06-11 17:32:49 +01:00
|
|
|
header("Location: ".$uid);
|
2016-06-09 10:02:09 +01:00
|
|
|
die();
|
2016-06-09 09:22:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$conn = null;
|
|
|
|
?>
|