You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

296 lines
8.9 KiB

<?php
/**
* Created by Error202
* Date: 10.07.2018
*/
namespace backend\controllers;
use core\entities\menu\Menu;
use core\entities\menu\MenuItem;
use core\entities\ModuleRecord;
use core\forms\menu\MenuForm;
use core\forms\menu\MenuItemForm;
use core\forms\menu\MenuSelectForm;
use core\services\menu\MenuItemManageService;
use core\services\menu\MenuManageService;
3 years ago
use yii\db\StaleObjectException;
use yii\filters\AccessControl;
use yii\filters\VerbFilter;
use yii\helpers\Json;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use DomainException;
use yii\web\Response;
use RuntimeException;
use Yii;
class MenuController extends Controller
{
3 years ago
public MenuManageService $menu_service;
public MenuItemManageService $menu_item_service;
public function __construct(
string $id,
$module,
MenuManageService $menu_service,
MenuItemManageService $menu_item_service,
array $config = []
) {
parent::__construct($id, $module, $config);
$this->menu_service = $menu_service;
$this->menu_item_service = $menu_item_service;
}
public function behaviors(): array
{
return [
'access' => [
'class' => AccessControl::class,
'rules' => [
[
'allow' => true,
'roles' => ['MenuManagement'],
],
[ // all the action are accessible to admin
'allow' => true,
'roles' => ['admin'],
],
],
],
'verbs' => [
'class' => VerbFilter::class,
'actions' => [
'delete' => ['POST'],
'delete-menu-item' => ['POST'],
],
],
];
}
3 years ago
/**
* @param null $id
* @return Response|string
* @throws NotFoundHttpException
*/
public function actionIndex($id = null): Response|string
{
$menus = []; // menu list
$menu_records = Menu::find()->all();
foreach ($menu_records as $menu_record) {
$menus[$menu_record->id] = isset($menu_record->translation) && $menu_record->translation->name
? $menu_record->translation->name
: $menu_record->findTranslation(Yii::$app->params['defaultLanguage'])->name;
}
$form = new MenuSelectForm();
if ($form->load(Yii::$app->request->get()) && $form->validate()) {
return $this->redirect(['menu/index', 'id' => $form->id]);
} elseif ($id) {
$menu = $this->findModel($id);
3 years ago
if ($this->createMenuItem()) {
return $this->redirect(['/menu/index', 'id' => $id]);
}; // create menu item if MenuItemForm sent
$creatorWidgets = $this->getCreatorWidgets($menu->id);
return $this->render('menu', [
'model' => $form,
'menus' => $menus,
'menu' => $menu,
'creator' => $creatorWidgets,
]);
} else {
return $this->render('select_menu', [
'model' => $form,
'menus' => $menus,
]);
}
}
3 years ago
public function actionCreate(): Response|string
{
$form = new MenuForm();
if ($form->load(Yii::$app->request->post()) && $form->validate()) {
try {
$menu = $this->menu_service->create($form);
return $this->redirect(['index', 'id' => $menu->id]);
} catch (DomainException $e) {
Yii::$app->errorHandler->logException($e);
Yii::$app->session->setFlash('error', $e->getMessage());
}
}
return $this->render('create', [
'model' => $form,
]);
}
3 years ago
/**
* @param $id
* @return Response|string
* @throws NotFoundHttpException
*/
public function actionUpdate($id): Response|string
{
$menu = $this->findModel($id);
$form = new MenuForm($menu);
if ($form->load(Yii::$app->request->post()) && $form->validate()) {
try {
$this->menu_service->edit($menu->id, $form);
return $this->redirect(['index', 'id' => $menu->id]);
} catch (DomainException $e) {
Yii::$app->errorHandler->logException($e);
Yii::$app->session->setFlash('error', $e->getMessage());
}
}
return $this->render('update', [
'model' => $form,
'menu' => $menu,
]);
}
3 years ago
public function actionDelete($id): Response
{
try {
$this->menu_service->remove($id);
} catch (DomainException $e) {
Yii::$app->errorHandler->logException($e);
Yii::$app->session->setFlash('error', $e->getMessage());
}
return $this->redirect(['index']);
}
3 years ago
/**
* @param $id
* @return Response
* @throws NotFoundHttpException
*/
public function actionSaveItem($id): Response
{
$item = $this->findItemModel($id);
$form = new MenuItemForm($item);
if ($form->load(Yii::$app->request->post()) && $form->validate()) {
try {
$this->menu_item_service->edit($item->id, $form);
return $this->redirect(['index', 'id' => $item->menu_id]);
} catch (DomainException $e) {
Yii::$app->errorHandler->logException($e);
Yii::$app->session->setFlash('error', $e->getMessage());
}
}
return $this->redirect(['index', 'id' => $item->menu_id]);
}
3 years ago
/**
* @return array
* @throws NotFoundHttpException
* @throws StaleObjectException
*/
public function actionDeleteMenuItem(): array
{
Yii::$app->response->format = Response::FORMAT_JSON;
if (Yii::$app->request->isAjax) {
try {
$id = Yii::$app->request->post('id');
$item = $this->findItemModel($id);
$item->delete();
Yii::$app->session->setFlash('success', Yii::t('menu', 'Menu Item Deleted'));
return ['result' => 'success'];
} catch (RuntimeException $e) {
return ['result' => 'error', 'message' => $e->getMessage()];
}
}
return ['result' => 'error', 'message' => 'Request error'];
}
3 years ago
public function actionSaveMenuItems(): array
{
$json = Yii::$app->request->post('json');
Yii::$app->response->format = Response::FORMAT_JSON;
if (Yii::$app->request->isAjax) {
try {
$order = [];
$items = Json::decode($json, true);
foreach ($items as $item) {
$order[$item[1]] = isset($order[$item[1]]) ? $order[$item[1]] + 1 : 0;
$this->menu_item_service->setPosition($item, $order[$item[1]]);
}
Yii::$app->session->setFlash('success', Yii::t('menu', 'Menu Saved'));
return ['result' => 'success'];
} catch (RuntimeException $e) {
return ['result' => 'error', 'message' => $e->getMessage()];
}
}
return ['result' => 'error', 'message' => 'Request error'];
}
private function getCreatorWidgets($menu_id): array
{
$widgets = [];
$modules = ModuleRecord::find()->active()->all();
foreach ($modules as $module) {
if (method_exists($module->class, 'getMenuItemCreator')) {
$module_widgets = call_user_func_array($module->class . '::getMenuItemCreator', [$menu_id]);
$widgets = is_array($module_widgets) ? array_merge($widgets, $module_widgets) : $widgets;
}
}
return $widgets;
}
3 years ago
private function createMenuItem(): bool
{
$form = new MenuItemForm();
if ($form->load(Yii::$app->request->post()) && $form->validate()) {
try {
$this->menu_item_service->create($form);
3 years ago
return true;
} catch (DomainException $e) {
Yii::$app->errorHandler->logException($e);
}
}
3 years ago
return false;
}
3 years ago
/**
* @param $id
* @return Menu
* @throws NotFoundHttpException
*/
protected function findModel($id): Menu
{
if (($model = Menu::findOne($id)) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested menu does not exist.');
}
3 years ago
/**
* @param $id
* @return MenuItem
* @throws NotFoundHttpException
*/
protected function findItemModel($id): MenuItem
{
if (($model = MenuItem::findOne($id)) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested menu item does not exist.');
}
}