2013-11-01 01:15:58 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-11 11:58:15 +02:00
|
|
|
* PrivateBin
|
2013-11-01 01:15:58 +01:00
|
|
|
*
|
|
|
|
* a zero-knowledge paste bin
|
|
|
|
*
|
2016-07-11 11:58:15 +02:00
|
|
|
* @link https://github.com/PrivateBin/PrivateBin
|
2013-11-01 01:15:58 +01: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
|
2013-11-01 01:15:58 +01:00
|
|
|
*/
|
2016-12-12 18:43:23 +01:00
|
|
|
|
2016-12-12 18:49:08 +01:00
|
|
|
namespace PrivateBin\Persistence;
|
2016-07-21 17:09:48 +02:00
|
|
|
|
|
|
|
use Exception;
|
|
|
|
|
2013-11-01 01:15:58 +01:00
|
|
|
/**
|
2016-08-09 11:54:42 +02:00
|
|
|
* AbstractPersistence
|
2013-11-01 01:15:58 +01:00
|
|
|
*
|
|
|
|
* persists data in PHP files
|
|
|
|
*/
|
2016-08-09 11:54:42 +02:00
|
|
|
abstract class AbstractPersistence
|
2013-11-01 01:15:58 +01:00
|
|
|
{
|
|
|
|
/**
|
2015-08-16 15:55:31 +02:00
|
|
|
* path in which to persist something
|
|
|
|
*
|
2013-11-01 01:15:58 +01:00
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private static $_path = 'data';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set the path
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
* @param string $path
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function setPath($path)
|
|
|
|
{
|
|
|
|
self::$_path = $path;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the path
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
|
|
|
* @param string $filename
|
2016-07-18 15:13:56 +02:00
|
|
|
* @return string
|
2013-11-01 01:15:58 +01:00
|
|
|
*/
|
|
|
|
public static function getPath($filename = null)
|
|
|
|
{
|
2016-07-26 08:19:35 +02:00
|
|
|
if (strlen($filename)) {
|
2015-08-15 18:32:31 +02:00
|
|
|
return self::$_path . DIRECTORY_SEPARATOR . $filename;
|
2016-07-26 08:19:35 +02:00
|
|
|
} else {
|
2013-11-01 01:15:58 +01:00
|
|
|
return self::$_path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* checks if the file exists
|
|
|
|
*
|
|
|
|
* @access protected
|
|
|
|
* @static
|
|
|
|
* @param string $filename
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
protected static function _exists($filename)
|
|
|
|
{
|
|
|
|
self::_initialize();
|
2015-08-27 21:41:21 +02:00
|
|
|
return is_file(self::$_path . DIRECTORY_SEPARATOR . $filename);
|
2013-11-01 01:15:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* prepares path for storage
|
|
|
|
*
|
|
|
|
* @access protected
|
|
|
|
* @static
|
2015-08-27 21:41:21 +02:00
|
|
|
* @throws Exception
|
2013-11-01 01:15:58 +01:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected static function _initialize()
|
|
|
|
{
|
|
|
|
// Create storage directory if it does not exist.
|
2016-07-26 08:19:35 +02:00
|
|
|
if (!is_dir(self::$_path)) {
|
|
|
|
if (!@mkdir(self::$_path)) {
|
2015-08-27 21:41:21 +02:00
|
|
|
throw new Exception('unable to create directory ' . self::$_path, 10);
|
2016-07-26 08:19:35 +02:00
|
|
|
}
|
|
|
|
}
|
2013-11-01 01:15:58 +01:00
|
|
|
|
|
|
|
// Create .htaccess file if it does not exist.
|
2015-08-27 21:41:21 +02:00
|
|
|
$file = self::$_path . DIRECTORY_SEPARATOR . '.htaccess';
|
2016-07-26 08:19:35 +02:00
|
|
|
if (!is_file($file)) {
|
2015-08-27 21:41:21 +02:00
|
|
|
$writtenBytes = @file_put_contents(
|
2013-11-01 01:15:58 +01:00
|
|
|
$file,
|
|
|
|
'Allow from none' . PHP_EOL .
|
2016-07-18 15:13:56 +02:00
|
|
|
'Deny from all' . PHP_EOL,
|
2015-08-16 12:27:06 +02:00
|
|
|
LOCK_EX
|
2013-11-01 01:15:58 +01:00
|
|
|
);
|
2015-08-27 21:41:21 +02:00
|
|
|
if ($writtenBytes === false || $writtenBytes < 30) {
|
|
|
|
throw new Exception('unable to write to file ' . $file, 11);
|
|
|
|
}
|
2013-11-01 01:15:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* store the data
|
|
|
|
*
|
|
|
|
* @access protected
|
|
|
|
* @static
|
|
|
|
* @param string $filename
|
|
|
|
* @param string $data
|
2015-08-27 21:41:21 +02:00
|
|
|
* @throws Exception
|
2013-11-01 01:15:58 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected static function _store($filename, $data)
|
|
|
|
{
|
|
|
|
self::_initialize();
|
2016-08-15 16:45:47 +02:00
|
|
|
$file = self::$_path . DIRECTORY_SEPARATOR . $filename;
|
2015-08-27 21:41:21 +02:00
|
|
|
$writtenBytes = @file_put_contents($file, $data, LOCK_EX);
|
2016-07-26 08:19:35 +02:00
|
|
|
if ($writtenBytes === false || $writtenBytes < strlen($data)) {
|
2015-08-27 21:41:21 +02:00
|
|
|
throw new Exception('unable to write to file ' . $file, 13);
|
|
|
|
}
|
2016-06-22 18:08:25 +02:00
|
|
|
@chmod($file, 0640); // protect file access
|
2013-11-01 01:15:58 +01:00
|
|
|
return $file;
|
|
|
|
}
|
|
|
|
}
|