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-03-22 06:44:04 +01:00
|
|
|
* @version 1.3.4
|
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
|
|
|
|
2012-04-29 19:15:06 +02:00
|
|
|
/**
|
2016-08-09 12:21:32 +02:00
|
|
|
* AbstractData
|
2012-04-29 19:15:06 +02:00
|
|
|
*
|
2016-07-11 11:58:15 +02:00
|
|
|
* Abstract model for PrivateBin data access, implemented as a singleton.
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2016-07-21 17:09:48 +02:00
|
|
|
abstract class AbstractData
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2015-09-27 03:03:55 +02:00
|
|
|
/**
|
2012-04-29 19:15:06 +02:00
|
|
|
* singleton instance
|
|
|
|
*
|
2015-08-16 15:55:31 +02:00
|
|
|
* @access protected
|
2012-04-29 19:15:06 +02:00
|
|
|
* @static
|
2016-08-09 12:21:32 +02:00
|
|
|
* @var AbstractData
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2012-04-30 22:58:08 +02:00
|
|
|
protected static $_instance = null;
|
2012-04-29 19:15:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* enforce singleton, disable constructor
|
|
|
|
*
|
2016-07-11 11:58:15 +02:00
|
|
|
* Instantiate using {@link getInstance()}, privatebin is a singleton object.
|
2012-04-29 19:15:06 +02:00
|
|
|
*
|
|
|
|
* @access protected
|
|
|
|
*/
|
2016-07-26 08:19:35 +02:00
|
|
|
protected function __construct()
|
|
|
|
{
|
|
|
|
}
|
2012-04-29 19:15:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* enforce singleton, disable cloning
|
|
|
|
*
|
2016-07-11 11:58:15 +02:00
|
|
|
* Instantiate using {@link getInstance()}, privatebin is a singleton object.
|
2012-04-29 19:15:06 +02:00
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
*/
|
2016-07-26 08:19:35 +02:00
|
|
|
private function __clone()
|
|
|
|
{
|
|
|
|
}
|
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
|
2017-03-25 00:58:59 +01:00
|
|
|
* @return AbstractData
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-05 18:22:57 +02:00
|
|
|
public static function getInstance(array $options)
|
2016-07-26 08:19:35 +02:00
|
|
|
{
|
|
|
|
}
|
2012-04-29 19:15:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
|
|
|
* @param array $paste
|
2015-09-03 22:55:36 +02:00
|
|
|
* @return bool
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
abstract public function create($pasteid, array $paste);
|
2012-04-29 19:15:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Read a paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
2019-05-19 09:42:55 +02:00
|
|
|
* @return array|false
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
abstract public function read($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
|
|
|
abstract public function delete($pasteid);
|
2012-04-29 19:15:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if a paste exists.
|
|
|
|
*
|
|
|
|
* @access public
|
2016-07-19 14:44:17 +02:00
|
|
|
* @param string $pasteid
|
2015-09-27 03:03:55 +02:00
|
|
|
* @return bool
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
abstract public function exists($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
|
2015-09-03 22:55:36 +02:00
|
|
|
* @return bool
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
abstract public function createComment($pasteid, $parentid, $commentid, array $comment);
|
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
|
|
|
abstract public function readComments($pasteid);
|
2012-04-29 19:15:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if a comment exists.
|
|
|
|
*
|
|
|
|
* @access public
|
2016-07-19 14:44:17 +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
|
|
|
abstract public function existsComment($pasteid, $parentid, $commentid);
|
2015-10-12 21:07:41 +02:00
|
|
|
|
2016-07-15 17:02:59 +02:00
|
|
|
/**
|
|
|
|
* Returns up to batch size number of paste ids that have expired
|
|
|
|
*
|
|
|
|
* @access protected
|
|
|
|
* @param int $batchsize
|
|
|
|
* @return array
|
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
abstract protected function _getExpiredPastes($batchsize);
|
2016-07-15 17:02:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform a purge of old pastes, at most the given batchsize is deleted.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param int $batchsize
|
|
|
|
*/
|
2019-05-10 22:35:18 +02:00
|
|
|
public function purge($batchsize)
|
2016-07-15 17:02:59 +02:00
|
|
|
{
|
2016-07-26 08:19:35 +02:00
|
|
|
if ($batchsize < 1) {
|
|
|
|
return;
|
|
|
|
}
|
2016-07-15 17:02:59 +02:00
|
|
|
$pastes = $this->_getExpiredPastes($batchsize);
|
2016-07-26 08:19:35 +02:00
|
|
|
if (count($pastes)) {
|
|
|
|
foreach ($pastes as $pasteid) {
|
2016-07-15 17:02:59 +02:00
|
|
|
$this->delete($pasteid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-12 21:07:41 +02:00
|
|
|
/**
|
|
|
|
* Get next free slot for comment from postdate.
|
|
|
|
*
|
2019-05-08 22:11:21 +02:00
|
|
|
* @access protected
|
2015-10-12 21:07:41 +02:00
|
|
|
* @param array $comments
|
|
|
|
* @param int|string $postdate
|
2016-07-19 14:44:17 +02:00
|
|
|
* @return int|string
|
2015-10-12 21:07:41 +02:00
|
|
|
*/
|
2019-05-05 18:22:57 +02:00
|
|
|
protected function getOpenSlot(array &$comments, $postdate)
|
2015-10-12 21:07:41 +02:00
|
|
|
{
|
2016-07-26 08:19:35 +02:00
|
|
|
if (array_key_exists($postdate, $comments)) {
|
2015-10-12 21:07:41 +02:00
|
|
|
$parts = explode('.', $postdate, 2);
|
2016-07-26 08:19:35 +02:00
|
|
|
if (!array_key_exists(1, $parts)) {
|
|
|
|
$parts[1] = 0;
|
|
|
|
}
|
2015-10-12 21:07:41 +02:00
|
|
|
++$parts[1];
|
2015-10-16 23:13:36 +02:00
|
|
|
return $this->getOpenSlot($comments, implode('.', $parts));
|
2015-10-12 21:07:41 +02:00
|
|
|
}
|
|
|
|
return $postdate;
|
|
|
|
}
|
2019-05-08 22:11:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Upgrade pre-version 1 pastes with attachment to version 1 format.
|
|
|
|
*
|
|
|
|
* @access protected
|
|
|
|
* @static
|
|
|
|
* @param array $paste
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected static function upgradePreV1Format(array $paste)
|
|
|
|
{
|
|
|
|
if (array_key_exists('attachment', $paste['meta'])) {
|
|
|
|
$paste['attachment'] = $paste['meta']['attachment'];
|
|
|
|
unset($paste['meta']['attachment']);
|
|
|
|
if (array_key_exists('attachmentname', $paste['meta'])) {
|
|
|
|
$paste['attachmentname'] = $paste['meta']['attachmentname'];
|
|
|
|
unset($paste['meta']['attachmentname']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $paste;
|
|
|
|
}
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|