2012-04-29 19:15:06 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-11 11:58:15 +02:00
|
|
|
* PrivateBin
|
2012-04-29 19:15:06 +02:00
|
|
|
*
|
|
|
|
* a zero-knowledge paste bin
|
|
|
|
*
|
2016-07-11 11:58:15 +02:00
|
|
|
* @link https://github.com/PrivateBin/PrivateBin
|
2012-04-29 19:15:06 +02:00
|
|
|
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
|
2016-07-19 13:56:52 +02:00
|
|
|
* @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
|
2020-01-08 19:31:06 +01:00
|
|
|
* @version 1.3.2
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2016-12-12 18:43:23 +01:00
|
|
|
|
2016-12-12 18:49:08 +01:00
|
|
|
namespace PrivateBin\Data;
|
2016-07-21 17:09:48 +02:00
|
|
|
|
|
|
|
use Exception;
|
|
|
|
use PDO;
|
|
|
|
use PDOException;
|
2018-07-29 15:17:35 +02:00
|
|
|
use PrivateBin\Controller;
|
2019-05-13 22:31:52 +02:00
|
|
|
use PrivateBin\Json;
|
2016-07-21 17:09:48 +02:00
|
|
|
|
2012-04-29 19:15:06 +02:00
|
|
|
/**
|
2016-08-09 11:54:42 +02:00
|
|
|
* Database
|
2012-04-29 19:15:06 +02:00
|
|
|
*
|
2016-08-09 11:54:42 +02:00
|
|
|
* Model for database access, implemented as a singleton.
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2016-08-09 11:54:42 +02:00
|
|
|
class Database extends AbstractData
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2015-08-16 15:55:31 +02:00
|
|
|
/**
|
|
|
|
* cache for select queries
|
|
|
|
*
|
|
|
|
* @var array
|
2012-05-19 23:59:41 +02:00
|
|
|
*/
|
|
|
|
private static $_cache = array();
|
|
|
|
|
2015-08-16 15:55:31 +02:00
|
|
|
/**
|
|
|
|
* instance of database connection
|
|
|
|
*
|
2012-04-29 19:15:06 +02:00
|
|
|
* @access private
|
|
|
|
* @static
|
2015-08-16 15:55:31 +02:00
|
|
|
* @var PDO
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
|
|
|
private static $_db;
|
|
|
|
|
2015-08-16 15:55:31 +02:00
|
|
|
/**
|
|
|
|
* table prefix
|
|
|
|
*
|
2012-05-19 23:59:41 +02:00
|
|
|
* @access private
|
|
|
|
* @static
|
2015-08-16 15:55:31 +02:00
|
|
|
* @var string
|
2012-05-19 23:59:41 +02:00
|
|
|
*/
|
|
|
|
private static $_prefix = '';
|
|
|
|
|
2015-08-16 15:55:31 +02:00
|
|
|
/**
|
|
|
|
* database type
|
|
|
|
*
|
2012-05-19 23:59:41 +02:00
|
|
|
* @access private
|
|
|
|
* @static
|
2015-08-16 15:55:31 +02:00
|
|
|
* @var string
|
2012-05-19 23:59:41 +02:00
|
|
|
*/
|
|
|
|
private static $_type = '';
|
|
|
|
|
2012-04-29 19:15:06 +02:00
|
|
|
/**
|
|
|
|
* get instance of singleton
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
2015-08-16 15:55:31 +02:00
|
|
|
* @param array $options
|
2012-05-19 23:59:41 +02:00
|
|
|
* @throws Exception
|
2016-08-09 11:54:42 +02:00
|
|
|
* @return Database
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-10 22:21:03 +02:00
|
|
|
public static function getInstance(array $options)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
|
|
|
// if needed initialize the singleton
|
2016-08-15 16:45:47 +02:00
|
|
|
if (!(self::$_instance instanceof self)) {
|
2012-08-26 00:49:11 +02:00
|
|
|
self::$_instance = new self;
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
2012-05-19 23:59:41 +02:00
|
|
|
|
2019-05-19 09:42:55 +02:00
|
|
|
// set table prefix if given
|
|
|
|
if (array_key_exists('tbl', $options)) {
|
|
|
|
self::$_prefix = $options['tbl'];
|
|
|
|
}
|
2015-11-01 17:02:20 +01:00
|
|
|
|
2019-05-19 09:42:55 +02:00
|
|
|
// initialize the db connection with new options
|
|
|
|
if (
|
|
|
|
array_key_exists('dsn', $options) &&
|
|
|
|
array_key_exists('usr', $options) &&
|
|
|
|
array_key_exists('pwd', $options) &&
|
|
|
|
array_key_exists('opt', $options)
|
|
|
|
) {
|
|
|
|
// set default options
|
|
|
|
$options['opt'][PDO::ATTR_ERRMODE] = PDO::ERRMODE_EXCEPTION;
|
|
|
|
$options['opt'][PDO::ATTR_EMULATE_PREPARES] = false;
|
|
|
|
$options['opt'][PDO::ATTR_PERSISTENT] = true;
|
|
|
|
$db_tables_exist = true;
|
|
|
|
|
|
|
|
// setup type and dabase connection
|
|
|
|
self::$_type = strtolower(
|
|
|
|
substr($options['dsn'], 0, strpos($options['dsn'], ':'))
|
|
|
|
);
|
|
|
|
$tableQuery = self::_getTableQuery(self::$_type);
|
|
|
|
self::$_db = new PDO(
|
|
|
|
$options['dsn'],
|
|
|
|
$options['usr'],
|
|
|
|
$options['pwd'],
|
|
|
|
$options['opt']
|
|
|
|
);
|
|
|
|
|
|
|
|
// check if the database contains the required tables
|
|
|
|
$tables = self::$_db->query($tableQuery)->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
|
|
|
|
|
|
// create paste table if necessary
|
|
|
|
if (!in_array(self::_sanitizeIdentifier('paste'), $tables)) {
|
|
|
|
self::_createPasteTable();
|
|
|
|
$db_tables_exist = false;
|
|
|
|
}
|
2015-11-01 17:02:20 +01:00
|
|
|
|
2019-05-19 09:42:55 +02:00
|
|
|
// create comment table if necessary
|
|
|
|
if (!in_array(self::_sanitizeIdentifier('comment'), $tables)) {
|
|
|
|
self::_createCommentTable();
|
|
|
|
$db_tables_exist = false;
|
|
|
|
}
|
2012-05-19 23:59:41 +02:00
|
|
|
|
2019-05-19 09:42:55 +02:00
|
|
|
// create config table if necessary
|
|
|
|
$db_version = Controller::VERSION;
|
|
|
|
if (!in_array(self::_sanitizeIdentifier('config'), $tables)) {
|
|
|
|
self::_createConfigTable();
|
|
|
|
// if we only needed to create the config table, the DB is older then 0.22
|
|
|
|
if ($db_tables_exist) {
|
|
|
|
$db_version = '0.21';
|
2012-05-19 23:59:41 +02:00
|
|
|
}
|
2016-07-26 08:19:35 +02:00
|
|
|
} else {
|
2019-05-19 09:42:55 +02:00
|
|
|
$db_version = self::_getConfig('VERSION');
|
|
|
|
}
|
|
|
|
|
|
|
|
// update database structure if necessary
|
|
|
|
if (version_compare($db_version, Controller::VERSION, '<')) {
|
|
|
|
self::_upgradeDatabase($db_version);
|
2016-07-13 09:41:45 +02:00
|
|
|
}
|
2019-05-19 09:42:55 +02:00
|
|
|
} else {
|
|
|
|
throw new Exception(
|
|
|
|
'Missing configuration for key dsn, usr, pwd or opt in the section model_options, please check your configuration file', 6
|
|
|
|
);
|
2012-05-19 23:59:41 +02:00
|
|
|
}
|
|
|
|
|
2015-10-03 15:52:37 +02:00
|
|
|
return self::$_instance;
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
|
|
|
* @param array $paste
|
2012-05-19 23:59:41 +02:00
|
|
|
* @return bool
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
public function create($pasteid, array $paste)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2013-02-24 17:41:32 +01:00
|
|
|
if (
|
2015-09-21 22:32:52 +02:00
|
|
|
array_key_exists($pasteid, self::$_cache)
|
2012-08-26 00:49:11 +02:00
|
|
|
) {
|
2016-07-26 08:19:35 +02:00
|
|
|
if (false !== self::$_cache[$pasteid]) {
|
2012-08-26 00:49:11 +02:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
unset(self::$_cache[$pasteid]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-05 14:36:47 +02:00
|
|
|
$expire_date = 0;
|
|
|
|
$opendiscussion = $burnafterreading = false;
|
|
|
|
$attachment = $attachmentname = null;
|
|
|
|
$meta = $paste['meta'];
|
|
|
|
$isVersion1 = array_key_exists('data', $paste);
|
|
|
|
list($createdKey) = self::_getVersionedKeys($isVersion1 ? 1 : 2);
|
|
|
|
$created = (int) $meta[$createdKey];
|
|
|
|
unset($meta[$createdKey], $paste['meta']);
|
|
|
|
if (array_key_exists('expire_date', $meta)) {
|
|
|
|
$expire_date = (int) $meta['expire_date'];
|
2015-09-27 03:03:55 +02:00
|
|
|
unset($meta['expire_date']);
|
|
|
|
}
|
2019-05-05 14:36:47 +02:00
|
|
|
if (array_key_exists('opendiscussion', $meta)) {
|
2019-05-05 18:22:57 +02:00
|
|
|
$opendiscussion = $meta['opendiscussion'];
|
2015-09-21 22:32:52 +02:00
|
|
|
unset($meta['opendiscussion']);
|
|
|
|
}
|
2019-05-05 14:36:47 +02:00
|
|
|
if (array_key_exists('burnafterreading', $meta)) {
|
2019-05-05 18:22:57 +02:00
|
|
|
$burnafterreading = $meta['burnafterreading'];
|
2015-09-21 22:32:52 +02:00
|
|
|
unset($meta['burnafterreading']);
|
|
|
|
}
|
2019-05-05 14:36:47 +02:00
|
|
|
if ($isVersion1) {
|
|
|
|
if (array_key_exists('attachment', $meta)) {
|
|
|
|
$attachment = $meta['attachment'];
|
|
|
|
unset($meta['attachment']);
|
|
|
|
}
|
|
|
|
if (array_key_exists('attachmentname', $meta)) {
|
|
|
|
$attachmentname = $meta['attachmentname'];
|
|
|
|
unset($meta['attachmentname']);
|
|
|
|
}
|
2019-05-05 18:22:57 +02:00
|
|
|
} else {
|
|
|
|
$opendiscussion = $paste['adata'][2];
|
|
|
|
$burnafterreading = $paste['adata'][3];
|
2015-11-01 17:02:20 +01:00
|
|
|
}
|
2012-05-19 23:59:41 +02:00
|
|
|
return self::_exec(
|
2016-07-11 14:15:20 +02:00
|
|
|
'INSERT INTO ' . self::_sanitizeIdentifier('paste') .
|
|
|
|
' VALUES(?,?,?,?,?,?,?,?,?)',
|
2012-05-19 23:59:41 +02:00
|
|
|
array(
|
|
|
|
$pasteid,
|
2019-05-13 22:31:52 +02:00
|
|
|
$isVersion1 ? $paste['data'] : Json::encode($paste),
|
2019-05-05 14:36:47 +02:00
|
|
|
$created,
|
2015-09-27 03:03:55 +02:00
|
|
|
$expire_date,
|
2015-09-21 22:32:52 +02:00
|
|
|
(int) $opendiscussion,
|
|
|
|
(int) $burnafterreading,
|
2019-05-13 22:31:52 +02:00
|
|
|
Json::encode($meta),
|
2015-11-01 17:02:20 +01:00
|
|
|
$attachment,
|
|
|
|
$attachmentname,
|
2012-05-19 23:59:41 +02:00
|
|
|
)
|
|
|
|
);
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read a paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
2019-05-05 21:03:58 +02:00
|
|
|
* @return array|false
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
public function read($pasteid)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2019-05-05 21:03:58 +02:00
|
|
|
if (array_key_exists($pasteid, self::$_cache)) {
|
|
|
|
return self::$_cache[$pasteid];
|
|
|
|
}
|
2015-09-27 03:03:55 +02:00
|
|
|
|
2019-05-05 21:03:58 +02:00
|
|
|
self::$_cache[$pasteid] = false;
|
|
|
|
$paste = self::_select(
|
|
|
|
'SELECT * FROM ' . self::_sanitizeIdentifier('paste') .
|
|
|
|
' WHERE dataid = ?', array($pasteid), true
|
|
|
|
);
|
2015-11-01 17:02:20 +01:00
|
|
|
|
2019-05-05 21:03:58 +02:00
|
|
|
if ($paste === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// create array
|
2019-05-13 22:31:52 +02:00
|
|
|
$data = Json::decode($paste['data']);
|
2019-05-05 21:03:58 +02:00
|
|
|
$isVersion2 = array_key_exists('v', $data) && $data['v'] >= 2;
|
|
|
|
if ($isVersion2) {
|
|
|
|
self::$_cache[$pasteid] = $data;
|
2019-05-10 21:45:34 +02:00
|
|
|
list($createdKey) = self::_getVersionedKeys(2);
|
2019-05-05 21:03:58 +02:00
|
|
|
} else {
|
|
|
|
self::$_cache[$pasteid] = array('data' => $paste['data']);
|
2019-05-10 21:45:34 +02:00
|
|
|
list($createdKey) = self::_getVersionedKeys(1);
|
2019-05-05 21:03:58 +02:00
|
|
|
}
|
2019-05-05 18:22:57 +02:00
|
|
|
|
2019-05-19 09:42:55 +02:00
|
|
|
try {
|
|
|
|
$paste['meta'] = Json::decode($paste['meta']);
|
|
|
|
} catch (Exception $e) {
|
2019-05-08 22:11:21 +02:00
|
|
|
$paste['meta'] = array();
|
2019-05-05 21:03:58 +02:00
|
|
|
}
|
2019-05-10 21:45:34 +02:00
|
|
|
$paste = self::upgradePreV1Format($paste);
|
|
|
|
self::$_cache[$pasteid]['meta'] = $paste['meta'];
|
2019-05-05 21:03:58 +02:00
|
|
|
self::$_cache[$pasteid]['meta'][$createdKey] = (int) $paste['postdate'];
|
2019-05-10 21:45:34 +02:00
|
|
|
$expire_date = (int) $paste['expiredate'];
|
2019-05-05 21:03:58 +02:00
|
|
|
if ($expire_date > 0) {
|
|
|
|
self::$_cache[$pasteid]['meta']['expire_date'] = $expire_date;
|
|
|
|
}
|
|
|
|
if ($isVersion2) {
|
|
|
|
return self::$_cache[$pasteid];
|
|
|
|
}
|
|
|
|
|
|
|
|
// support v1 attachments
|
2019-05-08 22:11:21 +02:00
|
|
|
if (array_key_exists('attachment', $paste) && strlen($paste['attachment'])) {
|
2019-05-05 21:03:58 +02:00
|
|
|
self::$_cache[$pasteid]['attachment'] = $paste['attachment'];
|
|
|
|
if (array_key_exists('attachmentname', $paste) && strlen($paste['attachmentname'])) {
|
|
|
|
self::$_cache[$pasteid]['attachmentname'] = $paste['attachmentname'];
|
2012-08-26 00:49:11 +02:00
|
|
|
}
|
|
|
|
}
|
2019-05-05 21:03:58 +02:00
|
|
|
if ($paste['opendiscussion']) {
|
|
|
|
self::$_cache[$pasteid]['meta']['opendiscussion'] = true;
|
|
|
|
}
|
|
|
|
if ($paste['burnafterreading']) {
|
|
|
|
self::$_cache[$pasteid]['meta']['burnafterreading'] = true;
|
|
|
|
}
|
2012-05-19 23:59:41 +02:00
|
|
|
|
2012-08-26 00:49:11 +02:00
|
|
|
return self::$_cache[$pasteid];
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a paste and its discussion.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
public function delete($pasteid)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2012-05-19 23:59:41 +02:00
|
|
|
self::_exec(
|
2016-07-11 14:15:20 +02:00
|
|
|
'DELETE FROM ' . self::_sanitizeIdentifier('paste') .
|
|
|
|
' WHERE dataid = ?', array($pasteid)
|
2012-05-19 23:59:41 +02:00
|
|
|
);
|
|
|
|
self::_exec(
|
2016-07-11 14:15:20 +02:00
|
|
|
'DELETE FROM ' . self::_sanitizeIdentifier('comment') .
|
|
|
|
' WHERE pasteid = ?', array($pasteid)
|
2012-05-19 23:59:41 +02:00
|
|
|
);
|
2012-08-26 00:49:11 +02:00
|
|
|
if (
|
2015-08-27 21:41:21 +02:00
|
|
|
array_key_exists($pasteid, self::$_cache)
|
2016-07-26 08:19:35 +02:00
|
|
|
) {
|
|
|
|
unset(self::$_cache[$pasteid]);
|
|
|
|
}
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if a paste exists.
|
|
|
|
*
|
|
|
|
* @access public
|
2016-07-15 17:02:59 +02:00
|
|
|
* @param string $pasteid
|
2016-08-09 13:07:11 +02:00
|
|
|
* @return bool
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
public function exists($pasteid)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2012-05-19 23:59:41 +02:00
|
|
|
if (
|
|
|
|
!array_key_exists($pasteid, self::$_cache)
|
2016-07-26 08:19:35 +02:00
|
|
|
) {
|
|
|
|
self::$_cache[$pasteid] = $this->read($pasteid);
|
|
|
|
}
|
2012-05-19 23:59:41 +02:00
|
|
|
return (bool) self::$_cache[$pasteid];
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a comment in a paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
|
|
|
* @param string $parentid
|
|
|
|
* @param string $commentid
|
|
|
|
* @param array $comment
|
2016-07-11 15:47:42 +02:00
|
|
|
* @return bool
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
public function createComment($pasteid, $parentid, $commentid, array $comment)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2019-05-05 14:36:47 +02:00
|
|
|
if (array_key_exists('data', $comment)) {
|
|
|
|
$version = 1;
|
|
|
|
$data = $comment['data'];
|
|
|
|
} else {
|
|
|
|
$version = 2;
|
2019-05-13 22:31:52 +02:00
|
|
|
$data = Json::encode($comment);
|
2019-05-05 14:36:47 +02:00
|
|
|
}
|
|
|
|
list($createdKey, $iconKey) = self::_getVersionedKeys($version);
|
2019-05-10 21:45:34 +02:00
|
|
|
$meta = $comment['meta'];
|
2019-05-05 14:36:47 +02:00
|
|
|
unset($comment['meta']);
|
|
|
|
foreach (array('nickname', $iconKey) as $key) {
|
|
|
|
if (!array_key_exists($key, $meta)) {
|
|
|
|
$meta[$key] = null;
|
2016-07-18 10:14:38 +02:00
|
|
|
}
|
|
|
|
}
|
2012-05-19 23:59:41 +02:00
|
|
|
return self::_exec(
|
2016-07-11 14:15:20 +02:00
|
|
|
'INSERT INTO ' . self::_sanitizeIdentifier('comment') .
|
|
|
|
' VALUES(?,?,?,?,?,?,?)',
|
2012-05-19 23:59:41 +02:00
|
|
|
array(
|
2012-08-26 00:49:11 +02:00
|
|
|
$commentid,
|
2012-05-19 23:59:41 +02:00
|
|
|
$pasteid,
|
|
|
|
$parentid,
|
2019-05-05 14:36:47 +02:00
|
|
|
$data,
|
|
|
|
$meta['nickname'],
|
|
|
|
$meta[$iconKey],
|
|
|
|
$meta[$createdKey],
|
2012-05-19 23:59:41 +02:00
|
|
|
)
|
|
|
|
);
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read all comments of paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
|
|
|
* @return array
|
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
public function readComments($pasteid)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2012-05-19 23:59:41 +02:00
|
|
|
$rows = self::_select(
|
2016-07-11 14:15:20 +02:00
|
|
|
'SELECT * FROM ' . self::_sanitizeIdentifier('comment') .
|
|
|
|
' WHERE pasteid = ?', array($pasteid)
|
2012-05-19 23:59:41 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
// create comment list
|
|
|
|
$comments = array();
|
2016-07-26 08:19:35 +02:00
|
|
|
if (count($rows)) {
|
|
|
|
foreach ($rows as $row) {
|
2019-05-10 21:45:34 +02:00
|
|
|
$i = $this->getOpenSlot($comments, (int) $row['postdate']);
|
2019-05-13 22:31:52 +02:00
|
|
|
$data = Json::decode($row['data']);
|
2019-05-05 21:03:58 +02:00
|
|
|
if (array_key_exists('v', $data) && $data['v'] >= 2) {
|
2019-05-05 14:36:47 +02:00
|
|
|
$version = 2;
|
|
|
|
$comments[$i] = $data;
|
|
|
|
} else {
|
2019-05-05 21:03:58 +02:00
|
|
|
$version = 1;
|
|
|
|
$comments[$i] = array('data' => $row['data']);
|
2019-05-05 14:36:47 +02:00
|
|
|
}
|
|
|
|
list($createdKey, $iconKey) = self::_getVersionedKeys($version);
|
2019-05-10 21:45:34 +02:00
|
|
|
$comments[$i]['id'] = $row['dataid'];
|
|
|
|
$comments[$i]['parentid'] = $row['parentid'];
|
|
|
|
$comments[$i]['meta'] = array($createdKey => (int) $row['postdate']);
|
2019-05-05 14:36:47 +02:00
|
|
|
foreach (array('nickname' => 'nickname', 'vizhash' => $iconKey) as $rowKey => $commentKey) {
|
|
|
|
if (array_key_exists($rowKey, $row) && !empty($row[$rowKey])) {
|
2019-05-05 21:03:58 +02:00
|
|
|
$comments[$i]['meta'][$commentKey] = $row[$rowKey];
|
2017-03-25 00:58:59 +01:00
|
|
|
}
|
2016-07-26 08:19:35 +02:00
|
|
|
}
|
2012-05-19 23:59:41 +02:00
|
|
|
}
|
|
|
|
ksort($comments);
|
|
|
|
}
|
|
|
|
return $comments;
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if a comment exists.
|
|
|
|
*
|
|
|
|
* @access public
|
2016-07-15 17:02:59 +02:00
|
|
|
* @param string $pasteid
|
2012-04-29 19:15:06 +02:00
|
|
|
* @param string $parentid
|
|
|
|
* @param string $commentid
|
2016-08-09 13:07:11 +02:00
|
|
|
* @return bool
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
public function existsComment($pasteid, $parentid, $commentid)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2012-05-19 23:59:41 +02:00
|
|
|
return (bool) self::_select(
|
2016-07-11 14:15:20 +02:00
|
|
|
'SELECT dataid FROM ' . self::_sanitizeIdentifier('comment') .
|
|
|
|
' WHERE pasteid = ? AND parentid = ? AND dataid = ?',
|
2012-05-19 23:59:41 +02:00
|
|
|
array($pasteid, $parentid, $commentid), true
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-07-15 17:02:59 +02:00
|
|
|
/**
|
|
|
|
* Returns up to batch size number of paste ids that have expired
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @param int $batchsize
|
|
|
|
* @return array
|
|
|
|
*/
|
2019-05-10 21:52:14 +02:00
|
|
|
protected function _getExpiredPastes($batchsize)
|
2016-07-15 17:02:59 +02:00
|
|
|
{
|
|
|
|
$pastes = array();
|
2016-08-15 16:45:47 +02:00
|
|
|
$rows = self::_select(
|
2016-07-15 17:02:59 +02:00
|
|
|
'SELECT dataid FROM ' . self::_sanitizeIdentifier('paste') .
|
2019-05-05 21:03:58 +02:00
|
|
|
' WHERE expiredate < ? AND expiredate != ? LIMIT ?',
|
|
|
|
array(time(), 0, $batchsize)
|
2016-07-15 17:02:59 +02:00
|
|
|
);
|
2016-07-26 08:19:35 +02:00
|
|
|
if (count($rows)) {
|
|
|
|
foreach ($rows as $row) {
|
2016-07-15 17:02:59 +02:00
|
|
|
$pastes[] = $row['dataid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $pastes;
|
|
|
|
}
|
|
|
|
|
2012-05-19 23:59:41 +02:00
|
|
|
/**
|
|
|
|
* execute a statement
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param string $sql
|
|
|
|
* @param array $params
|
|
|
|
* @throws PDOException
|
2016-07-11 15:47:42 +02:00
|
|
|
* @return bool
|
2012-05-19 23:59:41 +02:00
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
private static function _exec($sql, array $params)
|
2012-05-19 23:59:41 +02:00
|
|
|
{
|
|
|
|
$statement = self::$_db->prepare($sql);
|
2016-08-15 16:45:47 +02:00
|
|
|
$result = $statement->execute($params);
|
2012-05-19 23:59:41 +02:00
|
|
|
$statement->closeCursor();
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* run a select statement
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param string $sql
|
|
|
|
* @param array $params
|
|
|
|
* @param bool $firstOnly if only the first row should be returned
|
|
|
|
* @throws PDOException
|
2019-05-19 09:42:55 +02:00
|
|
|
* @return array|false
|
2012-05-19 23:59:41 +02:00
|
|
|
*/
|
2019-05-10 22:04:47 +02:00
|
|
|
private static function _select($sql, array $params, $firstOnly = false)
|
2012-05-19 23:59:41 +02:00
|
|
|
{
|
|
|
|
$statement = self::$_db->prepare($sql);
|
|
|
|
$statement->execute($params);
|
|
|
|
$result = $firstOnly ?
|
|
|
|
$statement->fetch(PDO::FETCH_ASSOC) :
|
|
|
|
$statement->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
$statement->closeCursor();
|
|
|
|
return $result;
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
2015-11-01 17:02:20 +01:00
|
|
|
|
2019-05-05 14:36:47 +02:00
|
|
|
/**
|
|
|
|
* get version dependent key names
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param int $version
|
|
|
|
* @return array
|
|
|
|
*/
|
2019-05-10 21:52:14 +02:00
|
|
|
private static function _getVersionedKeys($version)
|
2019-05-05 14:36:47 +02:00
|
|
|
{
|
|
|
|
if ($version === 1) {
|
|
|
|
return array('postdate', 'vizhash');
|
|
|
|
}
|
|
|
|
return array('created', 'icon');
|
|
|
|
}
|
|
|
|
|
2015-11-01 17:02:20 +01:00
|
|
|
/**
|
|
|
|
* get table list query, depending on the database type
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param string $type
|
|
|
|
* @throws Exception
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private static function _getTableQuery($type)
|
|
|
|
{
|
2016-07-26 08:19:35 +02:00
|
|
|
switch ($type) {
|
2015-11-01 17:02:20 +01:00
|
|
|
case 'ibm':
|
|
|
|
$sql = 'SELECT tabname FROM SYSCAT.TABLES ';
|
|
|
|
break;
|
|
|
|
case 'informix':
|
|
|
|
$sql = 'SELECT tabname FROM systables ';
|
|
|
|
break;
|
|
|
|
case 'mssql':
|
2016-08-15 16:45:47 +02:00
|
|
|
$sql = 'SELECT name FROM sysobjects '
|
2015-11-01 17:02:20 +01:00
|
|
|
. "WHERE type = 'U' ORDER BY name";
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
|
|
$sql = 'SHOW TABLES';
|
|
|
|
break;
|
|
|
|
case 'oci':
|
|
|
|
$sql = 'SELECT table_name FROM all_tables';
|
|
|
|
break;
|
|
|
|
case 'pgsql':
|
2016-08-15 16:45:47 +02:00
|
|
|
$sql = 'SELECT c.relname AS table_name '
|
|
|
|
. 'FROM pg_class c, pg_user u '
|
2015-11-01 17:02:20 +01:00
|
|
|
. "WHERE c.relowner = u.usesysid AND c.relkind = 'r' "
|
2016-08-15 16:45:47 +02:00
|
|
|
. 'AND NOT EXISTS (SELECT 1 FROM pg_views WHERE viewname = c.relname) '
|
2015-11-01 17:02:20 +01:00
|
|
|
. "AND c.relname !~ '^(pg_|sql_)' "
|
2016-08-15 16:45:47 +02:00
|
|
|
. 'UNION '
|
|
|
|
. 'SELECT c.relname AS table_name '
|
|
|
|
. 'FROM pg_class c '
|
2015-11-01 17:02:20 +01:00
|
|
|
. "WHERE c.relkind = 'r' "
|
2016-08-15 16:45:47 +02:00
|
|
|
. 'AND NOT EXISTS (SELECT 1 FROM pg_views WHERE viewname = c.relname) '
|
|
|
|
. 'AND NOT EXISTS (SELECT 1 FROM pg_user WHERE usesysid = c.relowner) '
|
2015-11-01 17:02:20 +01:00
|
|
|
. "AND c.relname !~ '^pg_'";
|
|
|
|
break;
|
|
|
|
case 'sqlite':
|
|
|
|
$sql = "SELECT name FROM sqlite_master WHERE type='table' "
|
2016-08-15 16:45:47 +02:00
|
|
|
. 'UNION ALL SELECT name FROM sqlite_temp_master '
|
2015-11-01 17:02:20 +01:00
|
|
|
. "WHERE type='table' ORDER BY name";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Exception(
|
|
|
|
"PDO type $type is currently not supported.", 5
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get a value by key from the config table
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param string $key
|
|
|
|
* @throws PDOException
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private static function _getConfig($key)
|
|
|
|
{
|
|
|
|
$row = self::_select(
|
2016-07-11 14:15:20 +02:00
|
|
|
'SELECT value FROM ' . self::_sanitizeIdentifier('config') .
|
|
|
|
' WHERE id = ?', array($key), true
|
2015-11-01 17:02:20 +01:00
|
|
|
);
|
|
|
|
return $row['value'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the primary key clauses, depending on the database driver
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
2019-05-05 08:53:40 +02:00
|
|
|
* @param string $key
|
2015-11-01 17:02:20 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private static function _getPrimaryKeyClauses($key = 'dataid')
|
|
|
|
{
|
|
|
|
$main_key = $after_key = '';
|
2016-07-26 08:19:35 +02:00
|
|
|
if (self::$_type === 'mysql') {
|
2015-11-01 17:02:20 +01:00
|
|
|
$after_key = ", PRIMARY KEY ($key)";
|
2016-07-26 08:19:35 +02:00
|
|
|
} else {
|
2015-11-01 17:02:20 +01:00
|
|
|
$main_key = ' PRIMARY KEY';
|
|
|
|
}
|
|
|
|
return array($main_key, $after_key);
|
|
|
|
}
|
|
|
|
|
2019-05-05 08:53:40 +02:00
|
|
|
/**
|
|
|
|
* get the data type, depending on the database driver
|
|
|
|
*
|
2019-09-20 06:57:54 +02:00
|
|
|
* PostgreSQL uses a different API for BLOBs then SQL, hence we use TEXT
|
|
|
|
*
|
2019-05-05 08:53:40 +02:00
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private static function _getDataType()
|
|
|
|
{
|
|
|
|
return self::$_type === 'pgsql' ? 'TEXT' : 'BLOB';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the attachment type, depending on the database driver
|
|
|
|
*
|
2019-09-20 06:57:54 +02:00
|
|
|
* PostgreSQL uses a different API for BLOBs then SQL, hence we use TEXT
|
|
|
|
*
|
2019-05-05 08:53:40 +02:00
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private static function _getAttachmentType()
|
|
|
|
{
|
|
|
|
return self::$_type === 'pgsql' ? 'TEXT' : 'MEDIUMBLOB';
|
|
|
|
}
|
|
|
|
|
2015-11-01 17:02:20 +01:00
|
|
|
/**
|
|
|
|
* create the paste table
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
private static function _createPasteTable()
|
|
|
|
{
|
|
|
|
list($main_key, $after_key) = self::_getPrimaryKeyClauses();
|
2019-05-05 08:53:40 +02:00
|
|
|
$dataType = self::_getDataType();
|
2019-09-20 06:57:54 +02:00
|
|
|
$attachmentType = self::_getAttachmentType();
|
2015-11-01 17:02:20 +01:00
|
|
|
self::$_db->exec(
|
2016-07-11 14:15:20 +02:00
|
|
|
'CREATE TABLE ' . self::_sanitizeIdentifier('paste') . ' ( ' .
|
2015-11-01 17:02:20 +01:00
|
|
|
"dataid CHAR(16) NOT NULL$main_key, " .
|
2019-09-20 06:57:54 +02:00
|
|
|
"data $attachmentType, " .
|
2015-11-01 17:02:20 +01:00
|
|
|
'postdate INT, ' .
|
|
|
|
'expiredate INT, ' .
|
|
|
|
'opendiscussion INT, ' .
|
|
|
|
'burnafterreading INT, ' .
|
|
|
|
'meta TEXT, ' .
|
2019-09-20 06:57:54 +02:00
|
|
|
"attachment $attachmentType, " .
|
2016-07-18 15:55:51 +02:00
|
|
|
"attachmentname $dataType$after_key );"
|
2015-11-01 17:02:20 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* create the paste table
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
private static function _createCommentTable()
|
|
|
|
{
|
|
|
|
list($main_key, $after_key) = self::_getPrimaryKeyClauses();
|
2019-05-05 08:53:40 +02:00
|
|
|
$dataType = self::_getDataType();
|
2015-11-01 17:02:20 +01:00
|
|
|
self::$_db->exec(
|
2016-07-11 14:15:20 +02:00
|
|
|
'CREATE TABLE ' . self::_sanitizeIdentifier('comment') . ' ( ' .
|
2015-11-01 17:02:20 +01:00
|
|
|
"dataid CHAR(16) NOT NULL$main_key, " .
|
|
|
|
'pasteid CHAR(16), ' .
|
|
|
|
'parentid CHAR(16), ' .
|
2016-07-18 15:55:51 +02:00
|
|
|
"data $dataType, " .
|
|
|
|
"nickname $dataType, " .
|
|
|
|
"vizhash $dataType, " .
|
2015-11-01 17:02:20 +01:00
|
|
|
"postdate INT$after_key );"
|
|
|
|
);
|
|
|
|
self::$_db->exec(
|
2016-07-18 14:47:32 +02:00
|
|
|
'CREATE INDEX IF NOT EXISTS comment_parent ON ' .
|
|
|
|
self::_sanitizeIdentifier('comment') . '(pasteid);'
|
2015-11-01 17:02:20 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* create the paste table
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
private static function _createConfigTable()
|
|
|
|
{
|
|
|
|
list($main_key, $after_key) = self::_getPrimaryKeyClauses('id');
|
|
|
|
self::$_db->exec(
|
2016-07-11 14:15:20 +02:00
|
|
|
'CREATE TABLE ' . self::_sanitizeIdentifier('config') .
|
|
|
|
" ( id CHAR(16) NOT NULL$main_key, value TEXT$after_key );"
|
2015-11-01 17:02:20 +01:00
|
|
|
);
|
|
|
|
self::_exec(
|
2016-07-11 14:15:20 +02:00
|
|
|
'INSERT INTO ' . self::_sanitizeIdentifier('config') .
|
|
|
|
' VALUES(?,?)',
|
2018-07-29 15:17:35 +02:00
|
|
|
array('VERSION', Controller::VERSION)
|
2015-11-01 17:02:20 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-07-11 14:15:20 +02:00
|
|
|
/**
|
|
|
|
* sanitizes identifiers
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param string $identifier
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private static function _sanitizeIdentifier($identifier)
|
|
|
|
{
|
2016-07-11 14:33:45 +02:00
|
|
|
return preg_replace('/[^A-Za-z0-9_]+/', '', self::$_prefix . $identifier);
|
2016-07-11 14:15:20 +02:00
|
|
|
}
|
|
|
|
|
2015-11-01 17:02:20 +01:00
|
|
|
/**
|
|
|
|
* upgrade the database schema from an old version
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param string $oldversion
|
|
|
|
*/
|
|
|
|
private static function _upgradeDatabase($oldversion)
|
|
|
|
{
|
2019-09-20 06:57:54 +02:00
|
|
|
$dataType = self::_getDataType();
|
|
|
|
$attachmentType = self::_getAttachmentType();
|
2016-07-26 08:19:35 +02:00
|
|
|
switch ($oldversion) {
|
2015-11-01 17:02:20 +01:00
|
|
|
case '0.21':
|
|
|
|
// create the meta column if necessary (pre 0.21 change)
|
|
|
|
try {
|
2016-07-11 14:33:45 +02:00
|
|
|
self::$_db->exec('SELECT meta FROM ' . self::_sanitizeIdentifier('paste') . ' LIMIT 1;');
|
2015-11-01 17:02:20 +01:00
|
|
|
} catch (PDOException $e) {
|
2016-07-11 14:33:45 +02:00
|
|
|
self::$_db->exec('ALTER TABLE ' . self::_sanitizeIdentifier('paste') . ' ADD COLUMN meta TEXT;');
|
2015-11-01 17:02:20 +01:00
|
|
|
}
|
|
|
|
// SQLite only allows one ALTER statement at a time...
|
|
|
|
self::$_db->exec(
|
2016-07-18 15:55:51 +02:00
|
|
|
'ALTER TABLE ' . self::_sanitizeIdentifier('paste') .
|
2019-09-20 06:57:54 +02:00
|
|
|
" ADD COLUMN attachment $attachmentType;"
|
2015-11-01 17:02:20 +01:00
|
|
|
);
|
|
|
|
self::$_db->exec(
|
2016-07-18 15:55:51 +02:00
|
|
|
'ALTER TABLE ' . self::_sanitizeIdentifier('paste') . " ADD COLUMN attachmentname $dataType;"
|
2015-11-01 17:02:20 +01:00
|
|
|
);
|
|
|
|
// SQLite doesn't support MODIFY, but it allows TEXT of similar
|
|
|
|
// size as BLOB, so there is no need to change it there
|
2016-07-26 08:19:35 +02:00
|
|
|
if (self::$_type !== 'sqlite') {
|
2015-11-01 17:02:20 +01:00
|
|
|
self::$_db->exec(
|
2016-07-11 14:33:45 +02:00
|
|
|
'ALTER TABLE ' . self::_sanitizeIdentifier('paste') .
|
2019-09-20 06:57:54 +02:00
|
|
|
" ADD PRIMARY KEY (dataid), MODIFY COLUMN data $dataType;"
|
2015-11-01 17:02:20 +01:00
|
|
|
);
|
|
|
|
self::$_db->exec(
|
2016-07-11 14:33:45 +02:00
|
|
|
'ALTER TABLE ' . self::_sanitizeIdentifier('comment') .
|
2016-07-18 15:55:51 +02:00
|
|
|
" ADD PRIMARY KEY (dataid), MODIFY COLUMN data $dataType, " .
|
|
|
|
"MODIFY COLUMN nickname $dataType, MODIFY COLUMN vizhash $dataType;"
|
2015-11-01 17:02:20 +01:00
|
|
|
);
|
2016-07-26 08:19:35 +02:00
|
|
|
} else {
|
2015-11-01 17:02:20 +01:00
|
|
|
self::$_db->exec(
|
2016-07-18 14:47:32 +02:00
|
|
|
'CREATE UNIQUE INDEX IF NOT EXISTS paste_dataid ON ' .
|
|
|
|
self::_sanitizeIdentifier('paste') . '(dataid);'
|
2015-11-01 17:02:20 +01:00
|
|
|
);
|
|
|
|
self::$_db->exec(
|
2016-07-18 14:47:32 +02:00
|
|
|
'CREATE UNIQUE INDEX IF NOT EXISTS comment_dataid ON ' .
|
|
|
|
self::_sanitizeIdentifier('comment') . '(dataid);'
|
2015-11-01 17:02:20 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
self::$_db->exec(
|
2016-07-18 14:47:32 +02:00
|
|
|
'CREATE INDEX IF NOT EXISTS comment_parent ON ' .
|
|
|
|
self::_sanitizeIdentifier('comment') . '(pasteid);'
|
2015-11-01 17:02:20 +01:00
|
|
|
);
|
2017-10-04 21:55:03 +02:00
|
|
|
// no break, continue with updates for 0.22 and later
|
2019-09-20 06:57:54 +02:00
|
|
|
case '1.3':
|
|
|
|
// SQLite doesn't support MODIFY, but it allows TEXT of similar
|
|
|
|
// size as BLOB and PostgreSQL uses TEXT, so there is no need
|
|
|
|
// to change it there
|
|
|
|
if (self::$_type !== 'sqlite' && self::$_type !== 'pgsql') {
|
|
|
|
self::$_db->exec(
|
|
|
|
'ALTER TABLE ' . self::_sanitizeIdentifier('paste') .
|
|
|
|
" MODIFY COLUMN data $attachmentType;"
|
|
|
|
);
|
|
|
|
}
|
2020-01-08 19:31:06 +01:00
|
|
|
// no break, continue with updates for all newer versions
|
2017-10-04 21:55:03 +02:00
|
|
|
default:
|
2016-08-25 09:53:31 +02:00
|
|
|
self::_exec(
|
|
|
|
'UPDATE ' . self::_sanitizeIdentifier('config') .
|
|
|
|
' SET value = ? WHERE id = ?',
|
2018-07-29 15:17:35 +02:00
|
|
|
array(Controller::VERSION, 'VERSION')
|
2016-08-25 09:53:31 +02:00
|
|
|
);
|
2015-11-01 17:02:20 +01:00
|
|
|
}
|
|
|
|
}
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|