1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-02 22:45:02 +03:00
ifhub.club/application/classes/actions/ActionAdmin.class.php

481 lines
16 KiB
PHP
Raw Normal View History

<?php
/*-------------------------------------------------------
*
* 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
*
---------------------------------------------------------
*/
/**
* Экшен обработки УРЛа вида /admin/
*
* @package actions
* @since 1.0
*/
class ActionAdmin extends Action {
/**
* Текущий пользователь
*
* @var ModuleUser_EntityUser|null
*/
protected $oUserCurrent=null;
/**
* Главное меню
*
* @var string
*/
protected $sMenuHeadItemSelect='admin';
/**
* Инициализация
*
* @return string
*/
public function Init() {
/**
* Если нет прав доступа - перекидываем на 404 страницу
*/
if(!$this->User_IsAuthorization() or !$oUserCurrent=$this->User_GetUserCurrent() or !$oUserCurrent->isAdministrator()) {
return parent::EventNotFound();
}
2011-08-28 19:08:23 +03:00
$this->SetDefaultEvent('index');
$this->oUserCurrent=$oUserCurrent;
}
/**
* Регистрация евентов
*/
protected function RegisterEvent() {
$this->AddEvent('index','EventIndex');
$this->AddEvent('plugins','EventPlugins');
$this->AddEvent('restorecomment','EventRestoreComment');
$this->AddEvent('userfields','EventUserfields');
$this->AddEvent('recalcfavourite','EventRecalculateFavourite');
$this->AddEvent('recalcvote','EventRecalculateVote');
$this->AddEvent('recalctopic','EventRecalculateTopic');
$this->AddEventPreg('/^blogcategory$/i','/^modal-add$/i','EventBlogCategoryModalAdd');
$this->AddEventPreg('/^blogcategory$/i','/^modal-edit$/i','EventBlogCategoryModalEdit');
$this->AddEventPreg('/^blogcategory$/i','/^add$/i','EventBlogCategoryAdd');
$this->AddEventPreg('/^blogcategory$/i','/^edit$/i','EventBlogCategoryEdit');
$this->AddEvent('blogcategory','EventBlogCategory');
}
/**********************************************************************************
************************ РЕАЛИЗАЦИЯ ЭКШЕНА ***************************************
**********************************************************************************
*/
/**
* Отображение главной страницы админки
* Нет никакой логики, просто отображение дефолтного шаблона евента index.tpl
*/
2011-08-28 19:08:23 +03:00
protected function EventIndex() {
}
/**
* Список категорий блогов
*/
protected function EventBlogCategory() {
/**
* Обработка удаления
*/
if ($this->GetParam(0)=='delete' and $oCategory=$this->Blog_GetCategoryById($this->GetParam(1))) {
$this->Security_ValidateSendForm();
/**
* Получаем все дочернии категории
*/
$aCategoriesId=$this->Blog_GetChildrenCategoriesById($oCategory->getId(),true);
$aCategoriesId[]=$oCategory->getId();
/**
* У блогов проставляем category_id = null
*/
$this->Blog_ReplaceBlogsCategoryByCategoryId($aCategoriesId,null);
/**
* Удаляем категории
*/
$this->Blog_DeleteCategoryByArrayId($aCategoriesId);
}
/**
* Обработка изменения сортировки
*/
if ($this->GetParam(0)=='sort' and $oCategory=$this->Blog_GetCategoryById($this->GetParam(1))) {
$this->Security_ValidateSendForm();
$sWay=$this->GetParam(2)=='down' ? 'down' : 'up';
$iSortOld=$oCategory->getSort();
if ($oCategoryPrev=$this->Blog_GetNextCategoryBySort($iSortOld,$oCategory->getPid(),$sWay)) {
$iSortNew=$oCategoryPrev->getSort();
$oCategoryPrev->setSort($iSortOld);
$this->Blog_UpdateCategory($oCategoryPrev);
} else {
if ($sWay=='down') {
$iSortNew=$iSortOld-1;
} else {
$iSortNew=$iSortOld+1;
}
}
/**
* Меняем значения сортировки местами
*/
$oCategory->setSort($iSortNew);
$this->Blog_UpdateCategory($oCategory);
}
$aCategories=$this->Blog_GetCategoriesTree();
$this->Viewer_Assign("aCategories",$aCategories);
}
/**
2014-05-28 07:09:53 +03:00
* Загружает модальное окно создания категории блога
*/
protected function EventBlogCategoryModalAdd() {
$this->Viewer_SetResponseAjax('json');
$aCategories=$this->Blog_GetCategoriesTree();
$oViewer=$this->Viewer_GetLocalViewer();
$oViewer->Assign('aCategories',$aCategories);
/**
* Устанавливаем переменные для ajax ответа
*/
$this->Viewer_AssignAjax('sText',$oViewer->Fetch("actions/ActionAdmin/blogcategory_form_add.tpl"));
}
/**
* Загружает модальное окно редактирования категории бога
*/
protected function EventBlogCategoryModalEdit() {
$this->Viewer_SetResponseAjax('json');
if (!($oCategory=$this->Blog_GetCategoryById(getRequestStr('id')))) {
$this->Message_AddError($this->Lang_Get('system_error'),$this->Lang_Get('error'));
return;
}
$aCategories=$this->Blog_GetCategoriesTree();
$oViewer=$this->Viewer_GetLocalViewer();
$oViewer->Assign('oCategory',$oCategory);
$oViewer->Assign('aCategories',$aCategories);
/**
* Устанавливаем переменные для ajax ответа
*/
$this->Viewer_AssignAjax('sText',$oViewer->Fetch("actions/ActionAdmin/blogcategory_form_add.tpl"));
}
protected function EventBlogCategoryAdd() {
$this->Viewer_SetResponseAjax('json');
/**
* Создаем категорию
*/
$oCategory=Engine::GetEntity('ModuleBlog_EntityBlogCategory');
$oCategory->setTitle(getRequestStr('title'));
$oCategory->setUrl(getRequestStr('url'));
$oCategory->setSort(getRequestStr('sort'));
$oCategory->setPid(getRequestStr('pid'));
if ($oCategory->_Validate()) {
if ($this->Blog_AddCategory($oCategory)) {
return;
}
} else {
$this->Message_AddError($oCategory->_getValidateError(),$this->Lang_Get('error'));
}
$this->Message_AddError($this->Lang_Get('system_error'),$this->Lang_Get('error'));
}
protected function EventBlogCategoryEdit() {
$this->Viewer_SetResponseAjax('json');
if (!($oCategory=$this->Blog_GetCategoryById(getRequestStr('id')))) {
$this->Message_AddError($this->Lang_Get('system_error'),$this->Lang_Get('error'));
return;
}
/**
* Создаем категорию
*/
$oCategory->setTitle(getRequestStr('title'));
$oCategory->setUrl(getRequestStr('url'));
$oCategory->setSort(getRequestStr('sort'));
$oCategory->setPid(getRequestStr('pid'));
if ($oCategory->_Validate()) {
if ($this->Blog_UpdateCategory($oCategory)) {
/**
* Проверяем корректность вложений
*/
if (count($this->Blog_GetCategoriesTree())<$this->Blog_GetCountCategories()) {
$oCategory->setPid(null);
$oCategory->setUrlFull($oCategory->getUrl());
$this->Blog_UpdateCategory($oCategory);
}
$this->Blog_RebuildCategoryUrlFull($oCategory);
return;
}
} else {
$this->Message_AddError($oCategory->_getValidateError(),$this->Lang_Get('error'));
}
$this->Message_AddError($this->Lang_Get('system_error'),$this->Lang_Get('error'));
}
/**
* Перестроение дерева комментариев, актуально при $config['module']['comment']['use_nested'] = true;
*
*/
protected function EventRestoreComment() {
2012-06-10 10:37:22 +03:00
$this->Security_ValidateSendForm();
2010-09-19 13:36:17 +03:00
set_time_limit(0);
$this->Comment_RestoreTree();
2010-09-19 13:36:17 +03:00
$this->Cache_Clean();
2011-08-28 19:08:23 +03:00
$this->Message_AddNotice($this->Lang_Get('admin_comment_restore_tree'),$this->Lang_Get('attention'));
$this->SetTemplateAction('index');
}
/**
* Пересчет счетчика избранных
*
*/
protected function EventRecalculateFavourite() {
2012-06-10 10:37:22 +03:00
$this->Security_ValidateSendForm();
set_time_limit(0);
$this->Comment_RecalculateFavourite();
$this->Topic_RecalculateFavourite();
$this->Cache_Clean();
$this->Message_AddNotice($this->Lang_Get('admin_favourites_recalculated'),$this->Lang_Get('attention'));
$this->SetTemplateAction('index');
}
/**
* Пересчет счетчика голосований
*/
protected function EventRecalculateVote() {
2012-06-10 10:37:22 +03:00
$this->Security_ValidateSendForm();
set_time_limit(0);
$this->Topic_RecalculateVote();
$this->Cache_Clean();
$this->Message_AddNotice($this->Lang_Get('admin_votes_recalculated'),$this->Lang_Get('attention'));
$this->SetTemplateAction('index');
}
/**
* Пересчет количества топиков в блогах
*/
protected function EventRecalculateTopic() {
2012-06-10 10:37:22 +03:00
$this->Security_ValidateSendForm();
set_time_limit(0);
$this->Blog_RecalculateCountTopic();
$this->Cache_Clean();
$this->Message_AddNotice($this->Lang_Get('admin_topics_recalculated'),$this->Lang_Get('attention'));
$this->SetTemplateAction('index');
}
/**
* Страница со списком плагинов
*
*/
protected function EventPlugins() {
$this->sMenuHeadItemSelect='plugins';
/**
* Обработка удаления плагинов
*/
if (isPost('submit_plugins_del')) {
$this->Security_ValidateSendForm();
2010-05-02 11:45:46 +03:00
$aPluginsDelete=getRequest('plugin_del');
if (is_array($aPluginsDelete)) {
$this->Plugin_Delete(array_keys($aPluginsDelete));
}
}
/**
* Получаем название плагина и действие
*/
if($sPlugin=getRequestStr('plugin',null,'get') and $sAction=getRequestStr('action',null,'get')) {
return $this->SubmitManagePlugin($sPlugin,$sAction);
}
/**
* Получаем список блогов
*/
$aPlugins=$this->Plugin_GetList(array('order'=>'name'));
/**
* Загружаем переменные в шаблон
*/
$this->Viewer_Assign("aPlugins",$aPlugins);
$this->Viewer_AddHtmlTitle($this->Lang_Get('plugins_administartion_title'));
/**
* Устанавливаем шаблон вывода
*/
$this->SetTemplateAction('plugins');
}
/**
* Управление полями пользователя
*
*/
protected function EventUserFields()
{
switch(getRequestStr('action')) {
/**
* Создание нового поля
*/
case 'add':
/**
* Обрабатываем как ajax запрос (json)
*/
$this->Viewer_SetResponseAjax('json');
if (!$this->checkUserField()) {
return;
}
$oField = Engine::GetEntity('User_Field');
$oField->setName(getRequestStr('name'));
$oField->setTitle(getRequestStr('title'));
$oField->setPattern(getRequestStr('pattern'));
if (in_array(getRequestStr('type'),$this->User_GetUserFieldTypes())) {
$oField->setType(getRequestStr('type'));
2012-04-19 21:04:25 +03:00
} else {
$oField->setType('');
}
$iId = $this->User_addUserField($oField);
if(!$iId) {
$this->Message_AddError($this->Lang_Get('system_error'),$this->Lang_Get('error'));
return;
}
/**
* Прогружаем переменные в ajax ответ
*/
$this->Viewer_AssignAjax('id', $iId);
$this->Viewer_AssignAjax('lang_delete', $this->Lang_Get('user_field_delete'));
$this->Viewer_AssignAjax('lang_edit', $this->Lang_Get('user_field_update'));
$this->Message_AddNotice($this->Lang_Get('user_field_added'),$this->Lang_Get('attention'));
break;
/**
* Удаление поля
*/
case 'delete':
/**
* Обрабатываем как ajax запрос (json)
*/
$this->Viewer_SetResponseAjax('json');
if (!getRequestStr('id')) {
$this->Message_AddError($this->Lang_Get('system_error'),$this->Lang_Get('error'));
return;
}
$this->User_deleteUserField(getRequestStr('id'));
$this->Message_AddNotice($this->Lang_Get('user_field_deleted'),$this->Lang_Get('attention'));
break;
/**
* Изменение поля
*/
case 'update':
/**
* Обрабатываем как ajax запрос (json)
*/
$this->Viewer_SetResponseAjax('json');
if (!getRequestStr('id')) {
$this->Message_AddError($this->Lang_Get('system_error'),$this->Lang_Get('error'));
return;
}
if (!$this->User_userFieldExistsById(getRequestStr('id'))) {
$this->Message_AddError($this->Lang_Get('system_error'),$this->Lang_Get('error'));
return false;
}
if (!$this->checkUserField()) {
return;
}
$oField = Engine::GetEntity('User_Field');
$oField->setId(getRequestStr('id'));
$oField->setName(getRequestStr('name'));
$oField->setTitle(getRequestStr('title'));
$oField->setPattern(getRequestStr('pattern'));
if (in_array(getRequestStr('type'),$this->User_GetUserFieldTypes())) {
$oField->setType(getRequestStr('type'));
} else {
$oField->setType('');
}
if (!$this->User_updateUserField($oField)) {
$this->Message_AddError($this->Lang_Get('system_error'),$this->Lang_Get('error'));
return;
}
$this->Message_AddNotice($this->Lang_Get('user_field_updated'),$this->Lang_Get('attention'));
break;
/**
* Показываем страницу со списком полей
*/
default:
/**
* Загружаем в шаблон JS текстовки
*/
$this->Lang_AddLangJs(array('user_field_delete_confirm'));
/**
* Получаем список всех полей
*/
$this->Viewer_Assign('aUserFields',$this->User_getUserFields());
$this->Viewer_Assign('aUserFieldTypes',$this->User_GetUserFieldTypes());
$this->SetTemplateAction('user_fields');
}
}
/**
* Проверка поля пользователя на корректность из реквеста
*
* @return bool
*/
public function checkUserField()
{
if (!getRequestStr('title')) {
$this->Message_AddError($this->Lang_Get('user_field_error_add_no_title'),$this->Lang_Get('error'));
return false;
}
if (!getRequestStr('name')) {
$this->Message_AddError($this->Lang_Get('user_field_error_add_no_name'),$this->Lang_Get('error'));
return false;
}
/**
* Не допускаем дубликатов по имени
*/
if ($this->User_userFieldExistsByName(getRequestStr('name'), getRequestStr('id'))) {
$this->Message_AddError($this->Lang_Get('user_field_error_name_exists'),$this->Lang_Get('error'));
return false;
}
return true;
}
/**
* Активация\деактивация плагина
*
* @param string $sPlugin Имя плагина
* @param string $sAction Действие
*/
protected function SubmitManagePlugin($sPlugin,$sAction) {
2011-04-10 20:04:18 +03:00
$this->Security_ValidateSendForm();
if(!in_array($sAction,array('activate','deactivate'))) {
$this->Message_AddError($this->Lang_Get('plugins_unknown_action'),$this->Lang_Get('error'),true);
Router::Location(Router::GetPath('plugins'));
}
/**
* Активируем\деактивируем плагин
*/
if($bResult=$this->Plugin_Toggle($sPlugin,$sAction)) {
$this->Message_AddNotice($this->Lang_Get('plugins_action_ok'),$this->Lang_Get('attention'),true);
} else {
if(!($aMessages=$this->Message_GetErrorSession()) or !count($aMessages)) $this->Message_AddErrorSingle($this->Lang_Get('system_error'),$this->Lang_Get('error'),true);
}
/**
* Возвращаем на страницу управления плагинами
*/
Router::Location(Router::GetPath('admin').'plugins/');
}
/**
* Выполняется при завершении работы экшена
*
*/
public function EventShutdown() {
/**
* Загружаем в шаблон необходимые переменные
*/
$this->Viewer_Assign('sMenuHeadItemSelect',$this->sMenuHeadItemSelect);
}
}
?>