kabano/models/d.blog.php

550 lines
17 KiB
PHP
Raw Normal View History

2017-12-20 20:49:11 +00:00
<?
2018-10-22 18:03:03 +00:00
namespace Kabano;
2017-12-20 20:49:11 +00:00
/**********************************************************
***********************************************************
**
** This class is to manage a blog article object
**
***********************************************************
**********************************************************/
require_once($config['third_folder']."Md/MarkdownExtra.inc.php");
class BlogArticle
{
public $content_id = NULL;
public $locale_id = NULL;
public $version_id = NULL;
2018-11-05 20:35:21 +00:00
public $permalink = NULL;
public $version = 0;
2017-12-20 20:49:11 +00:00
public $locale = NULL;
public $creation_date = NULL;
public $update_date = NULL;
2017-12-20 20:49:11 +00:00
public $author = NULL;
public $is_public = NULL;
public $is_archive = NULL;
public $is_commentable = NULL;
public $type = "blog";
public $name = NULL;
public $content = NULL;
2017-12-20 20:49:11 +00:00
/*****
** Checks if a page at this URL exists and return the ID
*****/
public function checkPermalink($permalink, $withArchive=0, $elementNb=0) {
2017-12-20 20:49:11 +00:00
global $config;
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
$query = "SELECT content_versions.id AS version_id, * FROM contents INNER JOIN content_locales ON contents.id = content_locales.content_id INNER JOIN content_versions ON content_locales.id = content_versions.locale_id WHERE permalink=$1 AND type='blog'";
2017-12-20 20:49:11 +00:00
if($withArchive==0) {
$query .= " AND is_archive=FALSE AND is_public=TRUE";
2017-12-20 20:49:11 +00:00
}
$query .= " ORDER BY update_date DESC LIMIT 1 OFFSET $2";
2017-12-20 20:49:11 +00:00
pg_prepare($con, "prepare1", $query)
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare1", array($permalink, $elementNb))
2017-12-20 20:49:11 +00:00
or die ("Cannot execute statement\n");
pg_close($con);
if(pg_num_rows($result) == 1) {
$row = pg_fetch_assoc($result);
$this->populate($row);
2017-12-20 20:49:11 +00:00
return 1;
}
else {
return 0;
}
}
/*****
** Populate the object using its ID
*****/
public function populate($row) {
$this->content_id = $row['content_id'];
$this->locale_id = $row['locale_id'];
$this->version_id = $row['version_id'];
$this->permalink = $row['permalink'];
$this->version = $row['version'];
$this->locale = $row['locale'];
$this->creation_date = $row['creation_date'];
$this->update_date = $row['update_date'];
$this->author = $row['author'];
$this->is_public = $row['is_public'];
$this->is_archive = $row['is_archive'];
$this->is_commentable = $row['is_commentable'];
$this->type = $row['type'];
$this->name = $row['name'];
$this->content = $row['content'];
2017-12-20 20:49:11 +00:00
}
/*****
** Edit a page by archiving the current one and inserting a new one ID
*****/
2018-11-05 21:29:14 +00:00
public function update() {
2017-12-20 20:49:11 +00:00
global $config;
global $user;
2018-11-05 21:29:14 +00:00
if($this->content_id == 0 || $this->locale_id == 0 || $this->version_id == 0)
2018-11-05 21:29:14 +00:00
die("Cannot update entry without giving ID");
2017-12-20 20:49:11 +00:00
2018-11-05 21:29:14 +00:00
$this->version++;
2017-12-20 20:49:11 +00:00
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
$query = "UPDATE content_versions SET is_archive = TRUE WHERE locale_id = $1";
2017-12-20 20:49:11 +00:00
pg_prepare($con, "prepare1", $query)
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare1", array($this->locale_id))
2017-12-20 20:49:11 +00:00
or die ("Cannot execute statement\n");
$query = "INSERT INTO content_versions (version, update_date, is_archive, name, content, locale_id) VALUES
($1, $2, FALSE, $3, $4, $5) RETURNING id";
2017-12-20 20:49:11 +00:00
pg_prepare($con, "prepare2", $query)
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare2", array($this->version, date('r'), $this->name, $this->content, $this->locale_id))
2017-12-20 20:49:11 +00:00
or die ("Cannot execute statement\n");
$this->version_id = pg_fetch_assoc($result)['id'];
2017-12-20 20:49:11 +00:00
2018-11-05 21:29:14 +00:00
$query = "INSERT INTO content_contributors (content, contributor) VALUES
($1, $2) ON CONFLICT (content, contributor) DO NOTHING";
pg_prepare($con, "prepare3", $query)
2018-11-05 21:29:14 +00:00
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare3", array($this->locale_id, $user->id))
2018-11-05 21:29:14 +00:00
or die ("Cannot execute statement\n");
2017-12-20 20:49:11 +00:00
pg_close($con);
error_log(
2018-11-05 21:39:06 +00:00
date('r')." \t".$user->name." (".$user->id.") \tUPDATE \tEdit blog article '".$this->permalink."'\r\n",
2017-12-20 20:49:11 +00:00
3,
$config['logs_folder'].'blog.articles.log');
2018-11-05 21:29:14 +00:00
}
2017-12-20 20:49:11 +00:00
/*****
** Delete an article by archiving it
*****/
2018-11-05 21:39:06 +00:00
public function delete() {
2017-12-20 20:49:11 +00:00
global $config;
global $user;
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
2018-11-05 21:39:06 +00:00
$query = "UPDATE contents SET is_public=FALSE WHERE permalink=$1 AND type='blog'";
2017-12-20 20:49:11 +00:00
pg_prepare($con, "prepare1", $query)
or die ("Cannot prepare statement\n");
2018-11-05 21:39:06 +00:00
$result = pg_execute($con, "prepare1", array($this->permalink))
2017-12-20 20:49:11 +00:00
or die ("Cannot execute statement\n");
pg_close($con);
error_log(
2018-11-05 21:39:06 +00:00
date('r')." \t".$user->name." (".$user->id.") \tDELETE \tArchive blog article '".$this->permalink."'\r\n",
2017-12-20 20:49:11 +00:00
3,
$config['logs_folder'].'blog.articles.log');
2018-11-05 21:39:06 +00:00
}
/*****
** Restore a page from unpublishing it
*****/
public function restore() {
global $config;
global $user;
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
$query = "UPDATE contents SET is_public=TRUE WHERE permalink=$1 AND type='blog'";
pg_prepare($con, "prepare1", $query)
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare1", array($this->permalink))
or die ("Cannot execute statement\n");
pg_close($con);
error_log(
date('r')." \t".$user->name." (".$user->id.") \tRESTORE \tPublish blog article '".$this->permalink."'\r\n",
3,
$config['logs_folder'].'blog.articles.log');
}
2017-12-20 20:49:11 +00:00
/*****
** Create an article
*****/
public function insert() {
global $config;
global $user;
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
$query = "INSERT INTO contents (permalink, creation_date, is_public, is_commentable, type) VALUES
($1, $2, TRUE, $3, 'blog') RETURNING id";
2017-12-20 20:49:11 +00:00
2018-11-05 20:35:21 +00:00
pg_prepare($con, "prepare1", $query)
2017-12-20 20:49:11 +00:00
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare1", array($this->permalink, date('r'), $this->is_commentable))
or die ("Cannot execute statement\n");
$this->content_id = pg_fetch_assoc($result)['id'];
$query = "INSERT INTO content_locales (content_id, locale, author) VALUES
($1, $2, $3) RETURNING id";
pg_prepare($con, "prepare2", $query)
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare2", array($this->content_id, $this->locale, $user->id))
or die ("Cannot execute statement\n");
$this->locale_id = pg_fetch_assoc($result)['id'];
$query = "INSERT INTO content_versions (version, update_date, is_archive, name, content, locale_id) VALUES
('0', $1, FALSE, $2, $3, $4) RETURNING id";
pg_prepare($con, "prepare3", $query)
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare3", array(date('r'), $this->name, $this->content, $this->locale_id))
2017-12-20 20:49:11 +00:00
or die ("Cannot execute statement\n");
$this->version_id = pg_fetch_assoc($result)['id'];
2018-11-05 20:35:21 +00:00
$query = "INSERT INTO content_contributors (content, contributor) VALUES
($1, $2)";
pg_prepare($con, "prepare4", $query)
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare4", array($this->id, $user->id))
or die ("Cannot execute statement\n");
pg_close($con);
2017-12-20 20:49:11 +00:00
error_log(
2018-11-05 21:39:06 +00:00
date('r')." \t".$user->name." (".$user->id.") \tINSERT \tCreate new blog article '".$this->permalink."'\r\n",
2017-12-20 20:49:11 +00:00
3,
$config['logs_folder'].'blog.articles.log');
}
/*****
** Converts the Markdown content to HTML
*****/
public function md2html() {
$this->content_html = \Michelf\MarkdownExtra::defaultTransform($this->content);
}
/*****
** Converts the Markdown content to text
*****/
public function md2txt() {
$this->md2html();
$this->content_txt = strip_tags($this->content_html);
}
}
/**********************************************************
***********************************************************
**
** This class is to manage a list of blog articles
**
***********************************************************
**********************************************************/
class BlogArticles
{
2018-11-04 07:35:56 +00:00
public $objs = array();
2017-12-20 20:49:11 +00:00
public $number = NULL;
/*****
** Return the list of different articles
*****/
public function listArticles($first, $count, $archive=0) {
global $config;
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
$query = "SELECT content_versions.id AS version_id, * FROM contents INNER JOIN content_locales ON contents.id = content_locales.content_id INNER JOIN content_versions ON content_locales.id = content_versions.locale_id WHERE is_archive=FALSE ";
if ($archive == 1)
$query .= "AND is_public=TRUE ";
$query .= "AND type='blog' ORDER BY update_date DESC";
2017-12-20 20:49:11 +00:00
$query .= " LIMIT $1 OFFSET $2";
pg_prepare($con, "prepare1", $query)
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare1", array($count, $first))
or die ("Cannot execute statement\n");
pg_close($con);
for($i = 0; $i < pg_num_rows($result); $i++) {
$row = pg_fetch_assoc($result, $i);
2018-11-04 07:35:56 +00:00
$this->objs[$i] = new BlogArticle;
$this->objs[$i]->populate($row);
2017-12-20 20:49:11 +00:00
}
}
2018-11-04 07:35:56 +00:00
2017-12-20 20:49:11 +00:00
/*****
** Return the number of articles
*****/
public function number($archive=0) {
global $config;
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
$query = "SELECT content_versions.id AS version_id, * FROM contents INNER JOIN content_locales ON contents.id = content_locales.content_id INNER JOIN content_versions ON content_locales.id = content_versions.locale_id WHERE is_archive=FALSE ";
if ($archive == 1)
$query .= "AND is_public=TRUE ";
$query .= "AND type='blog' ORDER BY update_date DESC";
2017-12-20 20:49:11 +00:00
pg_prepare($con, "prepare1", $query)
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare1", array())
or die ("Cannot execute statement\n");
pg_close($con);
$this->number = pg_num_rows($result);
}
2018-11-04 07:35:56 +00:00
2017-12-20 20:49:11 +00:00
/*****
** Return the list of archived version of a blog article
*****/
2018-11-05 21:05:42 +00:00
public function getHistory($url) {
2017-12-20 20:49:11 +00:00
global $config;
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
$query = "SELECT content_versions.id AS version_id, * FROM contents INNER JOIN content_locales ON contents.id = content_locales.content_id INNER JOIN content_versions ON content_locales.id = content_versions.locale_id WHERE permalink=$1 AND type='blog' ORDER BY update_date DESC";
2017-12-20 20:49:11 +00:00
pg_prepare($con, "prepare1", $query)
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare1", array($url))
or die ("Cannot execute statement\n");
pg_close($con);
$this->number = pg_num_rows($result);
for($i = 0; $i < $this->number; $i++) {
$row = pg_fetch_assoc($result, $i);
2018-11-05 21:05:42 +00:00
$this->objs[$i] = new BlogArticle;
$this->objs[$i]->populate($row);
2017-12-20 20:49:11 +00:00
}
2018-11-05 21:05:42 +00:00
}
2017-12-20 20:49:11 +00:00
}
/**********************************************************
***********************************************************
**
** This class is to manage a blog comment object
**
***********************************************************
**********************************************************/
class BlogComment
{
2018-11-18 20:59:55 +00:00
public $id = NULL;
public $version = 0;
public $creation_date = NULL;
public $update_date = NULL;
2017-12-20 20:49:11 +00:00
public $author = NULL;
2018-11-18 20:59:55 +00:00
public $is_public = NULL;
public $is_archive = NULL;
public $content = NULL;
public $comment = NULL;
public $locale = NULL;
2017-12-20 20:49:11 +00:00
/*****
2018-11-18 20:59:55 +00:00
** Connect to correct account using ID and stores its ID
2017-12-20 20:49:11 +00:00
*****/
2018-11-18 20:59:55 +00:00
public function checkID($id) {
2017-12-20 20:49:11 +00:00
global $config;
2018-11-18 20:59:55 +00:00
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
2017-12-20 20:49:11 +00:00
2018-11-18 20:59:55 +00:00
$query = "SELECT * FROM content_comments WHERE id=$1";
2017-12-20 20:49:11 +00:00
2018-11-18 20:59:55 +00:00
pg_prepare($con, "prepare1", $query)
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare1", array($id))
or die ("Cannot execute statement\n");
2017-12-20 20:49:11 +00:00
2018-11-18 20:59:55 +00:00
pg_close($con);
2017-12-20 20:49:11 +00:00
2018-11-18 20:59:55 +00:00
if(pg_num_rows($result) == 1) {
$row = pg_fetch_assoc($result);
$this->populate($row);
return 1;
2017-12-20 20:49:11 +00:00
}
else {
2018-11-18 20:59:55 +00:00
return 0;
2017-12-20 20:49:11 +00:00
}
}
2018-11-18 20:59:55 +00:00
/*****
** Populate the object using its ID
*****/
public function populate($row) {
$this->id = $row['id'];
$this->version = $row['version'];
$this->creation_date = $row['creation_date'];
$this->update_date = $row['update_date'];
$this->author = $row['author'];
$this->is_public = $row['is_public'];
$this->is_archive = $row['is_archive'];
$this->content = $row['content'];
$this->comment = $row['comment'];
$this->locale = $row['locale'];
}
2017-12-20 20:49:11 +00:00
/*****
** Create a new comment
*****/
public function insert() {
global $config;
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
2018-11-18 20:59:55 +00:00
$query = "INSERT INTO content_comments (version, creation_date, update_date, author, is_public, is_archive, content, comment, locale) VALUES
('0', $1, $2, $3, TRUE, FALSE, $4, $5, $6) RETURNING id";
2017-12-20 20:49:11 +00:00
2018-11-18 20:59:55 +00:00
pg_prepare($con, "prepare1", $query)
2017-12-20 20:49:11 +00:00
or die ("Cannot prepare statement\n");
2018-11-18 20:59:55 +00:00
$result = pg_execute($con, "prepare1", array(date('r'), date('r'), $this->author, $this->content, $this->comment, $this->locale))
2017-12-20 20:49:11 +00:00
or die ("Cannot execute statement\n");
2018-11-18 20:59:55 +00:00
$this->id = pg_fetch_assoc($result)['id'];
2017-12-20 20:49:11 +00:00
pg_close($con);
}
/*****
** Archive a comment
*****/
public function delete() {
global $config;
global $user;
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
2018-11-18 20:59:55 +00:00
$query = "UPDATE content_comments SET is_public = FALSE WHERE id = $1";
2017-12-20 20:49:11 +00:00
2018-11-18 20:59:55 +00:00
pg_prepare($con, "prepare1", $query)
2017-12-20 20:49:11 +00:00
or die ("Cannot prepare statement\n");
2018-11-18 20:59:55 +00:00
$result = pg_execute($con, "prepare1", array($this->id))
2017-12-20 20:49:11 +00:00
or die ("Cannot execute statement\n");
pg_close($con);
error_log(
date('r')." \t".$user->name." (".$user->id.") \tDELETE \tArchive comment ".$this->id."\r\n",
3,
$config['logs_folder'].'blog.comments.log');
}
/*****
2018-11-18 20:59:55 +00:00
** Restore a comment
2017-12-20 20:49:11 +00:00
*****/
2018-11-18 20:59:55 +00:00
public function restore() {
2017-12-20 20:49:11 +00:00
global $config;
global $user;
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
2018-11-18 20:59:55 +00:00
$query = "UPDATE content_comments SET is_public = TRUE WHERE id = $1";
2017-12-20 20:49:11 +00:00
2018-11-18 20:59:55 +00:00
pg_prepare($con, "prepare1", $query)
2017-12-20 20:49:11 +00:00
or die ("Cannot prepare statement\n");
2018-11-18 20:59:55 +00:00
$result = pg_execute($con, "prepare1", array($this->id))
2017-12-20 20:49:11 +00:00
or die ("Cannot execute statement\n");
pg_close($con);
error_log(
date('r')." \t".$user->name." (".$user->id.") \tPUBLISH \tUn archive comment ".$this->id."\r\n",
3,
$config['logs_folder'].'blog.comments.log');
}
/*****
2018-11-18 20:59:55 +00:00
** Converts the Markdown comment to HTML
2017-12-20 20:49:11 +00:00
*****/
public function md2html() {
2018-11-18 20:59:55 +00:00
$this->comment_html = \Michelf\MarkdownExtra::defaultTransform($this->comment);
2017-12-20 20:49:11 +00:00
}
/*****
2018-11-18 20:59:55 +00:00
** Converts the Markdown comment to text
2017-12-20 20:49:11 +00:00
*****/
public function md2txt() {
$this->md2html();
2018-11-18 20:59:55 +00:00
$this->comment_txt = strip_tags($this->comment_html);
2017-12-20 20:49:11 +00:00
}
}
/**********************************************************
***********************************************************
**
** This class is to manage a list of blog comments
**
***********************************************************
**********************************************************/
class BlogComments
{
2018-11-18 20:59:55 +00:00
public $objs = array();
2017-12-20 20:49:11 +00:00
public $number = NULL;
/*****
** Return the list of different articles
*****/
public function listComments($id, $archive=0) {
global $config;
$con = pg_connect("host=".$config['SQL_host']." dbname=".$config['SQL_db']." user=".$config['SQL_user']." password=".$config['SQL_pass'])
or die ("Could not connect to server\n");
2018-11-18 20:59:55 +00:00
$query = "SELECT * FROM content_comments WHERE content = $1 ";
2017-12-20 20:49:11 +00:00
if ($archive == 0)
2018-11-18 20:59:55 +00:00
$query .= "AND is_archive IS FALSE AND is_public IS TRUE ";
$query .= "ORDER BY update_date DESC";
2017-12-20 20:49:11 +00:00
pg_prepare($con, "prepare1", $query)
or die ("Cannot prepare statement\n");
$result = pg_execute($con, "prepare1", array($id))
or die ("Cannot execute statement\n");
pg_close($con);
$this->number = pg_num_rows($result);
for($i = 0; $i < pg_num_rows($result); $i++) {
$row = pg_fetch_assoc($result, $i);
2018-11-18 20:59:55 +00:00
$this->objs[$i] = new BlogComment;
$this->objs[$i]->populate($row);
2017-12-20 20:49:11 +00:00
}
}
}
?>