service = $service; } public function behaviors(): array { return [ 'access' => [ 'class' => AccessControl::class, 'rules' => [ [ 'allow' => true, 'roles' => ['PostManagement'], ], [ // all the action are accessible to admin 'allow' => true, 'roles' => ['admin'], ], ], ], 'verbs' => [ 'class' => VerbFilter::class, 'actions' => [ 'delete' => ['POST'], ], ], ]; } /** * @return string */ public function actionIndex(): string { $searchModel = new PostCommentSearch(); $dataProvider = $searchModel->search(Yii::$app->request->queryParams); return $this->render('index', [ 'searchModel' => $searchModel, 'dataProvider' => $dataProvider, ]); } /** * @param $post_id * @param $id * * @return string|Response * @throws NotFoundHttpException */ public function actionUpdate($post_id, $id): Response|string { $post = $this->findModel($post_id); $comment = $post->getComment($id); $form = new PostCommentEditForm($comment); if ($form->load(Yii::$app->request->post()) && $form->validate()) { try { $this->service->edit($post->id, $comment->id, $form); return $this->redirect(['view', 'post_id' => $post->id, 'id' => $comment->id]); } catch (DomainException $e) { Yii::$app->errorHandler->logException($e); Yii::$app->session->setFlash('error', $e->getMessage()); } } return $this->render('update', [ 'post' => $post, 'model' => $form, //'comment' => $comment, ]); } /** * @param $post_id * @param $id * * @return string * @throws NotFoundHttpException */ public function actionView($post_id, $id): string { $post = $this->findModel($post_id); $comment = $post->getComment($id); return $this->render('view', [ 'post' => $post, 'comment' => $comment, ]); } /** * @param $post_id * @param $id * * @return Response * @throws NotFoundHttpException */ public function actionActivate($post_id, $id): Response { $post = $this->findModel($post_id); try { $this->service->activate($post->id, $id); } catch (DomainException $e) { Yii::$app->session->setFlash('error', $e->getMessage()); } return $this->redirect(['view', 'post_id' => $post_id, 'id' => $id]); } /** * @param integer $post_id * @param integer $id * * @return Response * @throws NotFoundHttpException */ public function actionDelete(int $post_id, int $id): Response { $post = $this->findModel($post_id); try { $this->service->remove($post->id, $id); } catch (DomainException $e) { Yii::$app->session->setFlash('error', $e->getMessage()); } return $this->redirect(['index']); } /** * @param integer $id * @return Post the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel(int $id): Post { if (($model = Post::findOne($id)) !== null) { return $model; } throw new NotFoundHttpException('The requested page does not exist.'); } }