293 lines
8.7 KiB
PHP
293 lines
8.7 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.Site
|
|
* @subpackage com_phocagallery
|
|
*
|
|
* @copyright Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
use Joomla\CMS\Component\Router\RouterView;
|
|
use Joomla\CMS\Component\ComponentHelper;
|
|
use Joomla\CMS\Component\Router\RouterViewConfiguration;
|
|
use Joomla\CMS\Component\Router\Rules\MenuRules;
|
|
use Joomla\CMS\Component\Router\Rules\StandardRules;
|
|
use Joomla\CMS\Component\Router\Rules\NomenuRules;
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\Database\ParameterType;
|
|
|
|
|
|
if (! class_exists('PhocaGalleryLoader')) {
|
|
require_once( JPATH_ADMINISTRATOR.'/components/com_phocagallery/libraries/loader.php');
|
|
}
|
|
|
|
class PhocagalleryRouter extends RouterView
|
|
{
|
|
protected $noIDs = false;
|
|
|
|
|
|
public function __construct($app = null, $menu = null) {
|
|
|
|
$params = ComponentHelper::getParams('com_phocagallery');;
|
|
$this->noIDs = (bool)$params->get('remove_sef_ids');
|
|
|
|
$categories = new RouterViewConfiguration('categories');
|
|
$categories->setKey('id');
|
|
$this->registerView($categories);
|
|
|
|
$category = new RouterViewConfiguration('category');
|
|
$category->setKey('id')->setParent($categories, 'parent_id')->setNestable();
|
|
$this->registerView($category);
|
|
|
|
|
|
|
|
$detail = new RouterViewConfiguration('detail');
|
|
$detail->setKey('id')->setParent($category, 'catid');//->setNestable();
|
|
$this->registerView($detail);
|
|
|
|
$views = array('info', 'comment', 'user');
|
|
foreach ($views as $k => $v) {
|
|
$item = new RouterViewConfiguration($v);
|
|
$item->setName($v)->setParent($detail, 'id')->setParent($category, 'catid');
|
|
$this->registerView($item);
|
|
}
|
|
|
|
parent::__construct($app, $menu);
|
|
|
|
phocagalleryimport('phocagallery.path.routerrules');
|
|
phocagalleryimport('phocagallery.category.category');
|
|
$this->attachRule(new MenuRules($this));
|
|
$this->attachRule(new PhocaGalleryRouterrules($this));
|
|
$this->attachRule(new StandardRules($this));
|
|
$this->attachRule(new NomenuRules($this));
|
|
}
|
|
|
|
public function getCategorySegment($id, $query) {
|
|
|
|
// SPECIFIC CASE TAG - tag search output in category view
|
|
// 1. components/com_phocagallery/router.php getCategorySegment() - BUILD
|
|
// 2. administrator/components/com_phocagallery/libraries/phocadownload/path/routerrules.php build() - BUILD
|
|
// 3. administrator/components/com_phocagallery/libraries/phocadownload/path/routerrules.php parse() - PARSE
|
|
if ((int)$id == 0 && isset($query['tagid']) && (int)$query['tagid'] > 0) {
|
|
//$path[0] = '1:root';
|
|
$path[0] = '0:category';
|
|
if ($this->noIDs) {
|
|
foreach ($path as &$segment) {
|
|
list($id, $segment) = explode(':', $segment, 2);
|
|
}
|
|
}
|
|
return $path;
|
|
}
|
|
|
|
$category = PhocaGalleryCategory::getCategoryById($id);
|
|
|
|
if (isset($category->id)) {
|
|
|
|
$path = PhocaGalleryCategory::getPath(array(), (int)$category->id, $category->parent_id, $category->title, $category->alias);
|
|
|
|
//$path = array_reverse($path, true);
|
|
//$path = array_reverse($category->getPath(), true);
|
|
$path[0] = '1:root';// we don't use root but it is needed when building urls with joomla methods
|
|
if ($this->noIDs) {
|
|
foreach ($path as &$segment) {
|
|
list($id, $segment) = explode(':', $segment, 2);
|
|
}
|
|
}
|
|
|
|
return $path;
|
|
}
|
|
|
|
return array();
|
|
}
|
|
|
|
public function getCategoriesSegment($id, $query) {
|
|
return $this->getCategorySegment($id, $query);
|
|
}
|
|
|
|
|
|
public function getDetailSegment($id, $query) {
|
|
|
|
if (!strpos($id, ':')) {
|
|
$db = Factory::getDbo();
|
|
$dbquery = $db->getQuery(true);
|
|
$dbquery->select($dbquery->qn('alias'))
|
|
->from($dbquery->qn('#__phocagallery'))
|
|
->where('id = ' . $dbquery->q($id));
|
|
$db->setQuery($dbquery);
|
|
|
|
$id .= ':' . $db->loadResult();
|
|
}
|
|
|
|
if ($this->noIDs) {
|
|
list($void, $segment) = explode(':', $id, 2);
|
|
return array($void => $segment);
|
|
}
|
|
|
|
return array((int) $id => $id);
|
|
}
|
|
|
|
public function getInfoSegment($id, $query) {
|
|
|
|
if (!strpos($id, ':')) {
|
|
$db = Factory::getDbo();
|
|
$dbquery = $db->getQuery(true);
|
|
$dbquery->select($dbquery->qn('alias'))
|
|
->from($dbquery->qn('#__phocagallery'))
|
|
->where('id = ' . $dbquery->q($id));
|
|
$db->setQuery($dbquery);
|
|
|
|
$id .= ':' . $db->loadResult();
|
|
}
|
|
|
|
if ($this->noIDs) {
|
|
list($void, $segment) = explode(':', $id, 2);
|
|
return array($void => $segment);
|
|
}
|
|
|
|
return array((int) $id => $id);
|
|
}
|
|
|
|
/**
|
|
* Method to get the segment(s) for a form
|
|
*
|
|
* @param string $id ID of the article form to retrieve the segments for
|
|
* @param array $query The request that is built right now
|
|
*
|
|
* @return array|string The segments of this item
|
|
*
|
|
* @since 3.7.3
|
|
*/
|
|
public function getFormSegment($id, $query) {
|
|
|
|
return $this->getArticleSegment($id, $query);
|
|
}
|
|
|
|
/**
|
|
* Method to get the id for a category
|
|
*
|
|
* @param string $segment Segment to retrieve the ID for
|
|
* @param array $query The request that is parsed right now
|
|
*
|
|
* @return mixed The id of this item or false
|
|
*/
|
|
public function getCategoryId($segment, $query) {
|
|
|
|
if (!isset($query['id']) && isset($query['view']) && $query['view'] == 'categories') {
|
|
$query['id'] = 0;
|
|
}
|
|
|
|
if ($this->noIDs) {
|
|
$db = Factory::getDbo();
|
|
$dbquery = $db->getQuery(true);
|
|
$dbquery->select($db->quoteName('id'))
|
|
->from($db->quoteName('#__phocagallery_categories'))
|
|
->where(
|
|
[
|
|
$db->quoteName('alias') . ' = :alias',
|
|
$db->quoteName('parent_id') . ' = :parent_id',
|
|
]
|
|
)
|
|
->bind(':alias', $segment)
|
|
->bind(':parent_id', $query['id'], ParameterType::INTEGER);
|
|
$db->setQuery($dbquery);
|
|
|
|
return (int) $db->loadResult();
|
|
}
|
|
|
|
$category = false;
|
|
if (isset($query['id'])) {
|
|
if ((int)$query['id'] > 0) {
|
|
$category = PhocaGalleryCategory::getCategoryById($query['id']);
|
|
} else if ((int)$segment > 0) {
|
|
|
|
$category = PhocaGalleryCategory::getCategoryById((int)$segment);
|
|
if (isset($category->id) && (int)$category->id > 0 && $category->parent_id == 0) {
|
|
// We don't have root category with 0 so we need to start with segment one
|
|
return (int)$category->id;
|
|
}
|
|
}
|
|
|
|
if ($category) {
|
|
if (!empty($category->subcategories)){
|
|
foreach ($category->subcategories as $child) {
|
|
if ($this->noIDs) {
|
|
if ($child->alias == $segment) {
|
|
return $child->id;
|
|
}
|
|
} else {
|
|
// We need to check full alias because ID can be same for Category and Item
|
|
$fullAlias = (int)$child->id . '-'.$child->alias;
|
|
if ($fullAlias == $segment) {
|
|
return $child->id;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
// --- under test
|
|
// We don't have query ID because of e.g. language
|
|
// Should not happen because of modifications in build function here: administrator/components/com_phocacart/libraries/phocacart/path/routerrules.php
|
|
/*if ((int)$segment > 0) {
|
|
$category = PhocaCartCategory::getCategoryById((int)$segment);
|
|
if (isset($category->id) && (int)$category->id > 0 && $category->parent_id == 0) {
|
|
// We don't have root category with 0 so we need to start with segment one
|
|
return (int)$category->id;
|
|
}
|
|
}*/
|
|
// under test
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public function getCategoriesId($segment, $query) {
|
|
|
|
return $this->getCategoryId($segment, $query);
|
|
}
|
|
|
|
public function getDetailId($segment, $query) {
|
|
|
|
if ($this->noIDs)
|
|
{
|
|
$db = Factory::getDbo();
|
|
$dbquery = $db->getQuery(true);
|
|
$dbquery->select($dbquery->qn('id'))
|
|
->from($dbquery->qn('#__phocagallery'))
|
|
->where('alias = ' . $dbquery->q($segment))
|
|
->where('catid = ' . $dbquery->q($query['id']));
|
|
$db->setQuery($dbquery);
|
|
|
|
return (int) $db->loadResult();
|
|
}
|
|
|
|
return (int) $segment;
|
|
}
|
|
|
|
public function parse(&$segments){
|
|
return parent::parse($segments);
|
|
}
|
|
|
|
public function build(&$query) {
|
|
return parent::build($query);
|
|
}
|
|
}
|
|
|
|
|
|
function PhocaGalleryBuildRoute(&$query) {
|
|
|
|
$app = Factory::getApplication();
|
|
$router = new PhocagalleryRouter($app, $app->getMenu());
|
|
return $router->build($query);
|
|
}
|
|
|
|
function PhocaGalleryParseRoute($segments) {
|
|
|
|
$app = Factory::getApplication();
|
|
$router = new PhocagalleryRouter($app, $app->getMenu());
|
|
|
|
return $router->parse($segments);
|
|
}
|
|
|