www.gusucode.com > Magic CMS PHP网站管理系统-政府企业版 v2.2.1源码程序 > magiccms_zq_v2.2.1/src/Include/Driver/Model/ViewModel.class.php

    <?php
/**
 * 视图模型处理类
  * ============================================================================
 * Copyright 2014 大秦科技,并保留所有权利。
 * 网站地址: http://www.qintech.net;
 * ----------------------------------------------------------------------------
 * 未获商业授权之前,不得将Magic CMS用于商业用途(包括但不限于企业网站、经营性网站
 * 以营利为目的或实现盈利的网站)未经官方许可,禁止在Magic CMS的整体或任何部分基础
 * 上以发展任何派生版本、修改版本或第三方版本用于重新分发。如果您未能遵守本协议的
 * 条款,您的授权将被终止,所被许可的权利将被收回,并承担相应法律责任。
 * ============================================================================
 */
class ViewModel extends Model
{
    /**
     * 视图关联表关系
     * @var array
     */
    public $view = array();
    /**
     * 这些方法需要改变驱动Db的相应opt['table']与opt['field']等属性值
     * @var array
     */
    private $queryMethod = array(
        'select', 'find', 'count', 'max', 'min', 'avg', 'sum'
    );

    /**
     * 魔术方法用于动态执行Db类中的方法
     * @param $method
     * @param $param
     * @return mixed
     */
    public function __call($method, $param)
    {
        if (in_array($method, $this->queryMethod)) {
            $this->setDriverOption();
        }
        /**
         * 调用父类方法完成查询操作
         */
        return parent::__call($method, $param);
    }

    /**
     * 设置查询表名与字段
     * 就是设置驱动Db的opt属性
     */
    private function setDriverOption()
    {
        if (empty($this->view)) {
            /**
             * 没有定义view属性时不进行处理
             */
            return;
        } else {
            /**
             * 获得本次查询的table与field值
             */
            $this->setTable();
            $this->setField();
        }
    }

    /**
     * 查找满足条件的一条记录
     * @param string $where 条件,如果为数字查询主键值
     * @return mixed
     */
    public function find($where = '')
    {
        $result = $this->select($where);
        return is_array($result) ? current($result) : $result;
    }

    /**
     * 查询结果
     * @param string $where 条件
     * @return mixed
     */
    public function select($where = '')
    {
        /**
         * 设置查询表与字段
         */
        $this->setDriverOption();
        $this->trigger && method_exists($this, '__before_select') && $this->__before_select();
        $return = $this->db->select($where);
        $this->trigger && method_exists($this, '__after_select') && $this->__after_select($return);
        /**
         * 重置模型
         */
        $this->__reset();
        return $return;
    }

    /**
     * 获得驱动表
     * 获得用于更改DbModel::$table值
     * 实例化时更改Db::$table值
     * 调用relation方法时更改Db::opt['table']值,用于本次查询临时改表
     * @return mixed
     */
    private function setTable()
    {
        $from = '';
        foreach ($this->view as $table => $set) {
            /**
             * 表别名设置
             */
            $as = isset($set['_as']) ? $set['_as'] : $table;
            $from .= C('DB_PREFIX') . $table . ' ' . $as;
            /**
             * 关联条件
             */
            if (isset($set['_on'])) {
                $from .= " ON  " . $set['_on'];
            }
            /**
             * _TYPE关联方式
             */
            if (isset($set['_type'])) {
                $from .= ' ' . strtoupper($set['_type']) . ' JOIN ';
            }
        }
        /**
         * 去除表后面关联操作符如INNER JOIN,并更改驱动表
         */
        $this->db->opt['table'] = preg_replace('@(INNER|RIGHT|LEFT)\s*JOIN\s*$@', '', $from);

    }

    /**
     * 设置查询字段
     */
    private function setField()
    {
        /**
         * 字段设置
         * 如果链式操作中调用了field()方法,则不执行以下操作
         */
        if ($this->db->opt['field'] != '*') {
            return $this->db->opt['field'];
        } else {
            $field = '';
            foreach ($this->view as $table => $set) {
                if (!isset($set['_field'])) {
                    /**
                     * 没有定义_field属性时不处理
                     */
                    continue;
                } else {
                    $field .= $set['_field'] . ',';
                }
            }
            if (!empty($field)) {
                $this->db->opt['field'] = substr($field, 0, -1);
            }
        }
    }

}