mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
135 lines
5.0 KiB
PHP
135 lines
5.0 KiB
PHP
<?php
|
|
class News_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'campus.tbl_news';
|
|
$this->pk = 'news_id';
|
|
}
|
|
|
|
/**
|
|
* Get all News ordered by date. (most actual on top)
|
|
* @param null $limit Amount of news.
|
|
* @return array
|
|
*/
|
|
public function getAll($limit = null)
|
|
{
|
|
$this->addJoin("campus.tbl_content","content_id");
|
|
return $this->execReadOnlyQuery('
|
|
SELECT *, TO_CHAR(campus.tbl_news.datum, ?) as datumformatted
|
|
FROM campus.tbl_news
|
|
JOIN campus.tbl_content content ON content.content_id = campus.tbl_news.content_id
|
|
WHERE
|
|
--text IS NOT NULL AND
|
|
datum <= NOW() AND (datum_bis IS NULL OR datum_bis >= now()::date)
|
|
ORDER BY datum DESC
|
|
LIMIT ' . $this->escape($limit)
|
|
, ['DD/MM/YYYY']);
|
|
}
|
|
|
|
public function getNewsContentIDs($limit=10){
|
|
$this->addSelect(['content_id']);
|
|
return $this->loadWhere("datum <= NOW() AND (datum_bis IS NULL OR datum_bis >= now()::date)
|
|
ORDER BY datum DESC
|
|
LIMIT " . $this->escape($limit));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* @param string $sprache
|
|
* @param string $studiengang_kz
|
|
* @param integer | null $semester
|
|
* @param string $fachbereich_kurzbz
|
|
* @param boolean $sichtbar
|
|
* @param integer $maxalter
|
|
* @param integer $page
|
|
* @param integer $page_size
|
|
* @param boolean $all
|
|
* @param boolean $mischen
|
|
*
|
|
* TODO(chris): this is not a good function -> the params are all over the place
|
|
*
|
|
*/
|
|
protected function prepareNewsWithContent($sprache, $studiengang_kz, $semester, $fachbereich_kurzbz = null, $sichtbar = true, $maxalter = 0, $page = 1, $page_size = 10, $all = false, $mischen = true)
|
|
{
|
|
|
|
$this->addOrder('datum', 'DESC');
|
|
|
|
$studiengang_kz = trim($studiengang_kz);
|
|
$fachbereich_kurzbz = trim($fachbereich_kurzbz);
|
|
|
|
$where = [];
|
|
if (trim($maxalter) != '0') {
|
|
$where[] = "(now()-datum) < interval " . $this->db->escape($maxalter) . " days";
|
|
|
|
}
|
|
if (!$all) {
|
|
$where[] = "datum <= now()";
|
|
$where[] = "(datum_bis >= now()::date OR datum_bis IS NULL)";
|
|
}
|
|
if ($fachbereich_kurzbz != '*') {
|
|
if ($fachbereich_kurzbz == '') {
|
|
$where[] = "fachbereich_kurzbz IS NULL";
|
|
} else {
|
|
$where[] = "fachbereich_kurzbz = " . $this->db->escape($fachbereich_kurzbz);
|
|
|
|
}
|
|
}
|
|
if ($studiengang_kz == '0') {
|
|
$where[] = "studiengang_kz = " . $this->db->escape($studiengang_kz);
|
|
|
|
if ($semester === NULL)
|
|
$where[] = "semester IS NULL";
|
|
elseif ($semester === 0)
|
|
$where[] = "semester = 0";
|
|
} elseif ($studiengang_kz != '') {
|
|
$add = $mischen === true ? " OR (studiengang_kz = 0 AND semester IS NULL)" : "";
|
|
$where[] = "((studiengang_kz = " . $this->db->escape($studiengang_kz) . " AND semester = " . $this->db->escape($semester) . ") OR (studiengang_kz = " . $this->db->escape($studiengang_kz) . " AND semester = 0) OR (studiengang_kz = 0 AND semester = " . $this->db->escape($semester) . ")" . $add . ")";
|
|
|
|
}
|
|
$this->addJoin('campus.tbl_contentsprache cs', 'content_id');
|
|
|
|
$where[] = "cs.sichtbar = " . ($sichtbar ? "true" : "false");
|
|
|
|
$where[] = "cs.sprache = (CASE WHEN EXISTS(SELECT 1 FROM campus.tbl_contentsprache cs2 WHERE cs2.content_id=" . $this->dbTable . ".content_id AND sprache=" . $this->db->escape($sprache) . ") THEN " . $this->db->escape($sprache) . " ELSE " . $this->db->escape(DEFAULT_LANGUAGE) . " END)";
|
|
|
|
|
|
$where[] = "cs.version = (SELECT MAX(version) FROM campus.tbl_contentsprache cs3 WHERE cs3.content_id=" . $this->dbTable . ".content_id AND cs3.sprache = (CASE WHEN EXISTS(SELECT 1 FROM campus.tbl_contentsprache cs2 WHERE cs2.content_id=" . $this->dbTable . ".content_id AND sprache=" . $this->db->escape($sprache) . ") THEN " . $this->db->escape($sprache) . " ELSE " . $this->db->escape(DEFAULT_LANGUAGE) . " END))";
|
|
|
|
|
|
$where = implode(" AND ", $where);
|
|
|
|
$this->db->where($where, NULL, FALSE);
|
|
|
|
}
|
|
|
|
public function getNewsWithContent($sprache, $studiengang_kz, $semester, $fachbereich_kurzbz = null, $sichtbar = true, $maxalter = 0, $page = 1, $page_size = 10, $all = false, $mischen = true)
|
|
{
|
|
$this->prepareNewsWithContent($sprache, $studiengang_kz, $semester, $fachbereich_kurzbz, $sichtbar, $maxalter, $page, $page_size, $all, $mischen);
|
|
|
|
// getting the number of rows of the query and adding pagination to the query result
|
|
$num_rows = $this->getNumRows(true);
|
|
$this->addPagination($page, $page_size, $num_rows);
|
|
|
|
// preparing the query again because every call to get_compiled_select or cour_all_results will add the from clause to the query
|
|
$this->prepareNewsWithContent($sprache, $studiengang_kz, $semester, $fachbereich_kurzbz, $sichtbar, $maxalter, $page, $page_size, $all, $mischen);
|
|
|
|
return $this->load();
|
|
}
|
|
|
|
public function countNewsWithContent($sprache, $studiengang_kz, $semester, $fachbereich_kurzbz = null, $sichtbar = true, $maxalter = 0, $page = 1, $page_size = 10, $all = false, $mischen = true)
|
|
{
|
|
$this->prepareNewsWithContent($sprache, $studiengang_kz, $semester, $fachbereich_kurzbz, $sichtbar, $maxalter, $page, $page_size, $all, $mischen);
|
|
return $this->getNumRows();
|
|
}
|
|
|
|
|
|
}
|