ponepaste/index.php

259 lines
8.5 KiB
PHP
Raw Normal View History

2021-07-10 19:18:17 +01:00
<?php
/*
* Paste <https://github.com/jordansamuel/PASTE>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
2021-07-12 08:23:14 -04:00
*
2021-07-10 19:18:17 +01:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License in GPL.txt for more details.
*/
$directory = 'install';
if (file_exists($directory)) {
header("Location: install");
exit();
}
// Required functions
2021-07-10 17:54:43 -04:00
define('IN_PONEPASTE', 1);
require_once('includes/common.php');
2021-07-11 12:18:57 -04:00
require_once('includes/captcha.php');
require_once('includes/functions.php');
2021-07-10 19:18:17 +01:00
require_once('includes/password.php');
2021-07-12 08:23:14 -04:00
function verifyCaptcha() : string | bool {
global $cap_e;
global $mode;
global $recaptcha_secretkey;
global $lang;
if ($cap_e == "on" && !isset($_SESSION['username'])) {
if ($mode == "reCAPTCHA") {
$response = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=".$recaptcha_secretkey."&response=".$_POST['g-recaptcha-response']);
$response = json_decode($response, true);
if ($response["success"] == false) {
// reCAPTCHA Errors
return match ($response["error-codes"][0]) {
"missing-input-response" => $lang['missing-input-response'],
"missing-input-secret" => $lang['missing-input-secret'],
"invalid-input-secret" => $lang['invalid-input-secret'],
default => $lang['error']
};
}
} else {
$scode = strtolower(htmlentities(Trim($_POST['scode'])));
$cap_code = strtolower($_SESSION['captcha']['code']);
if ($cap_code !== $scode) {
return $lang['image_wrong']; // Wrong captcha.
}
}
}
return true;
}
/**
* Calculate the expiry of a paste based on user input.
*
* @param string $expiry Expiry time.
* SELF means to expire upon one view. +10M, +1H, +1D, +1W, +2W, +1M all do the obvious.
* Anything unhandled means to expire never.
* @return string|null Expiry time, or NULL if expires never.
*/
function calculatePasteExpiry(string $expiry) {
// used to use mktime
if ($expiry === 'self') {
return 'SELF'; // What does this do?
}
$valid_expiries = ['10M', '1H', '1D', '1W', '2W', '1M'];
return in_array($expiry, $valid_expiries)
? (new DateTime())->add(new DateInterval("P{$expiry}"))->format('U')
: null;
}
function validatePasteFields() : string | null {
global $lang;
global $pastelimit;
if (empty($_POST["paste_data"]) || trim($_POST['paste_data'] === '')) { /* Empty paste input */
return $lang['empty_paste'];
} elseif(!isset($_POST['title'])) { /* No paste title POSTed */
return $lang['error'];
} elseif (empty($_POST["tags"])) { /* No tags provided */
return $lang['notags'];
} elseif (strlen($_POST["title"]) > 70) { /* Paste title too long */
return $lang['titlelen'];
} elseif (mb_strlen($_POST["paste_data"], '8bit') > 1024 * 1024 * $pastelimit) { /* Paste size too big */
return $lang['large_paste'];
2021-07-10 17:54:43 -04:00
}
2021-07-10 19:18:17 +01:00
2021-07-12 08:23:14 -04:00
return null;
2021-07-10 19:18:17 +01:00
}
2021-07-10 17:54:43 -04:00
// UTF-8
header('Content-Type: text/html; charset=utf-8');
2021-07-10 19:18:17 +01:00
// Current date & user IP
$date = date('jS F Y');
$ip = $_SERVER['REMOTE_ADDR'];
// Sitemap
2021-07-12 08:23:14 -04:00
$site_sitemap_rows = $conn->query('SELECT * FROM sitemap_options LIMIT 1');
if ($row = $site_sitemap_rows->fetch()) {
2021-07-10 19:18:17 +01:00
$priority = $row['priority'];
$changefreq = $row['changefreq'];
}
// Captcha
2021-07-12 08:23:14 -04:00
$site_captcha_rows = $conn->query("SELECT * FROM captcha LIMIT 1");
if ($row = $site_captcha_rows->fetch()) {
2021-07-10 19:18:17 +01:00
$color = Trim($row['color']);
$mode = Trim($row['mode']);
$mul = Trim($row['mul']);
$allowed = Trim($row['allowed']);
$cap_e = Trim($row['cap_e']);
$recaptcha_sitekey = Trim($row['recaptcha_sitekey']);
$recaptcha_secretkey = Trim($row['recaptcha_secretkey']);
}
2021-07-12 08:23:14 -04:00
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
2021-07-10 19:18:17 +01:00
if ($cap_e == "on") {
if ($mode == "reCAPTCHA") {
$_SESSION['captcha_mode'] = "recaptcha";
$_SESSION['captcha'] = $recaptcha_sitekey;
} else {
$_SESSION['captcha_mode'] = "internal";
$_SESSION['captcha'] = captcha($color, $mode, $mul, $allowed);
}
} else {
$_SESSION['captcha_mode'] = "none";
}
}
2021-07-10 17:54:43 -04:00
updatePageViews($conn);
2021-07-10 19:18:17 +01:00
// POST Handler
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
2021-07-12 08:23:14 -04:00
$error = validatePasteFields();
2021-07-10 19:18:17 +01:00
2021-07-12 08:23:14 -04:00
if ($error !== null) {
goto OutPut;
}
$captchaResponse = verifyCaptcha();
if ($captchaResponse !== true) {
$error = $captchaResponse;
goto OutPut;
}
$editing = isset($_POST['edit']);
$p_title = Trim(htmlspecialchars($_POST['title']));
if (empty($p_title)) {
$p_title = 'Untitled';
}
$p_content = htmlspecialchars($_POST['paste_data']);
$p_visible = Trim(htmlspecialchars($_POST['visibility']));
$p_code = Trim(htmlspecialchars($_POST['format']));
$p_expiry = Trim(htmlspecialchars($_POST['paste_expire_date']));
$p_tagsys = Trim(htmlspecialchars($_POST['tags']));
$p_tagsys = rtrim($p_tagsys, ',');
$p_password = $_POST['pass'];
if ($p_password == "" || $p_password == null) {
$p_password = "NONE";
} else {
$p_password = password_hash($p_password, PASSWORD_DEFAULT);
}
$p_encrypt = Trim(htmlspecialchars($_POST['encrypted']));
if (empty($p_encrypt)) {
$p_encrypt = "0";
} else {
// Encrypt option
$p_encrypt = "1";
$p_content = encrypt($p_content);
}
if (isset($_SESSION['token'])) {
$p_member = Trim($_SESSION['username']);
} else {
$p_member = "Guest";
}
// Set expiry time
$expires = calculatePasteExpiry($p_expiry);
$p_date = date('jS F Y h:i:s A');
$date = date('jS F Y');
$now_time = mktime(date("H"), date("i"), date("s"), date("n"), date("j"), date("Y"));
$timeedit = gmmktime(date("H"), date("i"), date("s"), date("n"), date("j"), date("Y"));
// Edit existing paste or create new?
if ($editing) {
if (isset($_SESSION['username'])) {
$paste_id = intval($_POST['paste_id']);
2021-07-10 17:54:43 -04:00
$statement = $conn->prepare(
2021-07-12 08:23:14 -04:00
"UPDATE pastes SET title = ?, content = ?, visible = ?, code = ?, expiry = ?, password = ?, encrypt = ?, member = ?, ip = ?, tagsys = ?, now_time = ?, timeedit = ?
WHERE id = ?"
2021-07-10 17:54:43 -04:00
);
2021-07-12 08:23:14 -04:00
$statement->execute([
$p_title, $p_content, $p_visible, $p_code, $expires, $p_password, $p_encrypt, $p_member, $ip, $p_tagsys, $now_time, $timeedit, $edit_paste_id
]);
2021-07-10 19:18:17 +01:00
$success = $paste_id;
2021-07-12 08:23:14 -04:00
} else {
$error = 'You must be logged in to do that.'; // TODO: Lang?
}
2021-07-10 19:18:17 +01:00
} else {
2021-07-12 08:23:14 -04:00
$statement = $conn->prepare(
"INSERT INTO pastes (title, content, visible, code, expiry, password, encrypt, member, date, ip, now_time, views, s_date, tagsys) VALUES
(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, '0', ?, ?)"
);
$statement->execute([$p_title,$p_content,$p_visible,$p_code,$expires,$p_password,$p_encrypt,$p_member,$p_date,$ip,$now_time,$date,$p_tagsys]);
$paste_id = intval($conn->lastInsertId()); /* returns the last inserted ID as per the query above */
if ($p_visible == '0') {
addToSitemap($paste_id, $priority, $changefreq, $mod_rewrite);
}
$success = $paste_id;
2021-07-10 19:18:17 +01:00
}
2021-07-12 08:23:14 -04:00
// Redirect to paste on successful entry, or on successful edit redirect back to edited paste
if (isset($success)) {
if ($mod_rewrite == '1') {
if ($editing) {
2021-07-10 19:18:17 +01:00
$paste_url = "$edit_paste_id";
} else {
2021-07-12 08:23:14 -04:00
$paste_url = "$success";
2021-07-10 19:18:17 +01:00
}
} else {
2021-07-12 08:23:14 -04:00
if ($editing) {
2021-07-10 19:18:17 +01:00
$paste_url = "paste.php?id=$edit_paste_id";
} else {
$paste_url = "paste.php?id=$success";
}
}
2021-07-12 08:23:14 -04:00
header("Location: ${paste_url}");
die();
}
2021-07-10 19:18:17 +01:00
}
OutPut:
// Theme
require_once('theme/' . $default_theme . '/header.php');
require_once('theme/' . $default_theme . '/main.php');
require_once('theme/' . $default_theme . '/footer.php');
?>