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
|
2021-04-05 16:44:12 +02:00
|
|
|
* @version 1.3.5
|
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-08-09 11:54:42 +02:00
|
|
|
|
2021-06-07 06:53:15 +02:00
|
|
|
use Exception;
|
|
|
|
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
|
|
|
* Filesystem
|
2012-04-29 19:15:06 +02:00
|
|
|
*
|
2016-08-09 11:54:42 +02:00
|
|
|
* Model for filesystem data access, implemented as a singleton.
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2016-08-09 11:54:42 +02:00
|
|
|
class Filesystem extends AbstractData
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2021-06-07 06:53:15 +02:00
|
|
|
/**
|
2021-06-14 06:44:30 +02:00
|
|
|
* first line in paste or comment files, to protect their contents from browsing exposed data directories
|
2021-06-07 06:53:15 +02:00
|
|
|
*
|
|
|
|
* @const string
|
|
|
|
*/
|
|
|
|
const PROTECTION_LINE = '<?php http_response_code(403); /*';
|
|
|
|
|
2021-06-14 06:44:30 +02:00
|
|
|
/**
|
|
|
|
* line in generated .htaccess files, to protect exposed directories from being browsable on apache web servers
|
|
|
|
*
|
|
|
|
* @const string
|
|
|
|
*/
|
|
|
|
const HTACCESS_LINE = 'Require all denied';
|
|
|
|
|
2021-06-07 06:53:15 +02:00
|
|
|
/**
|
|
|
|
* path in which to persist something
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private static $_path = 'data';
|
|
|
|
|
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
|
2016-08-09 11:54:42 +02:00
|
|
|
* @return Filesystem
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-10 21:35:36 +02:00
|
|
|
public static function getInstance(array $options)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2017-03-24 21:30:08 +01:00
|
|
|
// if needed initialize the singleton
|
|
|
|
if (!(self::$_instance instanceof self)) {
|
|
|
|
self::$_instance = new self;
|
|
|
|
}
|
2012-04-30 13:58:29 +02:00
|
|
|
// if given update the data directory
|
|
|
|
if (
|
2015-08-27 21:41:21 +02:00
|
|
|
is_array($options) &&
|
|
|
|
array_key_exists('dir', $options)
|
2016-07-26 08:19:35 +02:00
|
|
|
) {
|
2021-06-07 06:53:15 +02:00
|
|
|
self::$_path = $options['dir'];
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
2012-08-26 00:49:11 +02:00
|
|
|
return self::$_instance;
|
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
|
|
|
public function create($pasteid, array $paste)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
|
|
|
$storagedir = self::_dataid2path($pasteid);
|
2017-10-08 11:03:17 +02:00
|
|
|
$file = $storagedir . $pasteid . '.php';
|
2017-03-24 23:42:11 +01:00
|
|
|
if (is_file($file)) {
|
2016-07-26 08:19:35 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!is_dir($storagedir)) {
|
2016-08-09 11:54:42 +02:00
|
|
|
mkdir($storagedir, 0700, true);
|
2016-07-26 08:19:35 +02:00
|
|
|
}
|
2021-06-07 06:53:15 +02:00
|
|
|
return self::_store($file, $paste);
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read a paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
2019-05-08 22:11:21 +02:00
|
|
|
* @return array|false
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
|
|
|
public function read($pasteid)
|
|
|
|
{
|
2021-06-16 05:50:41 +02:00
|
|
|
if (
|
|
|
|
!$this->exists($pasteid) ||
|
|
|
|
!$paste = self::_get(self::_dataid2path($pasteid) . $pasteid . '.php')
|
|
|
|
) {
|
2016-07-26 08:19:35 +02:00
|
|
|
return false;
|
|
|
|
}
|
2021-06-16 05:50:41 +02:00
|
|
|
return self::upgradePreV1Format($paste);
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a paste and its discussion.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
|
|
|
*/
|
|
|
|
public function delete($pasteid)
|
|
|
|
{
|
2016-08-09 11:54:42 +02:00
|
|
|
$pastedir = self::_dataid2path($pasteid);
|
|
|
|
if (is_dir($pastedir)) {
|
|
|
|
// Delete the paste itself.
|
2017-10-08 11:03:17 +02:00
|
|
|
if (is_file($pastedir . $pasteid . '.php')) {
|
|
|
|
unlink($pastedir . $pasteid . '.php');
|
2016-08-09 11:54:42 +02:00
|
|
|
}
|
2012-04-29 19:15:06 +02:00
|
|
|
|
2016-08-09 11:54:42 +02:00
|
|
|
// Delete discussion if it exists.
|
|
|
|
$discdir = self::_dataid2discussionpath($pasteid);
|
|
|
|
if (is_dir($discdir)) {
|
|
|
|
// Delete all files in discussion directory
|
|
|
|
$dir = dir($discdir);
|
|
|
|
while (false !== ($filename = $dir->read())) {
|
|
|
|
if (is_file($discdir . $filename)) {
|
|
|
|
unlink($discdir . $filename);
|
|
|
|
}
|
2016-07-26 08:19:35 +02:00
|
|
|
}
|
2016-08-09 11:54:42 +02:00
|
|
|
$dir->close();
|
|
|
|
rmdir($discdir);
|
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
|
2016-08-09 13:07:11 +02:00
|
|
|
* @return bool
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2019-05-10 21:52:14 +02:00
|
|
|
public function exists($pasteid)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2017-10-08 11:03:17 +02:00
|
|
|
$basePath = self::_dataid2path($pasteid) . $pasteid;
|
|
|
|
$pastePath = $basePath . '.php';
|
|
|
|
// convert to PHP protected files if needed
|
|
|
|
if (is_readable($basePath)) {
|
2021-06-07 06:53:15 +02:00
|
|
|
self::_prependRename($basePath, $pastePath);
|
2017-10-08 11:03:17 +02:00
|
|
|
|
|
|
|
// convert comments, too
|
2017-10-08 19:16:09 +02:00
|
|
|
$discdir = self::_dataid2discussionpath($pasteid);
|
2017-10-08 11:03:17 +02:00
|
|
|
if (is_dir($discdir)) {
|
|
|
|
$dir = dir($discdir);
|
|
|
|
while (false !== ($filename = $dir->read())) {
|
|
|
|
if (substr($filename, -4) !== '.php' && strlen($filename) >= 16) {
|
|
|
|
$commentFilename = $discdir . $filename . '.php';
|
2021-06-07 06:53:15 +02:00
|
|
|
self::_prependRename($discdir . $filename, $commentFilename);
|
2017-10-08 11:03:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$dir->close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return is_readable($pastePath);
|
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
|
|
|
public function createComment($pasteid, $parentid, $commentid, array $comment)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
|
|
|
$storagedir = self::_dataid2discussionpath($pasteid);
|
2017-10-08 11:03:17 +02:00
|
|
|
$file = $storagedir . $pasteid . '.' . $commentid . '.' . $parentid . '.php';
|
2017-03-24 23:42:11 +01:00
|
|
|
if (is_file($file)) {
|
2016-07-26 08:19:35 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!is_dir($storagedir)) {
|
2016-08-09 11:54:42 +02:00
|
|
|
mkdir($storagedir, 0700, true);
|
2016-07-26 08:19:35 +02:00
|
|
|
}
|
2021-06-07 06:53:15 +02:00
|
|
|
return self::_store($file, $comment);
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read all comments of paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function readComments($pasteid)
|
|
|
|
{
|
|
|
|
$comments = array();
|
2016-08-15 16:45:47 +02:00
|
|
|
$discdir = self::_dataid2discussionpath($pasteid);
|
2016-07-26 08:19:35 +02:00
|
|
|
if (is_dir($discdir)) {
|
2012-04-29 19:15:06 +02:00
|
|
|
$dir = dir($discdir);
|
2016-07-26 08:19:35 +02:00
|
|
|
while (false !== ($filename = $dir->read())) {
|
2017-10-08 11:03:17 +02:00
|
|
|
// Filename is in the form pasteid.commentid.parentid.php:
|
2012-04-29 19:15:06 +02:00
|
|
|
// - pasteid is the paste this reply belongs to.
|
|
|
|
// - commentid is the comment identifier itself.
|
|
|
|
// - parentid is the comment this comment replies to (It can be pasteid)
|
2016-07-26 08:19:35 +02:00
|
|
|
if (is_file($discdir . $filename)) {
|
2021-06-07 06:53:15 +02:00
|
|
|
$comment = self::_get($discdir . $filename);
|
2016-08-15 16:45:47 +02:00
|
|
|
$items = explode('.', $filename);
|
2012-04-29 19:15:06 +02:00
|
|
|
// Add some meta information not contained in file.
|
2019-05-10 07:55:39 +02:00
|
|
|
$comment['id'] = $items[1];
|
|
|
|
$comment['parentid'] = $items[2];
|
2012-04-29 19:15:06 +02:00
|
|
|
|
|
|
|
// Store in array
|
2019-05-10 07:55:39 +02:00
|
|
|
$key = $this->getOpenSlot($comments, (int) $comment['meta']['created']);
|
2015-10-12 21:07:41 +02:00
|
|
|
$comments[$key] = $comment;
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$dir->close();
|
|
|
|
|
|
|
|
// Sort comments by date, oldest first.
|
|
|
|
ksort($comments);
|
|
|
|
}
|
|
|
|
return $comments;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
*/
|
|
|
|
public function existsComment($pasteid, $parentid, $commentid)
|
|
|
|
{
|
|
|
|
return is_file(
|
|
|
|
self::_dataid2discussionpath($pasteid) .
|
2017-10-08 11:03:17 +02:00
|
|
|
$pasteid . '.' . $commentid . '.' . $parentid . '.php'
|
2012-04-29 19:15:06 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-06-07 06:53:15 +02:00
|
|
|
/**
|
|
|
|
* Save a value.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $value
|
|
|
|
* @param string $namespace
|
|
|
|
* @param string $key
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function setValue($value, $namespace, $key = '')
|
|
|
|
{
|
2021-06-07 07:02:47 +02:00
|
|
|
switch ($namespace) {
|
|
|
|
case 'purge_limiter':
|
2021-06-07 21:53:42 +02:00
|
|
|
return self::_storeString(
|
|
|
|
self::$_path . DIRECTORY_SEPARATOR . 'purge_limiter.php',
|
|
|
|
'<?php' . PHP_EOL . '$GLOBALS[\'purge_limiter\'] = ' . $value . ';'
|
|
|
|
);
|
2021-06-07 07:02:47 +02:00
|
|
|
case 'salt':
|
2021-06-08 22:01:29 +02:00
|
|
|
return self::_storeString(
|
|
|
|
self::$_path . DIRECTORY_SEPARATOR . 'salt.php',
|
|
|
|
'<?php # |' . $value . '|'
|
|
|
|
);
|
2021-06-07 07:02:47 +02:00
|
|
|
case 'traffic_limiter':
|
2021-06-13 10:53:01 +02:00
|
|
|
self::$_last_cache[$key] = $value;
|
2021-06-08 07:49:22 +02:00
|
|
|
return self::_storeString(
|
|
|
|
self::$_path . DIRECTORY_SEPARATOR . 'traffic_limiter.php',
|
2021-06-13 10:53:01 +02:00
|
|
|
'<?php' . PHP_EOL . '$GLOBALS[\'traffic_limiter\'] = ' . var_export(self::$_last_cache, true) . ';'
|
2021-06-08 07:49:22 +02:00
|
|
|
);
|
2021-06-07 07:02:47 +02:00
|
|
|
}
|
2021-06-07 21:53:42 +02:00
|
|
|
return false;
|
2021-06-07 06:53:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load a value.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $namespace
|
|
|
|
* @param string $key
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getValue($namespace, $key = '')
|
|
|
|
{
|
2021-06-07 21:53:42 +02:00
|
|
|
switch ($namespace) {
|
|
|
|
case 'purge_limiter':
|
|
|
|
$file = self::$_path . DIRECTORY_SEPARATOR . 'purge_limiter.php';
|
2021-06-08 22:01:29 +02:00
|
|
|
if (is_readable($file)) {
|
2021-06-07 21:53:42 +02:00
|
|
|
require $file;
|
|
|
|
return $GLOBALS['purge_limiter'];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'salt':
|
2021-06-08 22:01:29 +02:00
|
|
|
$file = self::$_path . DIRECTORY_SEPARATOR . 'salt.php';
|
|
|
|
if (is_readable($file)) {
|
|
|
|
$items = explode('|', file_get_contents($file));
|
|
|
|
if (is_array($items) && count($items) == 3) {
|
|
|
|
return $items[1];
|
|
|
|
}
|
|
|
|
}
|
2021-06-07 21:53:42 +02:00
|
|
|
break;
|
|
|
|
case 'traffic_limiter':
|
2021-06-08 07:49:22 +02:00
|
|
|
$file = self::$_path . DIRECTORY_SEPARATOR . 'traffic_limiter.php';
|
2021-06-08 22:01:29 +02:00
|
|
|
if (is_readable($file)) {
|
2021-06-08 07:49:22 +02:00
|
|
|
require $file;
|
2021-06-13 10:53:01 +02:00
|
|
|
self::$_last_cache = $GLOBALS['traffic_limiter'];
|
|
|
|
if (array_key_exists($key, self::$_last_cache)) {
|
|
|
|
return self::$_last_cache[$key];
|
2021-06-08 07:49:22 +02:00
|
|
|
}
|
|
|
|
}
|
2021-06-07 21:53:42 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
}
|
2021-06-07 06:53:15 +02:00
|
|
|
|
2021-06-07 21:53:42 +02:00
|
|
|
/**
|
|
|
|
* get the data
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
* @param string $filename
|
|
|
|
* @return array|false $data
|
|
|
|
*/
|
|
|
|
private static function _get($filename)
|
|
|
|
{
|
|
|
|
return Json::decode(
|
|
|
|
substr(
|
|
|
|
file_get_contents($filename),
|
|
|
|
strlen(self::PROTECTION_LINE . PHP_EOL)
|
2021-06-14 06:44:30 +02:00
|
|
|
)
|
|
|
|
);
|
2021-06-07 06:53:15 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2016-08-15 16:45:47 +02:00
|
|
|
$pastes = array();
|
2016-07-15 17:02:59 +02:00
|
|
|
$firstLevel = array_filter(
|
2021-06-07 06:53:15 +02:00
|
|
|
scandir(self::$_path),
|
2016-08-09 11:54:42 +02:00
|
|
|
'self::_isFirstLevelDir'
|
2016-07-15 17:02:59 +02:00
|
|
|
);
|
2016-07-26 08:19:35 +02:00
|
|
|
if (count($firstLevel) > 0) {
|
2016-07-15 17:02:59 +02:00
|
|
|
// try at most 10 times the $batchsize pastes before giving up
|
2016-07-26 08:19:35 +02:00
|
|
|
for ($i = 0, $max = $batchsize * 10; $i < $max; ++$i) {
|
2016-08-15 16:45:47 +02:00
|
|
|
$firstKey = array_rand($firstLevel);
|
2016-07-15 17:02:59 +02:00
|
|
|
$secondLevel = array_filter(
|
2021-06-07 06:53:15 +02:00
|
|
|
scandir(self::$_path . DIRECTORY_SEPARATOR . $firstLevel[$firstKey]),
|
2016-08-09 11:54:42 +02:00
|
|
|
'self::_isSecondLevelDir'
|
2016-07-15 17:02:59 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
// skip this folder in the next checks if it is empty
|
2016-07-26 08:19:35 +02:00
|
|
|
if (count($secondLevel) == 0) {
|
2016-07-15 17:02:59 +02:00
|
|
|
unset($firstLevel[$firstKey]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$secondKey = array_rand($secondLevel);
|
2021-06-07 06:53:15 +02:00
|
|
|
$path = self::$_path . DIRECTORY_SEPARATOR .
|
2017-03-24 23:42:11 +01:00
|
|
|
$firstLevel[$firstKey] . DIRECTORY_SEPARATOR .
|
|
|
|
$secondLevel[$secondKey];
|
2016-07-26 08:19:35 +02:00
|
|
|
if (!is_dir($path)) {
|
|
|
|
continue;
|
|
|
|
}
|
2016-07-15 17:02:59 +02:00
|
|
|
$thirdLevel = array_filter(
|
2017-10-08 11:03:17 +02:00
|
|
|
array_map(
|
2017-10-08 11:31:41 +02:00
|
|
|
function ($filename) {
|
2017-10-08 11:03:17 +02:00
|
|
|
return strlen($filename) >= 20 ?
|
|
|
|
substr($filename, 0, -4) :
|
|
|
|
$filename;
|
|
|
|
},
|
|
|
|
scandir($path)
|
|
|
|
),
|
2016-08-09 11:54:42 +02:00
|
|
|
'PrivateBin\\Model\\Paste::isValidId'
|
2016-07-15 17:02:59 +02:00
|
|
|
);
|
2016-07-26 08:19:35 +02:00
|
|
|
if (count($thirdLevel) == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2016-07-15 17:02:59 +02:00
|
|
|
$thirdKey = array_rand($thirdLevel);
|
2016-08-15 16:45:47 +02:00
|
|
|
$pasteid = $thirdLevel[$thirdKey];
|
2016-07-26 08:19:35 +02:00
|
|
|
if (in_array($pasteid, $pastes)) {
|
|
|
|
continue;
|
|
|
|
}
|
2016-07-15 17:02:59 +02:00
|
|
|
|
2016-07-26 08:19:35 +02:00
|
|
|
if ($this->exists($pasteid)) {
|
2016-07-15 17:02:59 +02:00
|
|
|
$data = $this->read($pasteid);
|
|
|
|
if (
|
2019-05-10 07:55:39 +02:00
|
|
|
array_key_exists('expire_date', $data['meta']) &&
|
|
|
|
$data['meta']['expire_date'] < time()
|
2016-07-26 08:19:35 +02:00
|
|
|
) {
|
2016-07-15 17:02:59 +02:00
|
|
|
$pastes[] = $pasteid;
|
2016-07-26 08:19:35 +02:00
|
|
|
if (count($pastes) >= $batchsize) {
|
|
|
|
break;
|
|
|
|
}
|
2016-07-15 17:02:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $pastes;
|
|
|
|
}
|
|
|
|
|
2012-04-29 19:15:06 +02:00
|
|
|
/**
|
|
|
|
* Convert paste id to storage path.
|
|
|
|
*
|
|
|
|
* The idea is to creates subdirectories in order to limit the number of files per directory.
|
|
|
|
* (A high number of files in a single directory can slow things down.)
|
|
|
|
* eg. "f468483c313401e8" will be stored in "data/f4/68/f468483c313401e8"
|
|
|
|
* High-trafic websites may want to deepen the directory structure (like Squid does).
|
|
|
|
*
|
|
|
|
* eg. input 'e3570978f9e4aa90' --> output 'data/e3/57/'
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param string $dataid
|
2016-08-09 13:07:11 +02:00
|
|
|
* @return string
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
|
|
|
private static function _dataid2path($dataid)
|
|
|
|
{
|
2021-06-07 06:53:15 +02:00
|
|
|
return self::$_path . DIRECTORY_SEPARATOR .
|
2017-03-24 23:42:11 +01:00
|
|
|
substr($dataid, 0, 2) . DIRECTORY_SEPARATOR .
|
2021-06-07 06:53:15 +02:00
|
|
|
substr($dataid, 2, 2) . DIRECTORY_SEPARATOR;
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert paste id to discussion storage path.
|
|
|
|
*
|
|
|
|
* eg. input 'e3570978f9e4aa90' --> output 'data/e3/57/e3570978f9e4aa90.discussion/'
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param string $dataid
|
2016-08-09 13:07:11 +02:00
|
|
|
* @return string
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
|
|
|
private static function _dataid2discussionpath($dataid)
|
|
|
|
{
|
2016-07-18 14:47:32 +02:00
|
|
|
return self::_dataid2path($dataid) . $dataid .
|
|
|
|
'.discussion' . DIRECTORY_SEPARATOR;
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
2016-07-15 17:02:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check that the given element is a valid first level directory.
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param string $element
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private static function _isFirstLevelDir($element)
|
|
|
|
{
|
2016-07-18 14:47:32 +02:00
|
|
|
return self::_isSecondLevelDir($element) &&
|
2021-06-14 06:44:30 +02:00
|
|
|
is_dir(self::$_path . DIRECTORY_SEPARATOR . $element);
|
2016-07-15 17:02:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check that the given element is a valid second level directory.
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param string $element
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private static function _isSecondLevelDir($element)
|
|
|
|
{
|
|
|
|
return (bool) preg_match('/^[a-f0-9]{2}$/', $element);
|
|
|
|
}
|
2021-06-07 06:53:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* store the data
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
* @param string $filename
|
|
|
|
* @param array $data
|
|
|
|
* @return bool
|
|
|
|
*/
|
2021-06-07 21:53:42 +02:00
|
|
|
private static function _store($filename, array $data)
|
2021-06-07 06:53:15 +02:00
|
|
|
{
|
2021-06-07 21:53:42 +02:00
|
|
|
try {
|
|
|
|
return self::_storeString(
|
|
|
|
$filename,
|
|
|
|
self::PROTECTION_LINE . PHP_EOL . Json::encode($data)
|
|
|
|
);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
return false;
|
2021-06-07 06:53:15 +02:00
|
|
|
}
|
2021-06-07 21:53:42 +02:00
|
|
|
}
|
2021-06-07 06:53:15 +02:00
|
|
|
|
2021-06-07 21:53:42 +02:00
|
|
|
/**
|
|
|
|
* store a string
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
* @param string $filename
|
|
|
|
* @param string $data
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private static function _storeString($filename, $data)
|
|
|
|
{
|
2021-06-07 06:53:15 +02:00
|
|
|
// Create storage directory if it does not exist.
|
|
|
|
if (!is_dir(self::$_path)) {
|
|
|
|
if (!@mkdir(self::$_path, 0700)) {
|
2021-06-07 21:53:42 +02:00
|
|
|
return false;
|
2021-06-07 06:53:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$file = self::$_path . DIRECTORY_SEPARATOR . '.htaccess';
|
|
|
|
if (!is_file($file)) {
|
|
|
|
$writtenBytes = 0;
|
|
|
|
if ($fileCreated = @touch($file)) {
|
|
|
|
$writtenBytes = @file_put_contents(
|
|
|
|
$file,
|
2021-06-14 06:44:30 +02:00
|
|
|
self::HTACCESS_LINE . PHP_EOL,
|
2021-06-07 06:53:15 +02:00
|
|
|
LOCK_EX
|
2021-06-14 06:44:30 +02:00
|
|
|
);
|
2021-06-07 06:53:15 +02:00
|
|
|
}
|
2021-06-14 06:44:30 +02:00
|
|
|
if (
|
|
|
|
$fileCreated === false ||
|
|
|
|
$writtenBytes === false ||
|
|
|
|
$writtenBytes < strlen(self::HTACCESS_LINE . PHP_EOL)
|
|
|
|
) {
|
2021-06-07 06:53:15 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$fileCreated = true;
|
|
|
|
$writtenBytes = 0;
|
2021-06-07 21:53:42 +02:00
|
|
|
if (!is_file($filename)) {
|
|
|
|
$fileCreated = @touch($filename);
|
2021-06-07 06:53:15 +02:00
|
|
|
}
|
|
|
|
if ($fileCreated) {
|
2021-06-07 21:53:42 +02:00
|
|
|
$writtenBytes = @file_put_contents($filename, $data, LOCK_EX);
|
2021-06-07 06:53:15 +02:00
|
|
|
}
|
|
|
|
if ($fileCreated === false || $writtenBytes === false || $writtenBytes < strlen($data)) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-06-14 06:44:30 +02:00
|
|
|
@chmod($filename, 0640); // protect file from access by other users on the host
|
2021-06-07 06:53:15 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* rename a file, prepending the protection line at the beginning
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
* @param string $srcFile
|
|
|
|
* @param string $destFile
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private static function _prependRename($srcFile, $destFile)
|
|
|
|
{
|
|
|
|
// don't overwrite already converted file
|
|
|
|
if (!is_readable($destFile)) {
|
|
|
|
$handle = fopen($srcFile, 'r', false, stream_context_create());
|
|
|
|
file_put_contents($destFile, self::PROTECTION_LINE . PHP_EOL);
|
|
|
|
file_put_contents($destFile, $handle, FILE_APPEND);
|
|
|
|
fclose($handle);
|
|
|
|
}
|
|
|
|
unlink($srcFile);
|
|
|
|
}
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|