View file PF.Base/include/library/phpfox/pages/browse.class.php

File size: 3.84Kb
<?php
/**
 * [PHPFOX_HEADER]
 */

defined('PHPFOX') or exit('NO DICE!');

/**
 *
 *
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond_Benc
 * @package 		Phpfox_Service
 * @version 		$Id: service.class.php 67 2009-01-20 11:32:45Z Raymond_Benc $
 */
abstract class Phpfox_Pages_Browse extends Phpfox_Service
{
	/**
	 * Class constructor
	 */
	public function __construct()
	{
		$this->_sTable = Phpfox::getT('pages');
	}

	/**
	 * @return Phpfox_Pages_Facade
	 */
	abstract public function getFacade();

	public function processRows(&$aRows)
	{
		foreach ($aRows as $iKey => $aRow)
		{
			$category = $this->getFacade()->getCategory()->getById($aRow['category_id']);

			if($category){
				$aRows[$iKey]['category_name'] = $category['name'];
			}
			elseif ($type = $this->getFacade()->getType()->getById($aRow['type_id'])) {
				$aRows[$iKey]['category_name'] = $type['name'];
			}
			$aRows[$iKey]['link'] = $this->getFacade()->getItems()->getUrl($aRow['page_id'], $aRow['title'], $aRow['vanity_url']);
			$aRows[$iKey]['aFeed'] = array(
				'feed_display' => 'mini',
				'comment_type_id' => $this->getFacade()->getItemType(),
				'privacy' => 0,
				'comment_privacy' => 0,
				'like_type_id' => $this->getFacade()->getItemType(),
				'feed_is_liked' => (isset($aRow['is_liked']) ? $aRow['is_liked'] : false),
				'feed_is_friend' => (isset($aRow['is_friend']) ? $aRow['is_friend'] : false),
				'item_id' => $aRow['page_id'],
				'user_id' => $aRow['user_id'],
				'total_comment' => $aRow['total_comment'],
				'feed_total_like' => $aRow['total_like'],
				'total_like' => $aRow['total_like'],
				'feed_link' => $this->getFacade()->getItems()->getUrl($aRow['page_id'], $aRow['title'], $aRow['vanity_url']),
				'feed_title' => $aRow['title'],
				'type_id' => $this->getFacade()->getItemType()
			);

			$aSubCategory = $this->getFacade()->getCategory()->getById($aRow['category_id']);
			if ($aSubCategory) {
				$aRows[$iKey]['category_name'] = $aSubCategory['name'];
			} else {
				$aRows[$iKey]['category_name'] = '';
			}
		}
	}

	public function query()
	{
		$this->database()->select('pu.vanity_url, ')->leftJoin(Phpfox::getT('pages_url'), 'pu', 'pu.page_id = pages.page_id');
		$this->database()->select('pc.page_type, pc.name AS category_name, ')->leftJoin(Phpfox::getT('pages_category'), 'pc', 'pc.category_id = pages.category_id');
		$this->database()->select('u2.server_id AS profile_server_id, u2.user_image AS profile_user_image, ')->leftJoin(Phpfox::getT('user'), 'u2', 'u2.profile_page_id = pages.page_id');

		if (Phpfox::isUser() && Phpfox::isModule('like'))
		{
			$this->database()->select('lik.like_id AS is_liked, ')
					->leftJoin(Phpfox::getT('like'), 'lik', 'lik.type_id = \''. $this->getFacade()->getItemType() .'\' AND lik.item_id = pages.page_id AND lik.user_id = ' . Phpfox::getUserId());
		}
	}

	public function getQueryJoins($bIsCount = false, $bNoQueryFriend = false)
	{
		if (Phpfox::isModule('friend') && Friend_Service_Friend::instance()->queryJoin($bNoQueryFriend))
		{
			$this->database()->join(Phpfox::getT('friend'), 'friends', 'friends.user_id = pages.user_id AND friends.friend_user_id = ' . Phpfox::getUserId());
		}
	}

	/**
	 * If a call is made to an unknown method attempt to connect
	 * it to a specific plug-in with the same name thus allowing
	 * plug-in developers the ability to extend classes.
	 *
	 * @param string $sMethod is the name of the method
	 * @param array $aArguments is the array of arguments of being passed
	 */
	public function __call($sMethod, $aArguments)
	{
		/**
		 * Check if such a plug-in exists and if it does call it.
		 */
		if ($sPlugin = Phpfox_Plugin::get($this->getFacade()->getItemType() . '.service_browse__call'))
		{
			eval($sPlugin);
			return;
		}

		/**
		 * No method or plug-in found we must throw a error.
		 */
		Phpfox_Error::trigger('Call to undefined method ' . __CLASS__ . '::' . $sMethod . '()', E_USER_ERROR);
	}
}