2013-04-19 13:46:04 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2014-01-28 09:36:04 +00:00
|
|
|
* wallabag, self hostable application allowing you to not miss any content anymore
|
2013-04-19 13:46:04 +00:00
|
|
|
*
|
2014-01-28 09:36:04 +00:00
|
|
|
* @category wallabag
|
|
|
|
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
|
2013-04-19 13:46:04 +00:00
|
|
|
* @copyright 2013
|
2014-07-11 14:03:59 +00:00
|
|
|
* @license http://opensource.org/licenses/MIT see COPYING file
|
2013-04-19 13:46:04 +00:00
|
|
|
*/
|
|
|
|
|
2013-08-07 12:24:07 +00:00
|
|
|
class Database {
|
2014-07-11 15:06:51 +00:00
|
|
|
|
2013-04-19 13:46:04 +00:00
|
|
|
var $handle;
|
2014-07-13 08:15:40 +00:00
|
|
|
private $order = array (
|
|
|
|
'ia' => 'ORDER BY entries.id',
|
|
|
|
'id' => 'ORDER BY entries.id DESC',
|
|
|
|
'ta' => 'ORDER BY lower(entries.title)',
|
|
|
|
'td' => 'ORDER BY lower(entries.title) DESC',
|
|
|
|
'default' => 'ORDER BY entries.id'
|
2014-02-20 17:28:39 +00:00
|
|
|
);
|
|
|
|
|
2014-04-02 17:55:19 +00:00
|
|
|
function __construct()
|
2013-08-07 12:38:58 +00:00
|
|
|
{
|
|
|
|
switch (STORAGE) {
|
|
|
|
case 'sqlite':
|
2014-08-21 14:17:36 +00:00
|
|
|
// Check if /db is writeable
|
2014-09-18 19:33:22 +00:00
|
|
|
if ( !is_writable(STORAGE_SQLITE) || !is_writable(dirname(STORAGE_SQLITE))) {
|
2014-08-21 14:17:36 +00:00
|
|
|
die('An error occured: "db" directory must be writeable for your web server user!');
|
|
|
|
}
|
2013-08-07 12:38:58 +00:00
|
|
|
$db_path = 'sqlite:' . STORAGE_SQLITE;
|
|
|
|
$this->handle = new PDO($db_path);
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
2015-02-14 14:12:02 +00:00
|
|
|
if (MYSQL_USE_UTF8MB4) {
|
|
|
|
$db_path = 'mysql:host=' . STORAGE_SERVER . ';dbname=' . STORAGE_DB . ';charset=utf8mb4';
|
|
|
|
$this->handle = new PDO($db_path, STORAGE_USER, STORAGE_PASSWORD, array(
|
|
|
|
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8mb4',
|
|
|
|
));
|
|
|
|
} else {
|
|
|
|
$db_path = 'mysql:host=' . STORAGE_SERVER . ';dbname=' . STORAGE_DB;
|
|
|
|
$this->handle = new PDO($db_path, STORAGE_USER, STORAGE_PASSWORD);
|
|
|
|
}
|
2013-08-07 12:38:58 +00:00
|
|
|
break;
|
|
|
|
case 'postgres':
|
|
|
|
$db_path = 'pgsql:host=' . STORAGE_SERVER . ';dbname=' . STORAGE_DB;
|
2014-04-02 17:55:19 +00:00
|
|
|
$this->handle = new PDO($db_path, STORAGE_USER, STORAGE_PASSWORD);
|
2013-08-07 12:38:58 +00:00
|
|
|
break;
|
2014-04-23 20:48:33 +00:00
|
|
|
default:
|
|
|
|
die(STORAGE . ' is not a recognised database system !');
|
2013-08-07 12:38:58 +00:00
|
|
|
}
|
|
|
|
|
2013-04-19 13:46:04 +00:00
|
|
|
$this->handle->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
2014-07-11 14:03:59 +00:00
|
|
|
$this->_checkTags();
|
2013-08-07 13:46:17 +00:00
|
|
|
Tools::logm('storage type ' . STORAGE);
|
2013-04-19 13:46:04 +00:00
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
private function getHandle()
|
|
|
|
{
|
2013-04-19 13:46:04 +00:00
|
|
|
return $this->handle;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
private function _checkTags()
|
|
|
|
{
|
2013-12-23 09:35:09 +00:00
|
|
|
|
|
|
|
if (STORAGE == 'sqlite') {
|
|
|
|
$sql = '
|
|
|
|
CREATE TABLE IF NOT EXISTS tags (
|
|
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE,
|
|
|
|
value TEXT
|
|
|
|
)';
|
|
|
|
}
|
|
|
|
elseif(STORAGE == 'mysql') {
|
|
|
|
$sql = '
|
|
|
|
CREATE TABLE IF NOT EXISTS `tags` (
|
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
`value` varchar(255) NOT NULL,
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$sql = '
|
2014-04-11 11:43:17 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS tags (
|
2013-12-23 09:35:09 +00:00
|
|
|
id bigserial primary key,
|
|
|
|
value varchar(255) NOT NULL
|
|
|
|
);
|
|
|
|
';
|
|
|
|
}
|
2013-05-31 20:55:52 +00:00
|
|
|
|
2013-12-23 09:35:09 +00:00
|
|
|
$query = $this->executeQuery($sql, array());
|
|
|
|
|
|
|
|
if (STORAGE == 'sqlite') {
|
|
|
|
$sql = '
|
2014-01-05 14:03:05 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS tags_entries (
|
2013-12-23 09:35:09 +00:00
|
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE,
|
|
|
|
entry_id INTEGER,
|
|
|
|
tag_id INTEGER,
|
|
|
|
FOREIGN KEY(entry_id) REFERENCES entries(id) ON DELETE CASCADE,
|
|
|
|
FOREIGN KEY(tag_id) REFERENCES tags(id) ON DELETE CASCADE
|
|
|
|
)';
|
|
|
|
}
|
|
|
|
elseif(STORAGE == 'mysql') {
|
|
|
|
$sql = '
|
|
|
|
CREATE TABLE IF NOT EXISTS `tags_entries` (
|
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
`entry_id` int(11) NOT NULL,
|
|
|
|
`tag_id` int(11) NOT NULL,
|
|
|
|
FOREIGN KEY(entry_id) REFERENCES entries(id) ON DELETE CASCADE,
|
|
|
|
FOREIGN KEY(tag_id) REFERENCES tags(id) ON DELETE CASCADE,
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$sql = '
|
2014-04-11 11:43:17 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS tags_entries (
|
2013-12-23 09:35:09 +00:00
|
|
|
id bigserial primary key,
|
|
|
|
entry_id integer NOT NULL,
|
|
|
|
tag_id integer NOT NULL
|
|
|
|
)
|
|
|
|
';
|
|
|
|
}
|
|
|
|
|
|
|
|
$query = $this->executeQuery($sql, array());
|
2013-05-31 20:55:52 +00:00
|
|
|
}
|
|
|
|
|
2014-07-25 06:42:03 +00:00
|
|
|
public function install($login, $password, $email = '')
|
2014-07-11 15:06:51 +00:00
|
|
|
{
|
2013-08-07 17:14:28 +00:00
|
|
|
$sql = 'INSERT INTO users ( username, password, name, email) VALUES (?, ?, ?, ?)';
|
2014-07-25 06:42:03 +00:00
|
|
|
$params = array($login, $password, $login, $email);
|
2013-08-07 17:14:28 +00:00
|
|
|
$query = $this->executeQuery($sql, $params);
|
|
|
|
|
|
|
|
$sequence = '';
|
|
|
|
if (STORAGE == 'postgres') {
|
|
|
|
$sequence = 'users_id_seq';
|
|
|
|
}
|
|
|
|
|
|
|
|
$id_user = intval($this->getLastId($sequence));
|
|
|
|
|
|
|
|
$sql = 'INSERT INTO users_config ( user_id, name, value ) VALUES (?, ?, ?)';
|
2013-09-20 08:21:39 +00:00
|
|
|
$params = array($id_user, 'pager', PAGINATION);
|
2013-08-07 17:14:28 +00:00
|
|
|
$query = $this->executeQuery($sql, $params);
|
|
|
|
|
|
|
|
$sql = 'INSERT INTO users_config ( user_id, name, value ) VALUES (?, ?, ?)';
|
2013-09-20 08:21:39 +00:00
|
|
|
$params = array($id_user, 'language', LANG);
|
|
|
|
$query = $this->executeQuery($sql, $params);
|
2014-04-02 17:55:19 +00:00
|
|
|
|
2013-09-20 08:21:39 +00:00
|
|
|
$sql = 'INSERT INTO users_config ( user_id, name, value ) VALUES (?, ?, ?)';
|
|
|
|
$params = array($id_user, 'theme', DEFAULT_THEME);
|
2013-08-06 12:18:03 +00:00
|
|
|
$query = $this->executeQuery($sql, $params);
|
2013-05-31 20:55:52 +00:00
|
|
|
|
2013-08-06 12:18:03 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
2013-05-31 20:55:52 +00:00
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function getConfigUser($id)
|
|
|
|
{
|
2013-08-06 12:18:03 +00:00
|
|
|
$sql = "SELECT * FROM users_config WHERE user_id = ?";
|
|
|
|
$query = $this->executeQuery($sql, array($id));
|
|
|
|
$result = $query->fetchAll();
|
|
|
|
$user_config = array();
|
2014-04-02 17:55:19 +00:00
|
|
|
|
2013-08-06 12:18:03 +00:00
|
|
|
foreach ($result as $key => $value) {
|
|
|
|
$user_config[$value['name']] = $value['value'];
|
2013-05-31 20:55:52 +00:00
|
|
|
}
|
|
|
|
|
2013-08-06 12:18:03 +00:00
|
|
|
return $user_config;
|
2013-05-31 20:55:52 +00:00
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function userExists($username)
|
|
|
|
{
|
2013-10-20 21:28:45 +00:00
|
|
|
$sql = "SELECT * FROM users WHERE username=?";
|
|
|
|
$query = $this->executeQuery($sql, array($username));
|
|
|
|
$login = $query->fetchAll();
|
|
|
|
if (isset($login[0])) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function login($username, $password, $isauthenticated = FALSE)
|
|
|
|
{
|
2014-01-30 14:35:31 +00:00
|
|
|
if ($isauthenticated) {
|
2014-07-13 08:15:40 +00:00
|
|
|
$sql = "SELECT * FROM users WHERE username=?";
|
|
|
|
$query = $this->executeQuery($sql, array($username));
|
2014-01-30 14:35:31 +00:00
|
|
|
} else {
|
2014-07-13 08:15:40 +00:00
|
|
|
$sql = "SELECT * FROM users WHERE username=? AND password=?";
|
|
|
|
$query = $this->executeQuery($sql, array($username, $password));
|
2014-01-30 14:35:31 +00:00
|
|
|
}
|
2013-08-06 13:51:48 +00:00
|
|
|
$login = $query->fetchAll();
|
2013-05-31 20:55:52 +00:00
|
|
|
|
2013-08-06 12:18:03 +00:00
|
|
|
$user = array();
|
|
|
|
if (isset($login[0])) {
|
|
|
|
$user['id'] = $login[0]['id'];
|
|
|
|
$user['username'] = $login[0]['username'];
|
|
|
|
$user['password'] = $login[0]['password'];
|
|
|
|
$user['name'] = $login[0]['name'];
|
|
|
|
$user['email'] = $login[0]['email'];
|
|
|
|
$user['config'] = $this->getConfigUser($login[0]['id']);
|
|
|
|
}
|
2013-05-31 20:55:52 +00:00
|
|
|
|
2013-08-06 12:18:03 +00:00
|
|
|
return $user;
|
2013-05-31 20:55:52 +00:00
|
|
|
}
|
|
|
|
|
2013-09-20 08:21:39 +00:00
|
|
|
public function updatePassword($userId, $password)
|
2013-06-01 06:29:37 +00:00
|
|
|
{
|
2013-08-06 13:51:48 +00:00
|
|
|
$sql_update = "UPDATE users SET password=? WHERE id=?";
|
2013-10-07 12:56:21 +00:00
|
|
|
$params_update = array($password, $userId);
|
|
|
|
$query = $this->executeQuery($sql_update, $params_update);
|
2013-09-20 08:21:39 +00:00
|
|
|
}
|
2014-04-02 17:55:19 +00:00
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function updateUserConfig($userId, $key, $value)
|
|
|
|
{
|
2013-09-21 12:37:53 +00:00
|
|
|
$config = $this->getConfigUser($userId);
|
2014-04-02 17:55:19 +00:00
|
|
|
|
2014-01-19 23:44:51 +00:00
|
|
|
if (! isset($config[$key])) {
|
2013-12-23 10:23:12 +00:00
|
|
|
$sql = "INSERT INTO users_config (value, user_id, name) VALUES (?, ?, ?)";
|
2013-09-21 12:37:53 +00:00
|
|
|
}
|
|
|
|
else {
|
2013-12-23 10:23:12 +00:00
|
|
|
$sql = "UPDATE users_config SET value=? WHERE user_id=? AND name=?";
|
2013-09-21 12:37:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$params = array($value, $userId, $key);
|
|
|
|
$query = $this->executeQuery($sql, $params);
|
2013-06-01 06:29:37 +00:00
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
private function executeQuery($sql, $params)
|
|
|
|
{
|
2013-04-19 13:46:04 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
$query = $this->getHandle()->prepare($sql);
|
|
|
|
$query->execute($params);
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
catch (Exception $e)
|
|
|
|
{
|
2013-08-04 18:58:31 +00:00
|
|
|
Tools::logm('execute query error : '.$e->getMessage());
|
2013-08-07 12:24:07 +00:00
|
|
|
return FALSE;
|
2013-04-19 13:46:04 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-23 08:29:53 +00:00
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function listUsers($username = NULL)
|
|
|
|
{
|
2014-04-23 08:29:53 +00:00
|
|
|
$sql = 'SELECT count(*) FROM users'.( $username ? ' WHERE username=?' : '');
|
|
|
|
$query = $this->executeQuery($sql, ( $username ? array($username) : array()));
|
|
|
|
list($count) = $query->fetch();
|
|
|
|
return $count;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function getUserPassword($userID)
|
|
|
|
{
|
2014-04-23 08:29:53 +00:00
|
|
|
$sql = "SELECT * FROM users WHERE id=?";
|
|
|
|
$query = $this->executeQuery($sql, array($userID));
|
|
|
|
$password = $query->fetchAll();
|
|
|
|
return isset($password[0]['password']) ? $password[0]['password'] : null;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function deleteUserConfig($userID)
|
|
|
|
{
|
2014-04-23 08:29:53 +00:00
|
|
|
$sql_action = 'DELETE from users_config WHERE user_id=?';
|
|
|
|
$params_action = array($userID);
|
|
|
|
$query = $this->executeQuery($sql_action, $params_action);
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function deleteTagsEntriesAndEntries($userID)
|
|
|
|
{
|
2014-04-23 08:29:53 +00:00
|
|
|
$entries = $this->retrieveAll($userID);
|
|
|
|
foreach($entries as $entryid) {
|
|
|
|
$tags = $this->retrieveTagsByEntry($entryid);
|
|
|
|
foreach($tags as $tag) {
|
|
|
|
$this->removeTagForEntry($entryid,$tags);
|
|
|
|
}
|
|
|
|
$this->deleteById($entryid,$userID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function deleteUser($userID)
|
|
|
|
{
|
2014-04-23 08:29:53 +00:00
|
|
|
$sql_action = 'DELETE from users WHERE id=?';
|
|
|
|
$params_action = array($userID);
|
|
|
|
$query = $this->executeQuery($sql_action, $params_action);
|
|
|
|
}
|
2013-04-19 13:46:04 +00:00
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function updateContentAndTitle($id, $title, $body, $user_id)
|
|
|
|
{
|
2014-02-28 20:49:38 +00:00
|
|
|
$sql_action = 'UPDATE entries SET content = ?, title = ? WHERE id=? AND user_id=?';
|
|
|
|
$params_action = array($body, $title, $id, $user_id);
|
|
|
|
$query = $this->executeQuery($sql_action, $params_action);
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function retrieveUnfetchedEntries($user_id, $limit)
|
|
|
|
{
|
2014-02-28 20:49:38 +00:00
|
|
|
|
|
|
|
$sql_limit = "LIMIT 0,".$limit;
|
|
|
|
if (STORAGE == 'postgres') {
|
|
|
|
$sql_limit = "LIMIT ".$limit." OFFSET 0";
|
|
|
|
}
|
|
|
|
|
2015-02-05 13:19:03 +00:00
|
|
|
$sql = "SELECT * FROM entries WHERE (content = '' OR content IS NULL) AND title LIKE '%Import%' AND user_id=? ORDER BY id " . $sql_limit;
|
2014-02-28 20:49:38 +00:00
|
|
|
$query = $this->executeQuery($sql, array($user_id));
|
|
|
|
$entries = $query->fetchAll();
|
|
|
|
|
|
|
|
return $entries;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function retrieveUnfetchedEntriesCount($user_id)
|
|
|
|
{
|
2015-02-05 13:19:03 +00:00
|
|
|
$sql = "SELECT count(*) FROM entries WHERE (content = '' OR content IS NULL) AND title LIKE '%Import%' AND user_id=?";
|
2014-04-02 17:55:19 +00:00
|
|
|
$query = $this->executeQuery($sql, array($user_id));
|
|
|
|
list($count) = $query->fetch();
|
|
|
|
|
|
|
|
return $count;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function retrieveAll($user_id)
|
|
|
|
{
|
2014-04-02 17:55:19 +00:00
|
|
|
$sql = "SELECT * FROM entries WHERE user_id=? ORDER BY id";
|
2013-08-06 13:51:48 +00:00
|
|
|
$query = $this->executeQuery($sql, array($user_id));
|
2013-04-21 16:09:25 +00:00
|
|
|
$entries = $query->fetchAll();
|
|
|
|
|
|
|
|
return $entries;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function retrieveOneById($id, $user_id)
|
|
|
|
{
|
2013-04-19 13:46:04 +00:00
|
|
|
$entry = NULL;
|
2013-08-06 13:51:48 +00:00
|
|
|
$sql = "SELECT * FROM entries WHERE id=? AND user_id=?";
|
|
|
|
$params = array(intval($id), $user_id);
|
2013-04-19 13:46:04 +00:00
|
|
|
$query = $this->executeQuery($sql, $params);
|
|
|
|
$entry = $query->fetchAll();
|
|
|
|
|
2013-11-20 09:22:21 +00:00
|
|
|
return isset($entry[0]) ? $entry[0] : null;
|
2013-04-19 13:46:04 +00:00
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function retrieveOneByURL($url, $user_id)
|
|
|
|
{
|
2014-02-14 15:27:22 +00:00
|
|
|
$entry = NULL;
|
2014-04-02 17:55:19 +00:00
|
|
|
$sql = "SELECT * FROM entries WHERE url=? AND user_id=?";
|
2014-02-14 15:27:22 +00:00
|
|
|
$params = array($url, $user_id);
|
|
|
|
$query = $this->executeQuery($sql, $params);
|
|
|
|
$entry = $query->fetchAll();
|
|
|
|
|
|
|
|
return isset($entry[0]) ? $entry[0] : null;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function reassignTags($old_entry_id, $new_entry_id)
|
|
|
|
{
|
2014-02-14 15:27:22 +00:00
|
|
|
$sql = "UPDATE tags_entries SET entry_id=? WHERE entry_id=?";
|
|
|
|
$params = array($new_entry_id, $old_entry_id);
|
|
|
|
$query = $this->executeQuery($sql, $params);
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function getEntriesByView($view, $user_id, $limit = '', $tag_id = 0)
|
|
|
|
{
|
2014-02-20 17:28:39 +00:00
|
|
|
switch ($view) {
|
|
|
|
case 'archive':
|
2014-04-02 17:55:19 +00:00
|
|
|
$sql = "SELECT * FROM entries WHERE user_id=? AND is_read=? ";
|
2014-02-20 17:28:39 +00:00
|
|
|
$params = array($user_id, 1);
|
2013-04-19 13:46:04 +00:00
|
|
|
break;
|
2014-02-20 17:28:39 +00:00
|
|
|
case 'fav' :
|
2014-04-02 17:55:19 +00:00
|
|
|
$sql = "SELECT * FROM entries WHERE user_id=? AND is_fav=? ";
|
2014-02-20 17:28:39 +00:00
|
|
|
$params = array($user_id, 1);
|
2013-04-19 13:46:04 +00:00
|
|
|
break;
|
2014-02-20 17:28:39 +00:00
|
|
|
case 'tag' :
|
|
|
|
$sql = "SELECT entries.* FROM entries
|
|
|
|
LEFT JOIN tags_entries ON tags_entries.entry_id=entries.id
|
2014-04-02 17:55:19 +00:00
|
|
|
WHERE entries.user_id=? AND tags_entries.tag_id = ? ";
|
2014-02-20 17:28:39 +00:00
|
|
|
$params = array($user_id, $tag_id);
|
2013-04-19 13:46:04 +00:00
|
|
|
break;
|
|
|
|
default:
|
2014-04-02 17:55:19 +00:00
|
|
|
$sql = "SELECT * FROM entries WHERE user_id=? AND is_read=? ";
|
2014-02-20 17:28:39 +00:00
|
|
|
$params = array($user_id, 0);
|
2013-04-19 13:46:04 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-02-20 17:28:39 +00:00
|
|
|
$sql .= $this->getEntriesOrder().' ' . $limit;
|
|
|
|
|
|
|
|
$query = $this->executeQuery($sql, $params);
|
|
|
|
$entries = $query->fetchAll();
|
|
|
|
|
|
|
|
return $entries;
|
2014-07-11 15:06:51 +00:00
|
|
|
}
|
2014-02-20 17:28:39 +00:00
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function getEntriesByViewCount($view, $user_id, $tag_id = 0)
|
|
|
|
{
|
2014-02-28 20:49:38 +00:00
|
|
|
switch ($view) {
|
2013-04-19 13:46:04 +00:00
|
|
|
case 'archive':
|
2014-04-02 17:55:19 +00:00
|
|
|
$sql = "SELECT count(*) FROM entries WHERE user_id=? AND is_read=? ";
|
2013-08-07 12:24:07 +00:00
|
|
|
$params = array($user_id, 1);
|
2013-04-19 13:46:04 +00:00
|
|
|
break;
|
|
|
|
case 'fav' :
|
2014-04-02 17:55:19 +00:00
|
|
|
$sql = "SELECT count(*) FROM entries WHERE user_id=? AND is_fav=? ";
|
2013-08-07 12:24:07 +00:00
|
|
|
$params = array($user_id, 1);
|
2013-04-19 13:46:04 +00:00
|
|
|
break;
|
2014-02-28 20:49:38 +00:00
|
|
|
case 'tag' :
|
|
|
|
$sql = "SELECT count(*) FROM entries
|
|
|
|
LEFT JOIN tags_entries ON tags_entries.entry_id=entries.id
|
2014-04-02 17:55:19 +00:00
|
|
|
WHERE entries.user_id=? AND tags_entries.tag_id = ? ";
|
2014-02-28 20:49:38 +00:00
|
|
|
$params = array($user_id, $tag_id);
|
|
|
|
break;
|
2013-04-19 13:46:04 +00:00
|
|
|
default:
|
2014-04-02 17:55:19 +00:00
|
|
|
$sql = "SELECT count(*) FROM entries WHERE user_id=? AND is_read=? ";
|
2013-08-06 13:51:48 +00:00
|
|
|
$params = array($user_id, 0);
|
2013-04-19 13:46:04 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-08-06 13:51:48 +00:00
|
|
|
$query = $this->executeQuery($sql, $params);
|
2014-02-20 17:28:39 +00:00
|
|
|
list($count) = $query->fetch();
|
2013-04-19 13:46:04 +00:00
|
|
|
|
2014-02-28 20:49:38 +00:00
|
|
|
return $count;
|
2013-04-19 13:46:04 +00:00
|
|
|
}
|
2015-02-15 23:43:18 +00:00
|
|
|
public function getRandomId($row, $user_id) {
|
|
|
|
$sql = "SELECT id FROM entries WHERE user_id=? LIMIT 1 OFFSET ? ";
|
|
|
|
$params = array($user_id, $row);
|
|
|
|
$query = $this->executeQuery($sql, $params);
|
|
|
|
|
|
|
|
return $query->fetchAll();
|
|
|
|
}
|
|
|
|
|
2013-04-19 13:46:04 +00:00
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function updateContent($id, $content, $user_id)
|
|
|
|
{
|
2013-08-09 21:30:20 +00:00
|
|
|
$sql_action = 'UPDATE entries SET content = ? WHERE id=? AND user_id=?';
|
|
|
|
$params_action = array($content, $id, $user_id);
|
|
|
|
$query = $this->executeQuery($sql_action, $params_action);
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
2014-04-02 17:55:19 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param string $url
|
|
|
|
* @param string $title
|
|
|
|
* @param string $content
|
|
|
|
* @param integer $user_id
|
|
|
|
* @return integer $id of inserted record
|
|
|
|
*/
|
2014-07-11 15:06:51 +00:00
|
|
|
public function add($url, $title, $content, $user_id, $isFavorite=0, $isRead=0)
|
|
|
|
{
|
2014-07-10 11:17:04 +00:00
|
|
|
$sql_action = 'INSERT INTO entries ( url, title, content, user_id, is_fav, is_read ) VALUES (?, ?, ?, ?, ?, ?)';
|
|
|
|
$params_action = array($url, $title, $content, $user_id, $isFavorite, $isRead);
|
2014-07-08 19:46:32 +00:00
|
|
|
|
2014-04-02 17:55:19 +00:00
|
|
|
if ( !$this->executeQuery($sql_action, $params_action) ) {
|
|
|
|
$id = null;
|
|
|
|
}
|
|
|
|
else {
|
2014-04-05 08:22:33 +00:00
|
|
|
$id = intval($this->getLastId( (STORAGE == 'postgres') ? 'entries_id_seq' : '') );
|
2014-04-02 17:55:19 +00:00
|
|
|
}
|
|
|
|
return $id;
|
2013-04-19 13:46:04 +00:00
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function deleteById($id, $user_id)
|
|
|
|
{
|
2013-08-06 13:51:48 +00:00
|
|
|
$sql_action = "DELETE FROM entries WHERE id=? AND user_id=?";
|
|
|
|
$params_action = array($id, $user_id);
|
2013-04-19 13:46:04 +00:00
|
|
|
$query = $this->executeQuery($sql_action, $params_action);
|
2013-04-23 07:38:57 +00:00
|
|
|
return $query;
|
2013-04-19 13:46:04 +00:00
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function favoriteById($id, $user_id)
|
|
|
|
{
|
2013-08-07 12:24:07 +00:00
|
|
|
$sql_action = "UPDATE entries SET is_fav=NOT is_fav WHERE id=? AND user_id=?";
|
2013-08-06 13:51:48 +00:00
|
|
|
$params_action = array($id, $user_id);
|
2013-04-19 13:46:04 +00:00
|
|
|
$query = $this->executeQuery($sql_action, $params_action);
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function archiveById($id, $user_id)
|
|
|
|
{
|
2013-08-07 12:24:07 +00:00
|
|
|
$sql_action = "UPDATE entries SET is_read=NOT is_read WHERE id=? AND user_id=?";
|
2013-08-06 13:51:48 +00:00
|
|
|
$params_action = array($id, $user_id);
|
2013-04-19 13:46:04 +00:00
|
|
|
$query = $this->executeQuery($sql_action, $params_action);
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function archiveAll($user_id)
|
|
|
|
{
|
2014-02-12 20:52:01 +00:00
|
|
|
$sql_action = "UPDATE entries SET is_read=? WHERE user_id=? AND is_read=?";
|
|
|
|
$params_action = array($user_id, 1, 0);
|
|
|
|
$query = $this->executeQuery($sql_action, $params_action);
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function getLastId($column = '')
|
|
|
|
{
|
2013-08-07 17:14:28 +00:00
|
|
|
return $this->getHandle()->lastInsertId($column);
|
2013-04-19 13:46:04 +00:00
|
|
|
}
|
2014-04-11 11:43:17 +00:00
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function search($term, $user_id, $limit = '')
|
|
|
|
{
|
2014-04-02 19:33:06 +00:00
|
|
|
$search = '%'.$term.'%';
|
|
|
|
$sql_action = "SELECT * FROM entries WHERE user_id=? AND (content LIKE ? OR title LIKE ? OR url LIKE ?) "; //searches in content, title and URL
|
|
|
|
$sql_action .= $this->getEntriesOrder().' ' . $limit;
|
|
|
|
$params_action = array($user_id, $search, $search, $search);
|
|
|
|
$query = $this->executeQuery($sql_action, $params_action);
|
|
|
|
return $query->fetchAll();
|
|
|
|
}
|
2013-12-06 12:02:15 +00:00
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function retrieveAllTags($user_id, $term = NULL)
|
|
|
|
{
|
2014-03-10 14:28:47 +00:00
|
|
|
$sql = "SELECT DISTINCT tags.*, count(entries.id) AS entriescount FROM tags
|
2014-02-19 12:25:28 +00:00
|
|
|
LEFT JOIN tags_entries ON tags_entries.tag_id=tags.id
|
|
|
|
LEFT JOIN entries ON tags_entries.entry_id=entries.id
|
2014-04-02 17:55:19 +00:00
|
|
|
WHERE entries.user_id=?
|
2014-03-10 14:28:47 +00:00
|
|
|
". (($term) ? "AND lower(tags.value) LIKE ?" : '') ."
|
|
|
|
GROUP BY tags.id, tags.value
|
|
|
|
ORDER BY tags.value";
|
|
|
|
$query = $this->executeQuery($sql, (($term)? array($user_id, strtolower('%'.$term.'%')) : array($user_id) ));
|
2013-12-06 12:15:06 +00:00
|
|
|
$tags = $query->fetchAll();
|
|
|
|
|
|
|
|
return $tags;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function retrieveTag($id, $user_id)
|
|
|
|
{
|
2013-12-06 13:22:29 +00:00
|
|
|
$tag = NULL;
|
2014-02-20 08:41:16 +00:00
|
|
|
$sql = "SELECT DISTINCT tags.* FROM tags
|
2014-02-19 12:25:28 +00:00
|
|
|
LEFT JOIN tags_entries ON tags_entries.tag_id=tags.id
|
|
|
|
LEFT JOIN entries ON tags_entries.entry_id=entries.id
|
2014-04-02 17:55:19 +00:00
|
|
|
WHERE tags.id=? AND entries.user_id=?";
|
2014-02-19 12:25:28 +00:00
|
|
|
$params = array(intval($id), $user_id);
|
2013-12-06 13:22:29 +00:00
|
|
|
$query = $this->executeQuery($sql, $params);
|
|
|
|
$tag = $query->fetchAll();
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
return isset($tag[0]) ? $tag[0] : NULL;
|
2013-12-06 13:22:29 +00:00
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function retrieveEntriesByTag($tag_id, $user_id)
|
|
|
|
{
|
2014-04-02 17:55:19 +00:00
|
|
|
$sql =
|
2014-01-03 09:06:26 +00:00
|
|
|
"SELECT entries.* FROM entries
|
2013-12-06 13:22:29 +00:00
|
|
|
LEFT JOIN tags_entries ON tags_entries.entry_id=entries.id
|
2014-06-30 21:24:46 +00:00
|
|
|
WHERE tags_entries.tag_id = ? AND entries.user_id=? ORDER by entries.id DESC";
|
2014-02-19 12:25:28 +00:00
|
|
|
$query = $this->executeQuery($sql, array($tag_id, $user_id));
|
2013-12-06 13:22:29 +00:00
|
|
|
$entries = $query->fetchAll();
|
|
|
|
|
|
|
|
return $entries;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function retrieveTagsByEntry($entry_id)
|
|
|
|
{
|
2014-04-02 17:55:19 +00:00
|
|
|
$sql =
|
2014-01-03 09:06:26 +00:00
|
|
|
"SELECT tags.* FROM tags
|
2013-12-06 12:02:15 +00:00
|
|
|
LEFT JOIN tags_entries ON tags_entries.tag_id=tags.id
|
|
|
|
WHERE tags_entries.entry_id = ?";
|
2013-12-06 12:15:06 +00:00
|
|
|
$query = $this->executeQuery($sql, array($entry_id));
|
|
|
|
$tags = $query->fetchAll();
|
2013-12-06 12:02:15 +00:00
|
|
|
|
|
|
|
return $tags;
|
|
|
|
}
|
2013-12-06 14:07:51 +00:00
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function removeTagForEntry($entry_id, $tag_id)
|
|
|
|
{
|
2013-12-06 14:07:51 +00:00
|
|
|
$sql_action = "DELETE FROM tags_entries WHERE tag_id=? AND entry_id=?";
|
|
|
|
$params_action = array($tag_id, $entry_id);
|
|
|
|
$query = $this->executeQuery($sql_action, $params_action);
|
|
|
|
return $query;
|
|
|
|
}
|
2014-04-30 10:14:20 +00:00
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function cleanUnusedTag($tag_id)
|
|
|
|
{
|
2014-05-14 16:51:02 +00:00
|
|
|
$sql_action = "SELECT tags.* FROM tags JOIN tags_entries ON tags_entries.tag_id=tags.id WHERE tags.id=?";
|
|
|
|
$query = $this->executeQuery($sql_action,array($tag_id));
|
2014-04-30 10:14:20 +00:00
|
|
|
$tagstokeep = $query->fetchAll();
|
2014-05-14 16:51:02 +00:00
|
|
|
$sql_action = "SELECT tags.* FROM tags LEFT JOIN tags_entries ON tags_entries.tag_id=tags.id WHERE tags.id=?";
|
|
|
|
$query = $this->executeQuery($sql_action,array($tag_id));
|
2014-04-30 10:14:20 +00:00
|
|
|
$alltags = $query->fetchAll();
|
2014-05-14 16:51:02 +00:00
|
|
|
|
2014-04-30 10:14:20 +00:00
|
|
|
foreach ($alltags as $tag) {
|
|
|
|
if ($tag && !in_array($tag,$tagstokeep)) {
|
|
|
|
$sql_action = "DELETE FROM tags WHERE id=?";
|
|
|
|
$params_action = array($tag[0]);
|
2014-05-14 16:51:02 +00:00
|
|
|
$this->executeQuery($sql_action, $params_action);
|
|
|
|
return true;
|
2014-04-30 10:14:20 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-14 16:51:02 +00:00
|
|
|
|
2014-04-30 10:14:20 +00:00
|
|
|
}
|
2013-12-06 14:07:51 +00:00
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function retrieveTagByValue($value)
|
|
|
|
{
|
2013-12-06 14:07:51 +00:00
|
|
|
$tag = NULL;
|
|
|
|
$sql = "SELECT * FROM tags WHERE value=?";
|
|
|
|
$params = array($value);
|
|
|
|
$query = $this->executeQuery($sql, $params);
|
|
|
|
$tag = $query->fetchAll();
|
|
|
|
|
|
|
|
return isset($tag[0]) ? $tag[0] : null;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function createTag($value)
|
|
|
|
{
|
2013-12-06 14:07:51 +00:00
|
|
|
$sql_action = 'INSERT INTO tags ( value ) VALUES (?)';
|
|
|
|
$params_action = array($value);
|
|
|
|
$query = $this->executeQuery($sql_action, $params_action);
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
public function setTagToEntry($tag_id, $entry_id)
|
|
|
|
{
|
2013-12-06 14:07:51 +00:00
|
|
|
$sql_action = 'INSERT INTO tags_entries ( tag_id, entry_id ) VALUES (?, ?)';
|
|
|
|
$params_action = array($tag_id, $entry_id);
|
|
|
|
$query = $this->executeQuery($sql_action, $params_action);
|
|
|
|
return $query;
|
|
|
|
}
|
2014-02-20 17:28:39 +00:00
|
|
|
|
2014-07-11 15:06:51 +00:00
|
|
|
private function getEntriesOrder()
|
|
|
|
{
|
|
|
|
if (isset($_SESSION['sort']) and array_key_exists($_SESSION['sort'], $this->order)) {
|
|
|
|
return $this->order[$_SESSION['sort']];
|
2014-02-20 17:28:39 +00:00
|
|
|
}
|
2014-07-11 15:06:51 +00:00
|
|
|
else {
|
|
|
|
return $this->order['default'];
|
|
|
|
}
|
|
|
|
}
|
2013-04-20 08:05:42 +00:00
|
|
|
}
|