103 lines
3.2 KiB
PHP
103 lines
3.2 KiB
PHP
<?php
|
|
|
|
/* --------------------------------------------------------------------
|
|
|
|
Chevereto
|
|
http://chevereto.com/
|
|
|
|
@author Rodolfo Berrios A. <http://rodolfoberrios.com/>
|
|
<inbox@rodolfoberrios.com>
|
|
|
|
Copyright (C) Rodolfo Berrios A. All rights reserved.
|
|
|
|
BY USING THIS SOFTWARE YOU DECLARE TO ACCEPT THE CHEVERETO EULA
|
|
http://chevereto.com/license
|
|
|
|
--------------------------------------------------------------------- */
|
|
|
|
$route = function($handler) {
|
|
try {
|
|
|
|
$logged_user = CHV\Login::getUser();
|
|
|
|
if(!CHV\getSetting('website_explore_page') && !$logged_user['is_admin']) {
|
|
return $handler->issue404();
|
|
}
|
|
|
|
$doing = $handler->request[0];
|
|
|
|
if(!$doing && CHV\getSetting('homepage_style') == 'route_explore' && strpos(G\get_current_url(), G\get_base_url(G\get_route_name())) !== FALSE) {
|
|
$redir = G\str_replace_first(G\get_base_url(G\get_route_name()), G\get_base_url(), G\get_current_url());
|
|
G\redirect($redir);
|
|
}
|
|
|
|
$explore_semantics = $handler::getVar('explore_semantics');
|
|
|
|
if(isset($doing) && !array_key_exists($doing, $explore_semantics)) {
|
|
return $handler->issue404();
|
|
}
|
|
|
|
if($handler->isRequestLevel(3)) return $handler->issue404(); // Allow only 3 levels
|
|
|
|
$basename = CHV\getSetting('homepage_style') == 'route_explore' && $handler->getCond('mapped_route') ? NULL : G\get_route_name();
|
|
if($doing) {
|
|
$basename .= ($basename ? '/' : NULL) . $doing;
|
|
}
|
|
|
|
$listing = isset($doing) ? $explore_semantics[$doing] : ['label' => _s('Explore'), 'icon' => 'icon-images2'];
|
|
$listing['list'] = is_null($doing) ? G\get_route_name() : $doing;
|
|
|
|
$listingParams = [
|
|
'listing' => $listing['list'],
|
|
'basename' => $basename,
|
|
'params_hidden' => ['hide_empty' => 1, 'hide_banned' => 1],
|
|
];
|
|
|
|
if($doing == 'animated') {
|
|
$listingParams['params_hidden']['is_animated'] = 1;
|
|
}
|
|
|
|
$tabs = CHV\Listing::getTabs($listingParams, TRUE);
|
|
$currentKey = $tabs['currentKey'];
|
|
$type = $tabs['tabs'][$currentKey]['type'];
|
|
$tabs = $tabs['tabs'];
|
|
|
|
parse_str($tabs[$currentKey]['params'], $tabs_params);
|
|
|
|
$list_params = CHV\Listing::getParams(); // Use CHV magic params
|
|
$list_params['sort'] = explode('_', $tabs_params['sort']); // Hack this stuff
|
|
|
|
// List
|
|
$list = new CHV\Listing;
|
|
$list->setType($type);
|
|
$list->setOffset($list_params['offset']);
|
|
$list->setLimit($list_params['limit']); // how many results?
|
|
$list->setItemsPerPage($list_params['items_per_page']); // must
|
|
$list->setSortType($list_params['sort'][0]); // date | size | views | likes
|
|
$list->setSortOrder($list_params['sort'][1]); // asc | desc
|
|
$list->setRequester(CHV\Login::getUser());
|
|
$list->setParamsHidden($listingParams['params_hidden']);
|
|
$list->exec();
|
|
|
|
$handler::setVar('listing', $listing);
|
|
|
|
if(CHV\getSetting('homepage_style') == 'route_explore') {
|
|
$handler::setVar('doctitle', CHV\Settings::get('website_doctitle'));
|
|
$handler::setVar('pre_doctitle', CHV\Settings::get('website_name'));
|
|
} else {
|
|
$handler::setVar('pre_doctitle', _s('Explore'));
|
|
}
|
|
|
|
$handler::setVar('category', NULL);
|
|
$handler::setVar('tabs', $tabs);
|
|
$handler::setVar('list', $list);
|
|
|
|
if($logged_user['is_admin']) {
|
|
$handler::setVar('user_items_editor', FALSE);
|
|
}
|
|
|
|
} catch(Exception $e) {
|
|
G\exception_to_error($e);
|
|
}
|
|
};
|