2012-04-30 01:15:06 +08:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ZeroBin
|
|
|
|
*
|
|
|
|
* a zero-knowledge paste bin
|
|
|
|
*
|
|
|
|
* @link http://sebsauvage.net/wiki/doku.php?id=php:zerobin
|
|
|
|
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
|
|
|
|
* @license http://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
|
2015-09-04 04:22:59 +08:00
|
|
|
* @version 0.20
|
2012-04-30 01:15:06 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zerobin
|
|
|
|
*
|
|
|
|
* Controller, puts it all together.
|
|
|
|
*/
|
|
|
|
class zerobin
|
|
|
|
{
|
2015-08-16 21:55:31 +08:00
|
|
|
/**
|
|
|
|
* version
|
|
|
|
*
|
|
|
|
* @const string
|
2012-04-30 01:15:06 +08:00
|
|
|
*/
|
2015-09-04 04:22:59 +08:00
|
|
|
const VERSION = '0.20';
|
2012-04-30 01:15:06 +08:00
|
|
|
|
2015-09-01 04:10:41 +08:00
|
|
|
/**
|
|
|
|
* show the same error message if the paste expired or does not exist
|
|
|
|
*
|
|
|
|
* @const string
|
|
|
|
*/
|
|
|
|
const GENERIC_ERROR = 'Paste does not exist, has expired or has been deleted.';
|
|
|
|
|
2012-04-30 01:15:06 +08:00
|
|
|
/**
|
2015-08-16 21:55:31 +08:00
|
|
|
* configuration array
|
|
|
|
*
|
2012-04-30 01:15:06 +08:00
|
|
|
* @access private
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private $_conf = array(
|
|
|
|
'model' => 'zerobin_data',
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
2015-08-16 21:55:31 +08:00
|
|
|
* data
|
|
|
|
*
|
2012-04-30 01:15:06 +08:00
|
|
|
* @access private
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $_data = '';
|
|
|
|
|
|
|
|
/**
|
2015-08-16 21:55:31 +08:00
|
|
|
* error message
|
|
|
|
*
|
2012-04-30 01:15:06 +08:00
|
|
|
* @access private
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $_error = '';
|
|
|
|
|
2013-11-01 08:15:14 +08:00
|
|
|
/**
|
2015-08-16 21:55:31 +08:00
|
|
|
* status message
|
|
|
|
*
|
2013-11-01 08:15:14 +08:00
|
|
|
* @access private
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $_status = '';
|
|
|
|
|
2015-09-02 04:33:07 +08:00
|
|
|
/**
|
|
|
|
* JSON message
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $_json = '';
|
|
|
|
|
2012-04-30 01:15:06 +08:00
|
|
|
/**
|
2015-08-16 21:55:31 +08:00
|
|
|
* data storage model
|
|
|
|
*
|
2012-04-30 01:15:06 +08:00
|
|
|
* @access private
|
2015-08-16 21:55:31 +08:00
|
|
|
* @var zerobin_abstract
|
2012-04-30 01:15:06 +08:00
|
|
|
*/
|
|
|
|
private $_model;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* constructor
|
|
|
|
*
|
|
|
|
* initializes and runs ZeroBin
|
|
|
|
*
|
|
|
|
* @access public
|
2015-08-16 21:55:31 +08:00
|
|
|
* @return void
|
2012-04-30 01:15:06 +08:00
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
if (version_compare(PHP_VERSION, '5.2.6') < 0)
|
2015-09-02 04:33:07 +08:00
|
|
|
{
|
2015-09-05 08:24:56 +08:00
|
|
|
throw new Exception(i18n::_('ZeroBin requires php 5.2.6 or above to work. Sorry.'), 1);
|
2015-09-02 04:33:07 +08:00
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
|
2013-11-01 08:15:14 +08:00
|
|
|
// in case stupid admin has left magic_quotes enabled in php.ini
|
2012-04-30 01:15:06 +08:00
|
|
|
if (get_magic_quotes_gpc())
|
|
|
|
{
|
|
|
|
$_POST = array_map('filter::stripslashes_deep', $_POST);
|
|
|
|
$_GET = array_map('filter::stripslashes_deep', $_GET);
|
|
|
|
$_COOKIE = array_map('filter::stripslashes_deep', $_COOKIE);
|
|
|
|
}
|
|
|
|
|
2013-11-01 08:15:14 +08:00
|
|
|
// load config from ini file
|
2012-04-30 01:15:06 +08:00
|
|
|
$this->_init();
|
|
|
|
|
2013-11-01 08:15:14 +08:00
|
|
|
// create new paste or comment
|
2012-04-30 01:15:06 +08:00
|
|
|
if (!empty($_POST['data']))
|
|
|
|
{
|
2015-09-02 04:33:07 +08:00
|
|
|
$this->_create($_POST['data']);
|
2013-11-01 08:15:14 +08:00
|
|
|
}
|
|
|
|
// delete an existing paste
|
|
|
|
elseif (!empty($_GET['deletetoken']) && !empty($_GET['pasteid']))
|
|
|
|
{
|
2015-09-02 04:33:07 +08:00
|
|
|
$this->_delete($_GET['pasteid'], $_GET['deletetoken']);
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
2013-11-01 08:15:14 +08:00
|
|
|
// display an existing paste
|
2012-04-30 01:15:06 +08:00
|
|
|
elseif (!empty($_SERVER['QUERY_STRING']))
|
|
|
|
{
|
2013-11-01 08:15:14 +08:00
|
|
|
$this->_read($_SERVER['QUERY_STRING']);
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
|
|
|
|
2015-09-02 04:33:07 +08:00
|
|
|
// output JSON or HTML
|
|
|
|
if (strlen($this->_json))
|
|
|
|
{
|
|
|
|
header('Content-type: application/json');
|
|
|
|
echo $this->_json;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->_view();
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* initialize zerobin
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private function _init()
|
|
|
|
{
|
2012-04-30 19:58:29 +08:00
|
|
|
foreach (array('cfg', 'lib') as $dir)
|
|
|
|
{
|
2015-08-29 07:26:48 +08:00
|
|
|
if (!is_file(PATH . $dir . DIRECTORY_SEPARATOR . '.htaccess')) file_put_contents(
|
|
|
|
PATH . $dir . DIRECTORY_SEPARATOR . '.htaccess',
|
2012-04-30 19:58:29 +08:00
|
|
|
'Allow from none' . PHP_EOL .
|
2015-08-16 18:27:06 +08:00
|
|
|
'Deny from all'. PHP_EOL,
|
|
|
|
LOCK_EX
|
2012-04-30 19:58:29 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-08-29 07:26:48 +08:00
|
|
|
$this->_conf = parse_ini_file(PATH . 'cfg' . DIRECTORY_SEPARATOR . 'conf.ini', true);
|
2015-08-16 18:27:06 +08:00
|
|
|
foreach (array('main', 'model') as $section) {
|
2015-08-30 02:29:14 +08:00
|
|
|
if (!array_key_exists($section, $this->_conf)) {
|
2015-09-05 08:24:56 +08:00
|
|
|
throw new Exception(i18n::_('ZeroBin requires configuration section [%s] to be present in configuration file.', $section), 2);
|
2015-08-30 02:29:14 +08:00
|
|
|
}
|
2015-08-16 18:27:06 +08:00
|
|
|
}
|
2012-05-20 05:59:41 +08:00
|
|
|
$this->_model = $this->_conf['model']['class'];
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the model, create one if needed
|
|
|
|
*
|
|
|
|
* @access private
|
2015-08-16 21:55:31 +08:00
|
|
|
* @return zerobin_abstract
|
2012-04-30 01:15:06 +08:00
|
|
|
*/
|
|
|
|
private function _model()
|
|
|
|
{
|
|
|
|
// if needed, initialize the model
|
|
|
|
if(is_string($this->_model)) {
|
2012-05-20 05:59:41 +08:00
|
|
|
$this->_model = forward_static_call(
|
|
|
|
array($this->_model, 'getInstance'),
|
|
|
|
$this->_conf['model_options']
|
|
|
|
);
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
|
|
|
return $this->_model;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-11-01 08:15:14 +08:00
|
|
|
* Store new paste or comment
|
2012-04-30 01:15:06 +08:00
|
|
|
*
|
|
|
|
* POST contains:
|
2015-09-05 08:24:56 +08:00
|
|
|
* data (mandatory) = json encoded SJCL encrypted text (containing keys: iv,v,iter,ks,ts,mode,adata,cipher,salt,ct)
|
2012-04-30 01:15:06 +08:00
|
|
|
*
|
|
|
|
* All optional data will go to meta information:
|
2012-05-20 05:59:41 +08:00
|
|
|
* expire (optional) = expiration delay (never,5min,10min,1hour,1day,1week,1month,1year,burn) (default:never)
|
2012-04-30 01:15:06 +08:00
|
|
|
* opendiscusssion (optional) = is the discussion allowed on this paste ? (0/1) (default:0)
|
2015-09-05 08:24:56 +08:00
|
|
|
* nickname (optional) = in discussion, encoded SJCL encrypted text nickname of author of comment (containing keys: iv,v,iter,ks,ts,mode,adata,cipher,salt,ct)
|
2012-04-30 01:15:06 +08:00
|
|
|
* parentid (optional) = in discussion, which comment this comment replies to.
|
|
|
|
* pasteid (optional) = in discussion, which paste this comment belongs to.
|
|
|
|
*
|
|
|
|
* @access private
|
2013-11-01 08:15:14 +08:00
|
|
|
* @param string $data
|
2015-08-28 05:58:56 +08:00
|
|
|
* @return string
|
2012-04-30 01:15:06 +08:00
|
|
|
*/
|
2013-11-01 08:15:14 +08:00
|
|
|
private function _create($data)
|
2012-04-30 01:15:06 +08:00
|
|
|
{
|
|
|
|
$error = false;
|
|
|
|
|
2012-05-20 05:59:41 +08:00
|
|
|
// Make sure last paste from the IP address was more than X seconds ago.
|
|
|
|
trafficlimiter::setLimit($this->_conf['traffic']['limit']);
|
|
|
|
trafficlimiter::setPath($this->_conf['traffic']['dir']);
|
2015-09-02 04:33:07 +08:00
|
|
|
if (!trafficlimiter::canPass($_SERVER['REMOTE_ADDR']))
|
|
|
|
{
|
|
|
|
$this->_return_message(
|
|
|
|
1,
|
2015-09-05 08:24:56 +08:00
|
|
|
i18n::_(
|
|
|
|
'Please wait %d seconds between each post.',
|
|
|
|
$this->_conf['traffic']['limit']
|
|
|
|
)
|
2015-09-02 04:33:07 +08:00
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
|
|
|
|
// Make sure content is not too big.
|
2015-08-16 18:27:06 +08:00
|
|
|
$sizelimit = (int) $this->_getMainConfig('sizelimit', 2097152);
|
2015-09-02 04:33:07 +08:00
|
|
|
if (strlen($data) > $sizelimit)
|
|
|
|
{
|
|
|
|
$this->_return_message(
|
|
|
|
1,
|
2015-09-05 08:24:56 +08:00
|
|
|
i18n::_(
|
|
|
|
'Paste is limited to %s of encrypted data.',
|
|
|
|
filter::size_humanreadable($sizelimit)
|
|
|
|
)
|
2015-09-02 04:33:07 +08:00
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
|
|
|
|
// Make sure format is correct.
|
2015-08-28 05:30:35 +08:00
|
|
|
if (!sjcl::isValid($data)) return $this->_return_message(1, 'Invalid data.');
|
2012-04-30 01:15:06 +08:00
|
|
|
|
|
|
|
// Read additional meta-information.
|
2015-09-05 08:24:56 +08:00
|
|
|
$meta = array();
|
2012-04-30 01:15:06 +08:00
|
|
|
|
|
|
|
// Read expiration date
|
|
|
|
if (!empty($_POST['expire']))
|
|
|
|
{
|
2015-08-16 18:27:06 +08:00
|
|
|
$selected_expire = (string) $_POST['expire'];
|
2015-09-05 08:24:56 +08:00
|
|
|
if (array_key_exists($selected_expire, $this->_conf['expire_options']))
|
|
|
|
{
|
2015-08-16 18:27:06 +08:00
|
|
|
$expire = $this->_conf['expire_options'][$selected_expire];
|
2015-09-05 08:24:56 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-31 06:54:42 +08:00
|
|
|
$expire = $this->_conf['expire_options'][$this->_conf['expire']['default']];
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
2013-10-31 06:54:42 +08:00
|
|
|
if ($expire > 0) $meta['expire_date'] = time() + $expire;
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
2015-08-16 17:20:06 +08:00
|
|
|
|
2013-02-24 21:33:51 +08:00
|
|
|
// Destroy the paste when it is read.
|
|
|
|
if (!empty($_POST['burnafterreading']))
|
|
|
|
{
|
|
|
|
$burnafterreading = $_POST['burnafterreading'];
|
2015-08-16 18:27:06 +08:00
|
|
|
if ($burnafterreading !== '0')
|
2013-02-24 21:33:51 +08:00
|
|
|
{
|
2015-08-16 18:27:06 +08:00
|
|
|
if ($burnafterreading !== '1') $error = true;
|
2013-02-24 21:33:51 +08:00
|
|
|
$meta['burnafterreading'] = true;
|
|
|
|
}
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
|
|
|
|
// Read open discussion flag.
|
2015-08-31 06:01:35 +08:00
|
|
|
if ($this->_conf['main']['discussion'] && !empty($_POST['opendiscussion']))
|
2012-04-30 01:15:06 +08:00
|
|
|
{
|
|
|
|
$opendiscussion = $_POST['opendiscussion'];
|
2015-08-16 18:27:06 +08:00
|
|
|
if ($opendiscussion !== '0')
|
2012-04-30 01:15:06 +08:00
|
|
|
{
|
2015-08-16 18:27:06 +08:00
|
|
|
if ($opendiscussion !== '1') $error = true;
|
2012-04-30 01:15:06 +08:00
|
|
|
$meta['opendiscussion'] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// You can't have an open discussion on a "Burn after reading" paste:
|
|
|
|
if (isset($meta['burnafterreading'])) unset($meta['opendiscussion']);
|
|
|
|
|
|
|
|
// Optional nickname for comments
|
|
|
|
if (!empty($_POST['nickname']))
|
|
|
|
{
|
|
|
|
// Generation of the anonymous avatar (Vizhash):
|
|
|
|
// If a nickname is provided, we generate a Vizhash.
|
|
|
|
// (We assume that if the user did not enter a nickname, he/she wants
|
|
|
|
// to be anonymous and we will not generate the vizhash.)
|
|
|
|
$nick = $_POST['nickname'];
|
|
|
|
if (!sjcl::isValid($nick))
|
|
|
|
{
|
|
|
|
$error = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$meta['nickname'] = $nick;
|
|
|
|
$vz = new vizhash16x16();
|
|
|
|
$pngdata = $vz->generate($_SERVER['REMOTE_ADDR']);
|
|
|
|
if ($pngdata != '')
|
|
|
|
{
|
|
|
|
$meta['vizhash'] = 'data:image/png;base64,' . base64_encode($pngdata);
|
|
|
|
}
|
|
|
|
// Once the avatar is generated, we do not keep the IP address, nor its hash.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-02 04:33:07 +08:00
|
|
|
if ($error)
|
|
|
|
{
|
|
|
|
$this->_return_message(1, 'Invalid data.');
|
|
|
|
return;
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
|
|
|
|
// Add post date to meta.
|
|
|
|
$meta['postdate'] = time();
|
|
|
|
|
|
|
|
// We just want a small hash to avoid collisions:
|
|
|
|
// Half-MD5 (64 bits) will do the trick
|
|
|
|
$dataid = substr(hash('md5', $data), 0, 16);
|
|
|
|
|
|
|
|
$storage = array('data' => $data);
|
|
|
|
|
|
|
|
// Add meta-information only if necessary.
|
|
|
|
if (count($meta)) $storage['meta'] = $meta;
|
|
|
|
|
|
|
|
// The user posts a comment.
|
|
|
|
if (
|
|
|
|
!empty($_POST['parentid']) &&
|
|
|
|
!empty($_POST['pasteid'])
|
|
|
|
)
|
|
|
|
{
|
2015-08-16 18:27:06 +08:00
|
|
|
$pasteid = (string) $_POST['pasteid'];
|
|
|
|
$parentid = (string) $_POST['parentid'];
|
2012-04-30 01:15:06 +08:00
|
|
|
if (
|
2014-02-07 05:52:17 +08:00
|
|
|
!filter::is_valid_paste_id($pasteid) ||
|
|
|
|
!filter::is_valid_paste_id($parentid)
|
2015-09-02 04:33:07 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
$this->_return_message(1, 'Invalid data.');
|
|
|
|
return;
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
|
|
|
|
// Comments do not expire (it's the paste that expires)
|
|
|
|
unset($storage['expire_date']);
|
|
|
|
unset($storage['opendiscussion']);
|
|
|
|
|
|
|
|
// Make sure paste exists.
|
|
|
|
if (
|
|
|
|
!$this->_model()->exists($pasteid)
|
2015-09-02 04:33:07 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
$this->_return_message(1, 'Invalid data.');
|
|
|
|
return;
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
|
|
|
|
// Make sure the discussion is opened in this paste.
|
|
|
|
$paste = $this->_model()->read($pasteid);
|
|
|
|
if (
|
|
|
|
!$paste->meta->opendiscussion
|
2015-09-02 04:33:07 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
$this->_return_message(1, 'Invalid data.');
|
|
|
|
return;
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
|
|
|
|
// Check for improbable collision.
|
|
|
|
if (
|
|
|
|
$this->_model()->existsComment($pasteid, $parentid, $dataid)
|
2015-09-02 04:33:07 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
$this->_return_message(1, 'You are unlucky. Try again.');
|
|
|
|
return;
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
|
|
|
|
// New comment
|
|
|
|
if (
|
|
|
|
$this->_model()->createComment($pasteid, $parentid, $dataid, $storage) === false
|
2015-09-02 04:33:07 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
$this->_return_message(1, 'Error saving comment. Sorry.');
|
|
|
|
return;
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
|
|
|
|
// 0 = no error
|
2015-09-02 04:33:07 +08:00
|
|
|
$this->_return_message(0, $dataid);
|
|
|
|
return;
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
|
|
|
// The user posts a standard paste.
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Check for improbable collision.
|
|
|
|
if (
|
|
|
|
$this->_model()->exists($dataid)
|
2015-09-02 04:33:07 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
$this->_return_message(1, 'You are unlucky. Try again.');
|
|
|
|
return;
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
|
|
|
|
// New paste
|
|
|
|
if (
|
|
|
|
$this->_model()->create($dataid, $storage) === false
|
2015-09-02 04:33:07 +08:00
|
|
|
) {
|
|
|
|
$this->_return_message(1, 'Error saving paste. Sorry.');
|
|
|
|
return;
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
|
2013-11-01 08:15:14 +08:00
|
|
|
// Generate the "delete" token.
|
|
|
|
// The token is the hmac of the pasteid signed with the server salt.
|
2015-08-29 07:26:48 +08:00
|
|
|
// The paste can be delete by calling http://example.com/zerobin/?pasteid=<pasteid>&deletetoken=<deletetoken>
|
2015-08-28 03:41:21 +08:00
|
|
|
$deletetoken = hash_hmac('sha1', $dataid, serversalt::get());
|
2013-11-01 08:15:14 +08:00
|
|
|
|
2012-04-30 01:15:06 +08:00
|
|
|
// 0 = no error
|
2015-09-02 04:33:07 +08:00
|
|
|
$this->_return_message(0, $dataid, array('deletetoken' => $deletetoken));
|
|
|
|
return;
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-24 21:33:51 +08:00
|
|
|
/**
|
|
|
|
* Delete an existing paste
|
|
|
|
*
|
|
|
|
* @access private
|
2013-11-01 08:15:14 +08:00
|
|
|
* @param string $dataid
|
|
|
|
* @param string $deletetoken
|
2015-09-02 04:33:07 +08:00
|
|
|
* @return void
|
2013-02-24 21:33:51 +08:00
|
|
|
*/
|
|
|
|
private function _delete($dataid, $deletetoken)
|
|
|
|
{
|
2013-11-01 08:15:14 +08:00
|
|
|
// Is this a valid paste identifier?
|
2014-02-07 05:52:17 +08:00
|
|
|
if (!filter::is_valid_paste_id($dataid))
|
2013-11-01 08:15:14 +08:00
|
|
|
{
|
2014-02-07 05:52:17 +08:00
|
|
|
$this->_error = 'Invalid paste ID.';
|
2015-09-02 04:33:07 +08:00
|
|
|
return;
|
2014-02-07 05:52:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check that paste exists.
|
|
|
|
if (!$this->_model()->exists($dataid))
|
|
|
|
{
|
2015-09-01 04:10:41 +08:00
|
|
|
$this->_error = self::GENERIC_ERROR;
|
2015-09-02 04:33:07 +08:00
|
|
|
return;
|
2015-09-01 04:10:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the paste itself.
|
|
|
|
$paste = $this->_model()->read($dataid);
|
|
|
|
|
|
|
|
// See if paste has expired.
|
|
|
|
if (
|
|
|
|
isset($paste->meta->expire_date) &&
|
|
|
|
$paste->meta->expire_date < time()
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// Delete the paste
|
|
|
|
$this->_model()->delete($dataid);
|
|
|
|
$this->_error = self::GENERIC_ERROR;
|
2015-09-02 04:33:07 +08:00
|
|
|
return;
|
2015-09-01 04:10:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($deletetoken == 'burnafterreading') {
|
|
|
|
if (
|
|
|
|
isset($paste->meta->burnafterreading) &&
|
|
|
|
$paste->meta->burnafterreading
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// Delete the paste
|
|
|
|
$this->_model()->delete($dataid);
|
2015-09-02 05:51:31 +08:00
|
|
|
$this->_return_message(0, $dataid);
|
2015-09-02 04:33:07 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->_return_message(1, 'Paste is not of burn-after-reading type.');
|
2015-09-01 04:10:41 +08:00
|
|
|
}
|
2015-09-02 04:33:07 +08:00
|
|
|
return;
|
2013-11-01 08:15:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure token is valid.
|
2015-08-28 03:41:21 +08:00
|
|
|
serversalt::setPath($this->_conf['traffic']['dir']);
|
|
|
|
if (!filter::slow_equals($deletetoken, hash_hmac('sha1', $dataid, serversalt::get())))
|
2013-11-01 08:15:14 +08:00
|
|
|
{
|
|
|
|
$this->_error = 'Wrong deletion token. Paste was not deleted.';
|
2015-09-02 04:33:07 +08:00
|
|
|
return;
|
2013-11-01 08:15:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Paste exists and deletion token is valid: Delete the paste.
|
|
|
|
$this->_model()->delete($dataid);
|
|
|
|
$this->_status = 'Paste was properly deleted.';
|
|
|
|
}
|
|
|
|
|
2012-04-30 01:15:06 +08:00
|
|
|
/**
|
2013-11-01 08:15:14 +08:00
|
|
|
* Read an existing paste or comment
|
2012-04-30 01:15:06 +08:00
|
|
|
*
|
|
|
|
* @access private
|
2013-11-01 08:15:14 +08:00
|
|
|
* @param string $dataid
|
2012-04-30 01:15:06 +08:00
|
|
|
* @return void
|
|
|
|
*/
|
2013-11-01 08:15:14 +08:00
|
|
|
private function _read($dataid)
|
2012-04-30 01:15:06 +08:00
|
|
|
{
|
2015-09-02 04:33:07 +08:00
|
|
|
$isJson = false;
|
|
|
|
if (($pos = strpos($dataid, '&json')) !== false) {
|
|
|
|
$isJson = true;
|
|
|
|
$dataid = substr($dataid, 0, $pos);
|
|
|
|
}
|
|
|
|
|
2012-04-30 01:15:06 +08:00
|
|
|
// Is this a valid paste identifier?
|
2014-02-07 05:52:17 +08:00
|
|
|
if (!filter::is_valid_paste_id($dataid))
|
2012-04-30 01:15:06 +08:00
|
|
|
{
|
2014-02-07 05:52:17 +08:00
|
|
|
$this->_error = 'Invalid paste ID.';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that paste exists.
|
|
|
|
if ($this->_model()->exists($dataid))
|
|
|
|
{
|
|
|
|
// Get the paste itself.
|
|
|
|
$paste = $this->_model()->read($dataid);
|
|
|
|
|
|
|
|
// See if paste has expired.
|
|
|
|
if (
|
|
|
|
isset($paste->meta->expire_date) &&
|
|
|
|
$paste->meta->expire_date < time()
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// Delete the paste
|
|
|
|
$this->_model()->delete($dataid);
|
2015-09-01 04:10:41 +08:00
|
|
|
$this->_error = self::GENERIC_ERROR;
|
2014-02-07 05:52:17 +08:00
|
|
|
}
|
|
|
|
// If no error, return the paste.
|
|
|
|
else
|
2012-04-30 01:15:06 +08:00
|
|
|
{
|
2014-02-07 05:52:17 +08:00
|
|
|
// We kindly provide the remaining time before expiration (in seconds)
|
|
|
|
if (
|
|
|
|
property_exists($paste->meta, 'expire_date')
|
|
|
|
) $paste->meta->remaining_time = $paste->meta->expire_date - time();
|
2012-04-30 01:15:06 +08:00
|
|
|
|
2014-02-07 05:52:17 +08:00
|
|
|
// The paste itself is the first in the list of encrypted messages.
|
|
|
|
$messages = array($paste);
|
|
|
|
|
|
|
|
// If it's a discussion, get all comments.
|
2012-04-30 01:15:06 +08:00
|
|
|
if (
|
2014-02-07 05:52:17 +08:00
|
|
|
property_exists($paste->meta, 'opendiscussion') &&
|
|
|
|
$paste->meta->opendiscussion
|
2012-04-30 01:15:06 +08:00
|
|
|
)
|
|
|
|
{
|
2014-02-07 05:52:17 +08:00
|
|
|
$messages = array_merge(
|
|
|
|
$messages,
|
|
|
|
$this->_model()->readComments($dataid)
|
|
|
|
);
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
2014-02-07 05:52:17 +08:00
|
|
|
$this->_data = json_encode($messages);
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
|
|
|
}
|
2013-09-03 14:17:49 +08:00
|
|
|
else
|
|
|
|
{
|
2015-09-01 04:10:41 +08:00
|
|
|
$this->_error = self::GENERIC_ERROR;
|
2013-09-03 14:17:49 +08:00
|
|
|
}
|
2015-09-02 04:33:07 +08:00
|
|
|
if ($isJson)
|
|
|
|
{
|
|
|
|
if (strlen($this->_error))
|
|
|
|
{
|
|
|
|
$this->_return_message(1, $this->_error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->_return_message(0, $dataid, array('messages' => $messages));
|
|
|
|
}
|
|
|
|
}
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display ZeroBin frontend.
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private function _view()
|
|
|
|
{
|
2012-08-29 05:28:41 +08:00
|
|
|
// set headers to disable caching
|
2013-02-24 21:33:51 +08:00
|
|
|
$time = gmdate('D, d M Y H:i:s \G\M\T');
|
|
|
|
header('Cache-Control: no-store, no-cache, must-revalidate');
|
|
|
|
header('Pragma: no-cache');
|
|
|
|
header('Expires: ' . $time);
|
|
|
|
header('Last-Modified: ' . $time);
|
|
|
|
header('Vary: Accept');
|
2012-08-26 06:49:11 +08:00
|
|
|
|
2013-10-31 06:54:42 +08:00
|
|
|
// label all the expiration options
|
|
|
|
$expire = array();
|
|
|
|
foreach ($this->_conf['expire_options'] as $key => $value) {
|
2015-09-05 08:24:56 +08:00
|
|
|
$expire[$key] = i18n::_(
|
|
|
|
array_key_exists($key, $this->_conf['expire_labels']) ?
|
2013-10-31 06:54:42 +08:00
|
|
|
$this->_conf['expire_labels'][$key] :
|
2015-09-05 08:24:56 +08:00
|
|
|
$key
|
|
|
|
);
|
2013-10-31 06:54:42 +08:00
|
|
|
}
|
|
|
|
|
2012-04-30 01:15:06 +08:00
|
|
|
$page = new RainTPL;
|
2015-08-16 18:27:06 +08:00
|
|
|
$page::$path_replace = false;
|
2013-10-31 06:54:42 +08:00
|
|
|
// we escape it here because ENT_NOQUOTES can't be used in RainTPL templates
|
2012-04-30 01:15:06 +08:00
|
|
|
$page->assign('CIPHERDATA', htmlspecialchars($this->_data, ENT_NOQUOTES));
|
2015-09-05 08:24:56 +08:00
|
|
|
$page->assign('ERROR', i18n::_($this->_error));
|
|
|
|
$page->assign('STATUS', i18n::_($this->_status));
|
2012-04-30 01:15:06 +08:00
|
|
|
$page->assign('VERSION', self::VERSION);
|
2015-08-31 06:01:35 +08:00
|
|
|
$page->assign('DISCUSSION', $this->_getMainConfig('discussion', true));
|
2015-08-16 18:27:06 +08:00
|
|
|
$page->assign('OPENDISCUSSION', $this->_getMainConfig('opendiscussion', true));
|
|
|
|
$page->assign('SYNTAXHIGHLIGHTING', $this->_getMainConfig('syntaxhighlighting', true));
|
2015-08-18 05:18:33 +08:00
|
|
|
$page->assign('SYNTAXHIGHLIGHTINGTHEME', $this->_getMainConfig('syntaxhighlightingtheme', ''));
|
2015-09-05 08:24:56 +08:00
|
|
|
$page->assign('NOTICE', i18n::_($this->_getMainConfig('notice', '')));
|
2015-08-16 18:27:06 +08:00
|
|
|
$page->assign('BURNAFTERREADINGSELECTED', $this->_getMainConfig('burnafterreadingselected', false));
|
2015-08-31 06:01:35 +08:00
|
|
|
$page->assign('PASSWORD', $this->_getMainConfig('password', true));
|
2015-08-16 18:27:06 +08:00
|
|
|
$page->assign('BASE64JSVERSION', $this->_getMainConfig('base64version', '2.1.9'));
|
2013-10-31 06:54:42 +08:00
|
|
|
$page->assign('EXPIRE', $expire);
|
|
|
|
$page->assign('EXPIREDEFAULT', $this->_conf['expire']['default']);
|
2015-08-16 18:27:06 +08:00
|
|
|
$page->draw($this->_getMainConfig('template', 'page'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get configuration option from [main] section, optionally set a default
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @param string $option
|
|
|
|
* @param mixed $default (optional)
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
private function _getMainConfig($option, $default = false)
|
|
|
|
{
|
|
|
|
return array_key_exists($option, $this->_conf['main']) ?
|
|
|
|
$this->_conf['main'][$option] :
|
|
|
|
$default;
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* return JSON encoded message and exit
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @param bool $status
|
|
|
|
* @param string $message
|
2013-11-01 08:15:14 +08:00
|
|
|
* @param array $other
|
2015-09-02 04:33:07 +08:00
|
|
|
* @return void
|
2012-04-30 01:15:06 +08:00
|
|
|
*/
|
2013-11-01 08:15:14 +08:00
|
|
|
private function _return_message($status, $message, $other = array())
|
2012-04-30 01:15:06 +08:00
|
|
|
{
|
|
|
|
$result = array('status' => $status);
|
|
|
|
if ($status)
|
|
|
|
{
|
2015-09-05 08:24:56 +08:00
|
|
|
$result['message'] = i18n::_($message);
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$result['id'] = $message;
|
|
|
|
}
|
2013-11-01 08:15:14 +08:00
|
|
|
$result += $other;
|
2015-09-02 04:33:07 +08:00
|
|
|
$this->_json = json_encode($result);
|
2012-04-30 01:15:06 +08:00
|
|
|
}
|
|
|
|
}
|