2012-04-29 19:15:06 +02: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-21 22:43:00 +02:00
|
|
|
* @version 0.21.1
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* zerobin_db
|
|
|
|
*
|
|
|
|
* Model for DB access, implemented as a singleton.
|
|
|
|
*/
|
2012-04-30 22:58:08 +02:00
|
|
|
class zerobin_db extends zerobin_abstract
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
2015-08-16 15:55:31 +02:00
|
|
|
/**
|
|
|
|
* cache for select queries
|
|
|
|
*
|
|
|
|
* @var array
|
2012-05-19 23:59:41 +02:00
|
|
|
*/
|
|
|
|
private static $_cache = array();
|
|
|
|
|
2015-08-16 15:55:31 +02:00
|
|
|
/**
|
|
|
|
* instance of database connection
|
|
|
|
*
|
2012-04-29 19:15:06 +02:00
|
|
|
* @access private
|
|
|
|
* @static
|
2015-08-16 15:55:31 +02:00
|
|
|
* @var PDO
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
|
|
|
private static $_db;
|
|
|
|
|
2015-08-16 15:55:31 +02:00
|
|
|
/**
|
|
|
|
* table prefix
|
|
|
|
*
|
2012-05-19 23:59:41 +02:00
|
|
|
* @access private
|
|
|
|
* @static
|
2015-08-16 15:55:31 +02:00
|
|
|
* @var string
|
2012-05-19 23:59:41 +02:00
|
|
|
*/
|
|
|
|
private static $_prefix = '';
|
|
|
|
|
2015-08-16 15:55:31 +02:00
|
|
|
/**
|
|
|
|
* database type
|
|
|
|
*
|
2012-05-19 23:59:41 +02:00
|
|
|
* @access private
|
|
|
|
* @static
|
2015-08-16 15:55:31 +02:00
|
|
|
* @var string
|
2012-05-19 23:59:41 +02:00
|
|
|
*/
|
|
|
|
private static $_type = '';
|
|
|
|
|
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
|
2012-05-19 23:59:41 +02:00
|
|
|
* @throws Exception
|
|
|
|
* @return zerobin_db
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
2012-05-19 23:59:41 +02:00
|
|
|
public static function getInstance($options = null)
|
2012-04-29 19:15:06 +02:00
|
|
|
{
|
|
|
|
// if needed initialize the singleton
|
2012-08-26 00:49:11 +02:00
|
|
|
if(!(self::$_instance instanceof zerobin_db)) {
|
|
|
|
self::$_instance = new self;
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
2012-05-19 23:59:41 +02:00
|
|
|
|
|
|
|
if (is_array($options))
|
|
|
|
{
|
|
|
|
// set table prefix if given
|
|
|
|
if (array_key_exists('tbl', $options)) self::$_prefix = $options['tbl'];
|
|
|
|
|
|
|
|
// initialize the db connection with new options
|
|
|
|
if (
|
|
|
|
array_key_exists('dsn', $options) &&
|
|
|
|
array_key_exists('usr', $options) &&
|
|
|
|
array_key_exists('pwd', $options) &&
|
|
|
|
array_key_exists('opt', $options)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// check if the database contains the required tables
|
|
|
|
self::$_type = strtolower(
|
|
|
|
substr($options['dsn'], 0, strpos($options['dsn'], ':'))
|
|
|
|
);
|
|
|
|
switch(self::$_type)
|
|
|
|
{
|
|
|
|
case 'ibm':
|
|
|
|
$sql = 'SELECT tabname FROM SYSCAT.TABLES ';
|
|
|
|
break;
|
|
|
|
case 'informix':
|
|
|
|
$sql = 'SELECT tabname FROM systables ';
|
|
|
|
break;
|
|
|
|
case 'mssql':
|
|
|
|
$sql = "SELECT name FROM sysobjects "
|
|
|
|
. "WHERE type = 'U' ORDER BY name";
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
|
|
$sql = 'SHOW TABLES';
|
|
|
|
break;
|
|
|
|
case 'oci':
|
|
|
|
$sql = 'SELECT table_name FROM all_tables';
|
|
|
|
break;
|
|
|
|
case 'pgsql':
|
|
|
|
$sql = "SELECT c.relname AS table_name "
|
|
|
|
. "FROM pg_class c, pg_user u "
|
|
|
|
. "WHERE c.relowner = u.usesysid AND c.relkind = 'r' "
|
|
|
|
. "AND NOT EXISTS (SELECT 1 FROM pg_views WHERE viewname = c.relname) "
|
|
|
|
. "AND c.relname !~ '^(pg_|sql_)' "
|
|
|
|
. "UNION "
|
|
|
|
. "SELECT c.relname AS table_name "
|
|
|
|
. "FROM pg_class c "
|
|
|
|
. "WHERE c.relkind = 'r' "
|
|
|
|
. "AND NOT EXISTS (SELECT 1 FROM pg_views WHERE viewname = c.relname) "
|
|
|
|
. "AND NOT EXISTS (SELECT 1 FROM pg_user WHERE usesysid = c.relowner) "
|
|
|
|
. "AND c.relname !~ '^pg_'";
|
|
|
|
break;
|
|
|
|
case 'sqlite':
|
|
|
|
$sql = "SELECT name FROM sqlite_master WHERE type='table' "
|
|
|
|
. "UNION ALL SELECT name FROM sqlite_temp_master "
|
|
|
|
. "WHERE type='table' ORDER BY name";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Exception(
|
|
|
|
'PDO type ' .
|
|
|
|
self::$_type .
|
2015-08-27 21:41:21 +02:00
|
|
|
' is currently not supported.',
|
|
|
|
5
|
2012-05-19 23:59:41 +02:00
|
|
|
);
|
|
|
|
}
|
2015-08-27 21:41:21 +02:00
|
|
|
self::$_db = new PDO(
|
|
|
|
$options['dsn'],
|
|
|
|
$options['usr'],
|
|
|
|
$options['pwd'],
|
|
|
|
$options['opt']
|
|
|
|
);
|
2012-05-19 23:59:41 +02:00
|
|
|
$statement = self::$_db->query($sql);
|
|
|
|
$tables = $statement->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
|
|
|
|
|
|
// create paste table if needed
|
|
|
|
if (!array_key_exists(self::$_prefix . 'paste', $tables))
|
|
|
|
{
|
|
|
|
self::$_db->exec(
|
|
|
|
'CREATE TABLE ' . self::$_prefix . 'paste ( ' .
|
|
|
|
'dataid CHAR(16), ' .
|
|
|
|
'data TEXT, ' .
|
|
|
|
'postdate INT, ' .
|
|
|
|
'expiredate INT, ' .
|
|
|
|
'opendiscussion INT, ' .
|
2015-09-21 22:32:52 +02:00
|
|
|
'burnafterreading INT, ' .
|
|
|
|
'meta TEXT );'
|
2012-05-19 23:59:41 +02:00
|
|
|
);
|
|
|
|
}
|
2015-09-21 22:32:52 +02:00
|
|
|
// check if the meta column exists
|
|
|
|
else
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
self::$_db->exec('SELECT meta FROM ' . self::$_prefix . 'paste LIMIT 1;');
|
|
|
|
} catch (PDOException $e) {
|
|
|
|
if ($e->getCode() == 'HY000')
|
|
|
|
{
|
|
|
|
self::$_db->exec('ALTER TABLE ' . self::$_prefix . 'paste ADD COLUMN meta TEXT;');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-05-19 23:59:41 +02:00
|
|
|
|
|
|
|
// create comment table if needed
|
|
|
|
if (!array_key_exists(self::$_prefix . 'comment', $tables))
|
|
|
|
{
|
|
|
|
self::$_db->exec(
|
|
|
|
'CREATE TABLE ' . self::$_prefix . 'comment ( ' .
|
|
|
|
'dataid CHAR(16), ' .
|
|
|
|
'pasteid CHAR(16), ' .
|
|
|
|
'parentid CHAR(16), ' .
|
|
|
|
'data TEXT, ' .
|
|
|
|
'nickname VARCHAR(255), ' .
|
|
|
|
'vizhash TEXT, ' .
|
|
|
|
'postdate INT );'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-30 22:58:08 +02:00
|
|
|
return parent::$_instance;
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
|
|
|
* @param array $paste
|
2012-05-19 23:59:41 +02:00
|
|
|
* @return bool
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
|
|
|
public function create($pasteid, $paste)
|
|
|
|
{
|
2013-02-24 17:41:32 +01:00
|
|
|
if (
|
2015-09-21 22:32:52 +02:00
|
|
|
array_key_exists($pasteid, self::$_cache)
|
2012-08-26 00:49:11 +02:00
|
|
|
) {
|
|
|
|
if(false !== self::$_cache[$pasteid]) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
unset(self::$_cache[$pasteid]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-21 22:32:52 +02:00
|
|
|
$opendiscussion = $burnafterreading = false;
|
|
|
|
$meta = $paste['meta'];
|
|
|
|
unset($meta['postdate']);
|
|
|
|
unset($meta['expire_date']);
|
|
|
|
if (array_key_exists('opendiscussion', $paste['meta']))
|
|
|
|
{
|
|
|
|
$opendiscussion = (bool) $paste['meta']['opendiscussion'];
|
|
|
|
unset($meta['opendiscussion']);
|
|
|
|
}
|
|
|
|
if (array_key_exists('burnafterreading', $paste['meta']))
|
|
|
|
{
|
|
|
|
$burnafterreading = (bool) $paste['meta']['burnafterreading'];
|
|
|
|
unset($meta['burnafterreading']);
|
|
|
|
}
|
2012-05-19 23:59:41 +02:00
|
|
|
return self::_exec(
|
2015-09-21 22:32:52 +02:00
|
|
|
'INSERT INTO ' . self::$_prefix . 'paste VALUES(?,?,?,?,?,?,?)',
|
2012-05-19 23:59:41 +02:00
|
|
|
array(
|
|
|
|
$pasteid,
|
|
|
|
$paste['data'],
|
|
|
|
$paste['meta']['postdate'],
|
|
|
|
$paste['meta']['expire_date'],
|
2015-09-21 22:32:52 +02:00
|
|
|
(int) $opendiscussion,
|
|
|
|
(int) $burnafterreading,
|
|
|
|
json_encode($meta),
|
2012-05-19 23:59:41 +02:00
|
|
|
)
|
|
|
|
);
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read a paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
2012-08-26 00:49:11 +02:00
|
|
|
* @return stdClass|false
|
2012-04-29 19:15:06 +02:00
|
|
|
*/
|
|
|
|
public function read($pasteid)
|
|
|
|
{
|
2012-05-19 23:59:41 +02:00
|
|
|
if (
|
|
|
|
!array_key_exists($pasteid, self::$_cache)
|
2012-08-26 00:49:11 +02:00
|
|
|
) {
|
|
|
|
self::$_cache[$pasteid] = false;
|
|
|
|
$paste = self::_select(
|
|
|
|
'SELECT * FROM ' . self::$_prefix . 'paste WHERE dataid = ?',
|
|
|
|
array($pasteid), true
|
|
|
|
);
|
2012-05-19 23:59:41 +02:00
|
|
|
|
2012-08-26 00:49:11 +02:00
|
|
|
if(false !== $paste) {
|
|
|
|
// create object
|
|
|
|
self::$_cache[$pasteid] = new stdClass;
|
|
|
|
self::$_cache[$pasteid]->data = $paste['data'];
|
2015-09-21 22:32:52 +02:00
|
|
|
self::$_cache[$pasteid]->meta = json_decode($paste['meta']);
|
2012-08-26 00:49:11 +02:00
|
|
|
self::$_cache[$pasteid]->meta->postdate = (int) $paste['postdate'];
|
|
|
|
self::$_cache[$pasteid]->meta->expire_date = (int) $paste['expiredate'];
|
|
|
|
if (
|
|
|
|
$paste['opendiscussion']
|
|
|
|
) self::$_cache[$pasteid]->meta->opendiscussion = true;
|
|
|
|
if (
|
|
|
|
$paste['burnafterreading']
|
|
|
|
) self::$_cache[$pasteid]->meta->burnafterreading = true;
|
|
|
|
}
|
|
|
|
}
|
2012-05-19 23:59:41 +02:00
|
|
|
|
2012-08-26 00:49:11 +02:00
|
|
|
return self::$_cache[$pasteid];
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a paste and its discussion.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function delete($pasteid)
|
|
|
|
{
|
2012-05-19 23:59:41 +02:00
|
|
|
self::_exec(
|
|
|
|
'DELETE FROM ' . self::$_prefix . 'paste WHERE dataid = ?',
|
|
|
|
array($pasteid)
|
|
|
|
);
|
|
|
|
self::_exec(
|
|
|
|
'DELETE FROM ' . self::$_prefix . 'comment WHERE pasteid = ?',
|
|
|
|
array($pasteid)
|
|
|
|
);
|
2012-08-26 00:49:11 +02:00
|
|
|
if (
|
2015-08-27 21:41:21 +02:00
|
|
|
array_key_exists($pasteid, self::$_cache)
|
2012-08-26 00:49:11 +02:00
|
|
|
) unset(self::$_cache[$pasteid]);
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if a paste exists.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $dataid
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function exists($pasteid)
|
|
|
|
{
|
2012-05-19 23:59:41 +02:00
|
|
|
if (
|
|
|
|
!array_key_exists($pasteid, self::$_cache)
|
2012-08-26 00:49:11 +02:00
|
|
|
) self::$_cache[$pasteid] = $this->read($pasteid);
|
2012-05-19 23:59:41 +02:00
|
|
|
return (bool) self::$_cache[$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
|
|
|
|
* @return int|false
|
|
|
|
*/
|
|
|
|
public function createComment($pasteid, $parentid, $commentid, $comment)
|
|
|
|
{
|
2012-05-19 23:59:41 +02:00
|
|
|
return self::_exec(
|
|
|
|
'INSERT INTO ' . self::$_prefix . 'comment VALUES(?,?,?,?,?,?,?)',
|
|
|
|
array(
|
2012-08-26 00:49:11 +02:00
|
|
|
$commentid,
|
2012-05-19 23:59:41 +02:00
|
|
|
$pasteid,
|
|
|
|
$parentid,
|
|
|
|
$comment['data'],
|
|
|
|
$comment['meta']['nickname'],
|
|
|
|
$comment['meta']['vizhash'],
|
|
|
|
$comment['meta']['postdate'],
|
|
|
|
)
|
|
|
|
);
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read all comments of paste.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $pasteid
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function readComments($pasteid)
|
|
|
|
{
|
2012-05-19 23:59:41 +02:00
|
|
|
$rows = self::_select(
|
|
|
|
'SELECT * FROM ' . self::$_prefix . 'comment WHERE pasteid = ?',
|
|
|
|
array($pasteid)
|
|
|
|
);
|
|
|
|
|
|
|
|
// create object
|
|
|
|
$commentTemplate = new stdClass;
|
|
|
|
$commentTemplate->meta = new stdClass;
|
|
|
|
|
|
|
|
// create comment list
|
|
|
|
$comments = array();
|
|
|
|
if (count($rows))
|
|
|
|
{
|
|
|
|
foreach ($rows as $row)
|
|
|
|
{
|
|
|
|
$i = (int) $row['postdate'];
|
|
|
|
$comments[$i] = clone $commentTemplate;
|
|
|
|
$comments[$i]->data = $row['data'];
|
|
|
|
$comments[$i]->meta->nickname = $row['nickname'];
|
|
|
|
$comments[$i]->meta->vizhash = $row['vizhash'];
|
|
|
|
$comments[$i]->meta->postdate = $i;
|
|
|
|
$comments[$i]->meta->commentid = $row['dataid'];
|
|
|
|
$comments[$i]->meta->parentid = $row['parentid'];
|
|
|
|
}
|
|
|
|
ksort($comments);
|
|
|
|
}
|
|
|
|
return $comments;
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if a comment exists.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param string $dataid
|
|
|
|
* @param string $parentid
|
|
|
|
* @param string $commentid
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function existsComment($pasteid, $parentid, $commentid)
|
|
|
|
{
|
2012-05-19 23:59:41 +02:00
|
|
|
return (bool) self::_select(
|
|
|
|
'SELECT dataid FROM ' . self::$_prefix . 'comment ' .
|
|
|
|
'WHERE pasteid = ? AND parentid = ? AND dataid = ?',
|
|
|
|
array($pasteid, $parentid, $commentid), true
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* execute a statement
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param string $sql
|
|
|
|
* @param array $params
|
|
|
|
* @throws PDOException
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private static function _exec($sql, array $params)
|
|
|
|
{
|
|
|
|
$statement = self::$_db->prepare($sql);
|
|
|
|
$result = $statement->execute($params);
|
|
|
|
$statement->closeCursor();
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* run a select statement
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
* @static
|
|
|
|
* @param string $sql
|
|
|
|
* @param array $params
|
|
|
|
* @param bool $firstOnly if only the first row should be returned
|
|
|
|
* @throws PDOException
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private static function _select($sql, array $params, $firstOnly = false)
|
|
|
|
{
|
|
|
|
$statement = self::$_db->prepare($sql);
|
|
|
|
$statement->execute($params);
|
|
|
|
$result = $firstOnly ?
|
|
|
|
$statement->fetch(PDO::FETCH_ASSOC) :
|
|
|
|
$statement->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
$statement->closeCursor();
|
|
|
|
return $result;
|
2012-04-29 19:15:06 +02:00
|
|
|
}
|
|
|
|
}
|