| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/blog/libraries/kunena/database/object/ |
Upload File : |
<?php
/**
* Kunena Component
* @package Kunena.Framework
* @subpackage Database
*
* @copyright (C) 2008 - 2018 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
// no direct access
defined('_JEXEC') or die;
/**
* Class KunenaDatabaseObjectFinder
*/
abstract class KunenaDatabaseObjectFinder
{
/**
* Table associated with the model.
*
* @var string
*/
protected $table;
/**
* @var string
*/
protected $primaryKey = 'id';
/**
* @var JDatabaseQuery
*/
protected $query;
/**
* @var JDatabase
*/
protected $db;
protected $start = 0;
protected $limit = 20;
protected $skip = false;
/**
* Constructor.
*/
public function __construct()
{
if (!$this->table)
{
throw new DomainException('Table name missing from ' . get_class($this));
}
$this->db = JFactory::getDbo();
$this->query = $this->db->getQuery(true);
$this->query->from($this->table . ' AS a');
}
/**
* Set limitstart for the query.
*
* @param int $limitstart
*
* @return $this
*/
public function start($limitstart = 0)
{
$this->start = $limitstart;
return $this;
}
/**
* Set limit to the query.
*
* If this function isn't used, RokClub will use threads per page configuration setting.
*
* @param int $limit
*
* @return $this
*/
public function limit($limit = null)
{
if (!is_null($limit))
{
$this->limit = $limit;
}
return $this;
}
/**
* Set order by field and direction.
*
* This function can be used more than once to chain order by.
*
* @param string $by
* @param int $direction
* @param string $alias
*
* @return $this
*/
public function order($by, $direction = 1, $alias = 'a')
{
$direction = $direction > 0 ? 'ASC' : 'DESC';
$by = $alias . '.' . $this->db->quoteName($by);
$this->query->order("{$by} {$direction}");
return $this;
}
/**
* Filter by field.
*
* @param string $field Field name.
* @param string $operation Operation (>|>=|<|<=|=|IN|NOT IN)
* @param string|array $value Value.
* @param bool $escape Only works for LIKE / NOT LIKE.
*
* @return $this
*/
public function where($field, $operation, $value, $escape = true)
{
$operation = strtoupper($operation);
switch ($operation)
{
case '>':
case '>=':
case '<':
case '<=':
case '=':
case '!=':
$this->query->where("{$this->db->quoteName($field)} {$operation} {$this->db->quote($value)}");
break;
case 'BETWEEN':
list($a, $b) = (array) $value;
$this->query->where("{$this->db->quoteName($field)} BETWEEN {$this->db->quote($a)} AND {$this->db->quote($b)}");
break;
case 'LIKE':
case 'NOT LIKE':
$value = $escape ? $this->db->quote($value) : $value;
$this->query->where("{$this->db->quoteName($field)} {$operation} {$value}");
break;
case 'IN':
case 'NOT IN':
$value = (array) $value;
if (empty($value))
{
// WHERE field IN (nothing).
$this->query->where('0');
}
else
{
$db = $this->db;
array_walk(
$value, function (&$item) use ($db) {
$item = $db->quote($item);
});
$list = implode(',', $value);
$this->query->where("{$this->db->quoteName($field)} {$operation} ({$list})");
}
break;
}
return $this;
}
/**
* Get items.
*
* Derived classes should generally override this function to return correct objects.
*
* @return array
*/
public function find()
{
if ($this->skip)
{
return array();
}
$query = clone $this->query;
$this->build($query);
$query->select('a.' . $this->primaryKey);
$this->db->setQuery($query, $this->start, $this->limit);
try
{
$results = (array) $this->db->loadColumn();
}
catch (JDatabaseExceptionExecuting $e)
{
KunenaError::displayDatabaseError($e);
}
return $results;
}
/**
* Count items.
*
* @return integer
*/
public function count()
{
$query = clone $this->query;
$this->build($query);
if ($query->group)
{
$countQuery = $this->db->getQuery(true);
$countQuery->select('COUNT(*)')->from("({$query}) AS c");
$this->db->setQuery($countQuery);
}
else
{
$query->clear('select')->select('COUNT(*)');
$this->db->setQuery($query);
}
try
{
$count = (int) $this->db->loadResult();
}
catch (JDatabaseExceptionExecuting $e)
{
KunenaError::displayDatabaseError($e);
}
return $count;
}
/**
* Override to include your own static filters.
*
* @param JDatabaseQuery $query
*
* @return void
*/
protected function build(JDatabaseQuery $query)
{
}
}