mirror of https://github.com/pikami/palm-paste.git
127 lines
4.4 KiB
PHP
127 lines
4.4 KiB
PHP
<?php
|
|
include_once "config/config.php";
|
|
|
|
function generate_uid () {
|
|
$conn = GetConnectionToDB();
|
|
$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++) {
|
|
$name .= $chars[mt_rand(0, 61)];
|
|
// $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);
|
|
$conn = null;
|
|
return $name;
|
|
}
|
|
|
|
if(isset($_POST["type"])){
|
|
//===New_Paste===//
|
|
if($_POST["type"]=="paste" && isset($_POST["text"])){
|
|
/* Set paste details */
|
|
$title = "Untitled";
|
|
$text = $_POST["text"];
|
|
$exposure = 0;
|
|
if(isset($_POST["title"]) && $_POST["title"]!="")
|
|
$title = $_POST["title"];
|
|
if(isset($_POST["exposure"]) && is_numeric($_POST["exposure"]))
|
|
$exposure = $_POST["exposure"];
|
|
$uid = generate_uid();
|
|
$created = time();
|
|
$expire = 0;
|
|
if(isset($_POST["expire"]) && is_numeric($_POST["expire"]))
|
|
$expire = $created + $_POST["expire"];
|
|
$owner = 0;
|
|
$syntax = "plain";
|
|
if(isset($_POST["syntax"]))
|
|
$syntax=$_POST["syntax"];
|
|
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"]);
|
|
}
|
|
/* Add paste to database */
|
|
$conn = GetConnectionToDB();
|
|
$QuerySTR = "INSERT INTO pastes (uid,title,text,created,expire,exposure,owner,highlight)
|
|
VALUES (:uid, :tit, :txt, :cre, :exp, :exposure, :own, :hl)";
|
|
$stmt = $conn->prepare($QuerySTR);
|
|
$stmt->bindParam(':exp', $expire);
|
|
$stmt->bindParam(':uid', $uid);
|
|
$stmt->bindParam(':tit', $title);
|
|
$stmt->bindParam(':txt', $text);
|
|
$stmt->bindParam(':cre', $created);
|
|
$stmt->bindParam(':exposure', $exposure);
|
|
$stmt->bindParam(':own', $owner);
|
|
$stmt->bindParam(':hl', $syntax);
|
|
$stmt->execute();
|
|
$conn = null; //close connection to database
|
|
header("Location: ".$uid);
|
|
die();
|
|
} else if($_POST["type"]=="edit_paste" && isset($_POST["text"])){
|
|
/* Set paste details */
|
|
$title = "Untitled";
|
|
$text = $_POST["text"];
|
|
$exposure = 0;
|
|
if(isset($_POST["title"]))
|
|
$title = $_POST["title"];
|
|
if(isset($_POST["exposure"]) && is_numeric($_POST["exposure"]))
|
|
$exposure = $_POST["exposure"];
|
|
$uid = $_POST["uid"];
|
|
$created = time();
|
|
$expire = 0;
|
|
if(isset($_POST["expire"]) && is_numeric($_POST["expire"]))
|
|
$expire = $created + $_POST["expire"];
|
|
$owner = 0;
|
|
$syntax = "plain";
|
|
if(isset($_POST["syntax"]))
|
|
$syntax=$_POST["syntax"];
|
|
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"]);
|
|
}
|
|
/* Get the owner of the paste */
|
|
$paste_owner = 0;
|
|
$conn = GetConnectionToDB();
|
|
$stmt = $conn->query('SELECT owner FROM pastes WHERE uid="'.$uid.'"');
|
|
if($result = $stmt->fetch(PDO::FETCH_ASSOC)){
|
|
$paste_owner = $result['owner'];
|
|
}
|
|
/* Edit paste in database */
|
|
if($owner === $paste_owner && $owner !== 0){
|
|
$QuerySTR = " UPDATE pastes SET title=:tit,text=:txt,created=:cre,expire=:exp,exposure=:exposure,owner=:own,highlight=:hl
|
|
WHERE uid=:uid";
|
|
$stmt = $conn->prepare($QuerySTR);
|
|
$stmt->bindParam(':exp', $expire);
|
|
$stmt->bindParam(':uid', $uid);
|
|
$stmt->bindParam(':tit', $title);
|
|
$stmt->bindParam(':txt', $text);
|
|
$stmt->bindParam(':cre', $created);
|
|
$stmt->bindParam(':exposure', $exposure);
|
|
$stmt->bindParam(':own', $owner);
|
|
$stmt->bindParam(':hl', $syntax);
|
|
$stmt->execute();
|
|
$conn = null; //close connection to database
|
|
header("Location: ".$uid);
|
|
die();
|
|
} else {
|
|
$conn = null; //close connection to database
|
|
echo "<h1>This paste does not belong to you!</h1>";
|
|
die();
|
|
}
|
|
}
|
|
}
|
|
?>
|