0byt3m1n1
Path:
/
data
/
applications
/
aps
/
xoops
/
2.5.1a-0
/
standard
/
htdocs
/
class
/
model
/
[
Home
]
File: joint.php
<?php /** * Object joint handler class. * * You may not change or alter any portion of this comment or credits * of supporting developers from this source code or any supporting source code * which is considered copyrighted (c) material of the original comment or credit authors. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) * @package kernel * @subpackage model * @since 2.3.0 * @author Taiwen Jiang <phppp@users.sourceforge.net> * @version $Id: joint.php 4941 2010-07-22 17:13:36Z beckmi $ */ defined('XOOPS_ROOT_PATH') or die('Restricted access'); /** * Object joint handler class. * * @author Taiwen Jiang <phppp@users.sourceforge.net> * * {@link XoopsObjectAbstract} */ /** * Usage of methods provided by XoopsModelJoint: * * Step #1: set linked table and adjoint fields through XoopsPersistableObjectHandler: * $handler->table_link = $handler->db->prefix("the_linked_table"); // full name of the linked table that is used for the query * $handler->field_link = "the_linked_field"; // name of field in linked table that will be used to link the linked table with current table * $handler->field_object = "the_object_field"; // name of field in current table that will be used to link the linked table with current table; linked field name will be used if the field name is not set * Step #2: fetch data */ class XoopsModelJoint extends XoopsModelAbstract { /** * Validate information for the linkship * * @access private */ function validateLinks() { if (empty($this->handler->table_link) || empty($this->handler->field_link)) { trigger_error("The linked table is not set yet.", E_USER_WARNING); return null; } if (empty($this->handler->field_object)) { $this->handler->field_object = $this->handler->field_link; } return true; } /** * get a list of objects matching a condition joint with another related object * * @param object $criteria {@link CriteriaElement} to match * @param array $fields variables to fetch * @param bool $asObject flag indicating as object, otherwise as array * @param string $field_link field of linked object for JOIN; deprecated, for backward compat * @param string $field_object field of current object for JOIN; deprecated, for backward compat * @return array of objects {@link XoopsObject} */ function &getByLink($criteria = null, $fields = null, $asObject = true, $field_link = null, $field_object = null) { if (!empty($field_link)) { $this->handler->field_link = $field_link; } if (!empty($field_object)) { $this->handler->field_object = $field_object; } if (!$this->validateLinks()) { return null; } if (is_array($fields) && count($fields)) { if (!in_array("o." . $this->handler->keyName, $fields)) { $fields[] = "o." . $this->handler->keyName; } $select = implode(",", $fields); } else { $select = "o.*, l.*"; } $limit = null; $start = null; // $field_object = empty($field_object) ? $field_link : $field_object; $sql = " SELECT {$select}" . " FROM {$this->handler->table} AS o" . " LEFT JOIN {$this->handler->table_link} AS l ON o.{$this->handler->field_object} = l.{$this->handler->field_link}"; if (isset($criteria) && is_subclass_of($criteria, "criteriaelement")) { $sql .= " " . $criteria->renderWhere(); if ($sort = $criteria->getSort()) { $sql .= " ORDER BY {$sort} " . $criteria->getOrder(); $orderSet = true; } $limit = $criteria->getLimit(); $start = $criteria->getStart(); } if (empty($orderSet)) { $sql .= " ORDER BY o.{$this->handler->keyName} DESC"; } $result = $this->handler->db->query($sql, $limit, $start); $ret = array(); if ($asObject) { while ($myrow = $this->handler->db->fetchArray($result)) { $object =& $this->handler->create(false); $object->assignVars($myrow); $ret[$myrow[$this->handler->keyName]] = $object; unset($object); } } else { $object =& $this->handler->create(false); while ($myrow = $this->handler->db->fetchArray($result)) { $object->assignVars($myrow); $ret[$myrow[$this->handler->keyName]] = $object->getValues(array_keys($myrow)); } unset($object); } return $ret; } /** * Count of objects matching a condition * * @param object $criteria {@link CriteriaElement} to match * @return int count of objects */ function getCountByLink($criteria = null) { if (!$this->validateLinks()) { return null; } $sql = " SELECT COUNT(DISTINCT {$this->handler->keyName}) AS count" . " FROM {$this->handler->table} AS o" . " LEFT JOIN {$this->handler->table_link} AS l ON o.{$this->handler->field_object} = l.{$this->handler->field_link}"; if (isset($criteria) && is_subclass_of($criteria, "criteriaelement")) { $sql .= " " . $criteria->renderWhere(); } if (!$result = $this->handler->db->query($sql)) { return false; } $myrow = $this->handler->db->fetchArray($result); return intval($myrow["count"]); } /** * array of count of objects matching a condition of, groupby linked object keyname * * @param object $criteria {@link CriteriaElement} to match * @return int count of objects */ function getCountsByLink($criteria = null) { if (!$this->validateLinks()) { return null; } $sql = " SELECT l.{$this->handler->keyName_link}, COUNT(*)" . " FROM {$this->handler->table} AS o" . " LEFT JOIN {$this->handler->table_link} AS l ON o.{$this->handler->field_object} = l.{$this->handler->field_link}"; if (isset($criteria) && is_subclass_of($criteria, "criteriaelement")) { $sql .= " " . $criteria->renderWhere(); } $sql .= " GROUP BY l.{$this->handler->keyName_link}"; if (!$result = $this->handler->db->query($sql)) { return false; } $ret = array(); while (list ($id, $count) = $this->handler->db->fetchRow($result)) { $ret[$id] = $count; } return $ret; } /** * upate objects matching a condition against linked objects * * @param array $data array of key => value * @param object $criteria {@link CriteriaElement} to match * @return int count of objects */ function updateByLink($data, $criteria = null) { if (!$this->validateLinks()) { return null; } $set = array(); foreach ($data as $key => $val) { $set[] = "o.{$key}=" . $this->handler->db->quoteString($val); } $sql = " UPDATE {$this->handler->table} AS o" . " SET " . implode(", ", $set) . " LEFT JOIN {$this->handler->table_link} AS l ON o.{$this->handler->field_object} = l.{$this->handler->field_link}"; if (isset($criteria) && is_subclass_of($criteria, "criteriaelement")) { $sql .= " " . $criteria->renderWhere(); } return $this->handler->db->query($sql); } /** * Delete objects matching a condition against linked objects * * @param object $criteria {@link CriteriaElement} to match * @return int count of objects */ function deleteByLink($criteria = null) { if (!$this->validateLinks()) { return null; } $sql = "DELETE FROM {$this->handler->table} AS o " . " LEFT JOIN {$this->handler->table_link} AS l ON o.{$this->handler->field_object} = l.{$this->handler->field_link}"; if (isset($criteria) && is_subclass_of($criteria, "criteriaelement")) { $sql .= " " . $criteria->renderWhere(); } return $this->handler->db->query($sql); } } ?>