1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-28 20:45:00 +03:00
ifhub.club/classes/actions/ActionPersonalBlog.class.php

156 lines
5.2 KiB
PHP
Raw Normal View History

<?php
2008-09-21 09:36:57 +03:00
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
/**
* Экшен обработки персональных блогов, т.е. УРла вида /personal_blog/
2008-09-21 09:36:57 +03:00
*
* @package actions
* @since 1.0
2008-09-21 09:36:57 +03:00
*/
class ActionPersonalBlog extends Action {
/**
* Главное меню
*
* @var string
*/
protected $sMenuHeadItemSelect='blog';
2008-09-21 09:36:57 +03:00
/**
* Меню
*
* @var string
2008-09-21 09:36:57 +03:00
*/
protected $sMenuItemSelect='log';
/**
* Субменю
*
* @var string
2008-09-21 09:36:57 +03:00
*/
protected $sMenuSubItemSelect='good';
2008-09-21 09:36:57 +03:00
/**
* Инициализация
*
*/
public function Init() {
2008-09-21 09:36:57 +03:00
$this->SetDefaultEvent('good');
}
/**
* Регистрируем необходимые евенты
*
*/
2009-06-13 12:24:09 +03:00
protected function RegisterEvent() {
2012-07-09 08:47:42 +03:00
$this->AddEventPreg('/^good$/i','/^(page([1-9]\d{0,5}))?$/i','EventTopics');
2009-06-13 12:24:09 +03:00
$this->AddEvent('good','EventTopics');
2012-07-09 08:47:42 +03:00
$this->AddEventPreg('/^bad$/i','/^(page([1-9]\d{0,5}))?$/i','EventTopics');
$this->AddEventPreg('/^new$/i','/^(page([1-9]\d{0,5}))?$/i','EventTopics');
$this->AddEventPreg('/^newall$/i','/^(page([1-9]\d{0,5}))?$/i','EventTopics');
$this->AddEventPreg('/^discussed$/i','/^(page([1-9]\d{0,5}))?$/i','EventTopics');
$this->AddEventPreg('/^top$/i','/^(page([1-9]\d{0,5}))?$/i','EventTopics');
2008-09-21 09:36:57 +03:00
}
2008-09-21 09:36:57 +03:00
/**********************************************************************************
************************ РЕАЛИЗАЦИЯ ЭКШЕНА ***************************************
**********************************************************************************
*/
2008-09-21 09:36:57 +03:00
/**
2009-06-13 12:24:09 +03:00
* Показ топиков
2008-09-21 09:36:57 +03:00
*
*/
2009-06-13 12:24:09 +03:00
protected function EventTopics() {
$sPeriod=1; // по дефолту 1 день
if (in_array(getRequestStr('period'),array(1,7,30,'all'))) {
$sPeriod=getRequestStr('period');
}
2009-06-13 12:24:09 +03:00
$sShowType=$this->sCurrentEvent;
if (!in_array($sShowType,array('discussed','top'))) {
$sPeriod='all';
}
2008-09-21 09:36:57 +03:00
/**
* Меню
*/
$this->sMenuSubItemSelect=$sShowType=='newall' ? 'new' : $sShowType;
2008-09-21 09:36:57 +03:00
/**
* Передан ли номер страницы
*/
$iPage=$this->GetParamEventMatch(0,2) ? $this->GetParamEventMatch(0,2) : 1;
if ($iPage==1 and !getRequest('period')) {
$this->Viewer_SetHtmlCanonical(Router::GetPath('personal_blog').$sShowType.'/');
}
2008-09-21 09:36:57 +03:00
/**
* Получаем список топиков
*/
$aResult=$this->Topic_GetTopicsPersonal($iPage,Config::Get('module.topic.per_page'),$sShowType,$sPeriod=='all' ? null : $sPeriod*60*60*24);
/**
* Если нет топиков за 1 день, то показываем за неделю (7)
*/
2012-04-12 18:09:39 +03:00
if (in_array($sShowType,array('discussed','top')) and !$aResult['count'] and $iPage==1 and !getRequest('period')) {
$sPeriod=7;
$aResult=$this->Topic_GetTopicsPersonal($iPage,Config::Get('module.topic.per_page'),$sShowType,$sPeriod=='all' ? null : $sPeriod*60*60*24);
}
$aTopics=$aResult['collection'];
2012-06-10 11:33:03 +03:00
/**
* Вызов хуков
*/
$this->Hook_Run('topics_list_show',array('aTopics'=>$aTopics));
2008-09-21 09:36:57 +03:00
/**
* Формируем постраничность
*/
$aPaging=$this->Viewer_MakePaging($aResult['count'],$iPage,Config::Get('module.topic.per_page'),Config::Get('pagination.pages.count'),Router::GetPath('personal_blog').$sShowType,in_array($sShowType,array('discussed','top')) ? array('period'=>$sPeriod) : array());
2008-09-21 09:36:57 +03:00
/**
2009-06-13 12:24:09 +03:00
* Вызов хуков
2008-09-21 09:36:57 +03:00
*/
2009-06-13 12:24:09 +03:00
$this->Hook_Run('personal_show',array('sShowType'=>$sShowType));
2008-09-21 09:36:57 +03:00
/**
* Загружаем переменные в шаблон
*/
2009-06-13 12:24:09 +03:00
$this->Viewer_Assign('aTopics',$aTopics);
$this->Viewer_Assign('aPaging',$aPaging);
if (in_array($sShowType,array('discussed','top'))) {
$this->Viewer_Assign('sPeriodSelectCurrent',$sPeriod);
$this->Viewer_Assign('sPeriodSelectRoot',Router::GetPath('personal_blog').$sShowType.'/');
}
2008-09-21 09:36:57 +03:00
/**
* Устанавливаем шаблон вывода
*/
$this->SetTemplateAction('index');
}
2008-09-21 09:36:57 +03:00
/**
* При завершении экшена загружаем в шаблон необходимые переменные
*
*/
public function EventShutdown() {
/**
* Подсчитываем новые топики
*/
$iCountTopicsCollectiveNew=$this->Topic_GetCountTopicsCollectiveNew();
$iCountTopicsPersonalNew=$this->Topic_GetCountTopicsPersonalNew();
$iCountTopicsNew=$iCountTopicsCollectiveNew+$iCountTopicsPersonalNew;
/**
* Загружаем переменные в шаблон
*/
$this->Viewer_Assign('sMenuHeadItemSelect',$this->sMenuHeadItemSelect);
2008-09-21 09:36:57 +03:00
$this->Viewer_Assign('sMenuItemSelect',$this->sMenuItemSelect);
$this->Viewer_Assign('sMenuSubItemSelect',$this->sMenuSubItemSelect);
$this->Viewer_Assign('iCountTopicsCollectiveNew',$iCountTopicsCollectiveNew);
$this->Viewer_Assign('iCountTopicsPersonalNew',$iCountTopicsPersonalNew);
$this->Viewer_Assign('iCountTopicsNew',$iCountTopicsNew);
}
}
?>