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.

162 lines
4.3 KiB

6 years ago
<?php
namespace common\modules\banners\controllers\manage;
use common\modules\banners\entities\BannerPlace;
use common\modules\banners\forms\BannerPlaceForm;
use common\modules\banners\forms\search\PlaceSearch;
use common\modules\banners\services\BannerPlaceManageService;
3 years ago
use DomainException;
6 years ago
use yii\web\NotFoundHttpException;
use yii\filters\AccessControl;
use yii\filters\VerbFilter;
use yii\web\Controller;
use Yii;
3 years ago
use yii\web\Response;
6 years ago
class PlaceController extends Controller
{
3 years ago
private BannerPlaceManageService $service;
6 years ago
public function __construct($id, $module, BannerPlaceManageService $service, $config = [])
{
parent::__construct($id, $module, $config);
3 years ago
$this->service = $service;
6 years ago
}
public function behaviors(): array
{
return [
'access' => [
'class' => AccessControl::class,
'rules' => [
[
'allow' => true,
'roles' => ['BannersManagement'],
],
[ // all the action are accessible to admin
'allow' => true,
'roles' => ['admin'],
],
],
],
'verbs' => [
'class' => VerbFilter::class,
6 years ago
'actions' => [
'delete' => ['POST'],
],
],
];
}
/**
3 years ago
* @return string
6 years ago
*/
3 years ago
public function actionIndex(): string
6 years ago
{
$searchModel = new PlaceSearch();
6 years ago
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
6 years ago
'dataProvider' => $dataProvider,
]);
}
/**
* @param $id
*
* @return string
* @throws NotFoundHttpException
*/
3 years ago
public function actionView($id): string
6 years ago
{
return $this->render('view', [
'place' => $this->findModel($id),
]);
}
/**
3 years ago
* @return string|Response
6 years ago
*/
3 years ago
public function actionCreate(): string|Response
6 years ago
{
$form = new BannerPlaceForm();
if ($form->load(Yii::$app->request->post()) && $form->validate()) {
try {
3 years ago
$form = $this->service->create($form);
6 years ago
return $this->redirect(['view', 'id' => $form->id]);
3 years ago
} catch (DomainException $e) {
6 years ago
Yii::$app->errorHandler->logException($e);
Yii::$app->session->setFlash('error', $e->getMessage());
}
} else {
$form->active = $form->active ?: BannerPlace::STATUS_ACTIVE;
6 years ago
}
6 years ago
return $this->render('create', [
'model' => $form,
]);
}
/**
* @param $id
*
3 years ago
* @return string|Response
* @throws NotFoundHttpException
*/
3 years ago
public function actionUpdate($id): Response|string
6 years ago
{
$place = $this->findModel($id);
$form = new BannerPlaceForm($place);
if ($form->load(Yii::$app->request->post()) && $form->validate()) {
try {
3 years ago
$this->service->edit($place->id, $form);
6 years ago
return $this->redirect(['view', 'id' => $place->id]);
3 years ago
} catch (DomainException $e) {
6 years ago
Yii::$app->errorHandler->logException($e);
Yii::$app->session->setFlash('error', $e->getMessage());
}
}
return $this->render('update', [
'model' => $form,
'place' => $place,
]);
}
/**
* @param integer $id
*
3 years ago
* @return Response
6 years ago
*/
3 years ago
public function actionDelete(int $id): Response
6 years ago
{
try {
3 years ago
$this->service->remove($id);
} catch (DomainException $e) {
6 years ago
Yii::$app->errorHandler->logException($e);
Yii::$app->session->setFlash('error', $e->getMessage());
}
6 years ago
return $this->redirect(['index']);
}
/**
* @param integer $id
*
6 years ago
* @return BannerPlace the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
3 years ago
protected function findModel(int $id): BannerPlace
6 years ago
{
if (($model = BannerPlace::findOne($id)) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested place does not exist.');
}
}