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
|
2016-12-26 12:13:50 +01:00
|
|
|
* @version 1.1
|
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
|
|
|
|
2016-08-09 12:45:26 +02:00
|
|
|
use stdClass;
|
|
|
|
|
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
|
|
|
*/
|
2016-07-26 08:19:35 +02:00
|
|
|
public static function getInstance($options)
|
|
|
|
{
|
|
|
|
}
|
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
|
|
|
*/
|
2012-04-30 22:58:08 +02:00
|
|
|
abstract public function create($pasteid, $paste);
|
2012-04-29 19:15:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Read a paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
2016-07-06 14:12:14 +02:00
|
|
|
* @return stdClass|false
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2012-04-30 22:58:08 +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
|
|
|
|
*/
|
2012-04-30 22:58:08 +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
|
|
|
*/
|
2012-04-30 22:58:08 +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
|
|
|
*/
|
2012-04-30 22:58:08 +02:00
|
|
|
abstract public function createComment($pasteid, $parentid, $commentid, $comment);
|
2012-04-29 19:15:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Read all comments of paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-04-30 22:58:08 +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
|
|
|
*/
|
2012-04-30 22:58:08 +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
|
|
|
|
*/
|
|
|
|
abstract protected function _getExpiredPastes($batchsize);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform a purge of old pastes, at most the given batchsize is deleted.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param int $batchsize
|
|
|
|
*/
|
|
|
|
public function purge($batchsize)
|
|
|
|
{
|
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.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @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
|
|
|
*/
|
|
|
|
protected function getOpenSlot(&$comments, $postdate)
|
|
|
|
{
|
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;
|
|
|
|
}
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|