Your IP : 216.73.216.79


Current Path : /var/www/html/maiwp/backend/modules/chat.backup/controllers/
Upload File :
Current File : /var/www/html/maiwp/backend/modules/chat.backup/controllers/ChatAnswerBotController.php

<?php

namespace backend\modules\chat\controllers;

use Yii;
use backend\modules\chat\models\ChatAnswerBot;
use backend\modules\chat\models\ChatAnswerBotSearch;
use backend\modules\chat\models\ChatQuestionTag;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;

/**
 * ChatAnswerBotController implements the CRUD actions for ChatAnswerBot model.
 */
class ChatAnswerBotController extends Controller {

    /**
     * {@inheritdoc}
     */
    public function behaviors() {
        return [
            'verbs' => [
                'class' => VerbFilter::className(),
                'actions' => [
                    'delete' => ['POST'],
                ],
            ],
        ];
    }

    /**
     * Lists all ChatAnswerBot models.
     * @return mixed
     */
    public function actionIndex() {
        $searchModel = new ChatAnswerBotSearch();
        $dataProvider = $searchModel->search(Yii::$app->request->queryParams);

        return $this->render('index', [
                    'searchModel' => $searchModel,
                    'dataProvider' => $dataProvider,
        ]);
    }

    /**
     * Displays a single ChatAnswerBot model.
     * @param integer $id
     * @return mixed
     * @throws NotFoundHttpException if the model cannot be found
     */
    public function actionView($id) {
        return $this->render('view', [
                    'model' => $this->findModel($id),
        ]);
    }

    /**
     * Creates a new ChatAnswerBot model.
     * If creation is successful, the browser will be redirected to the 'view' page.
     * @return mixed
     */
    public function actionCreate() {
        $model = new ChatAnswerBot();
        $modelTag = new ChatQuestionTag();
        if ($model->load(Yii::$app->request->post())) {
            $postChatQuestionTag = Yii::$app->request->post('ChatQuestionTag');
            $postChatAnswerBot = Yii::$app->request->post('ChatAnswerBot');

            $checkQuestionTag = ChatQuestionTag::find()
                    ->where(['=', 'question_tag_name', $postChatQuestionTag['question_tag_name']])
                    ->andWhere(['=', 'question_tag_language', $postChatAnswerBot['answer_bot_language']])
                    ->one();

            $questionTagId = 0;
            if (!$checkQuestionTag) {
                $modelTag->question_tag_name = $postChatQuestionTag['question_tag_name'];
                $modelTag->question_tag_language = $postChatAnswerBot['answer_bot_language'];
                $modelTag->save();
                $questionTagId = $modelTag->question_tag_id;
            } else {
                $questionTagId = $checkQuestionTag->question_tag_id;
            }

            $model->question_tag_id = $questionTagId;
            $model->question_id = 0;
            $model->save();

            return $this->redirect(['index']);
        }

        return $this->render('create', [
                    'model' => $model,
                    'model_question_tag' => $modelTag
        ]);
    }

    /**
     * Updates an existing ChatAnswerBot model.
     * If update is successful, the browser will be redirected to the 'view' page.
     * @param integer $id
     * @return mixed
     * @throws NotFoundHttpException if the model cannot be found
     */
    public function actionUpdate($id) {
        $model = $this->findModel($id);
        $model_question_tag = ChatQuestionTag::find()
                ->where(['=', 'question_tag_id', $model->question_tag_id])
                ->one();

        if ($model->load(Yii::$app->request->post())) {
            $postChatQuestionTag = Yii::$app->request->post('ChatQuestionTag');
            $postChatAnswerBot = Yii::$app->request->post('ChatAnswerBot');

            $checkQuestionTag = ChatQuestionTag::find()
                    ->where(['=', 'question_tag_name', $postChatQuestionTag['question_tag_name']])
                    ->andWhere(['=', 'question_tag_language', $postChatAnswerBot['answer_bot_language']])
                    ->one();

            $questionTagId = 0;
            if (!$checkQuestionTag) {
                $modelTag = new ChatQuestionTag();
                $modelTag->question_tag_name = $postChatQuestionTag['question_tag_name'];
                $modelTag->question_tag_language = $postChatAnswerBot['answer_bot_language'];
                $modelTag->save();
                $questionTagId = $modelTag->question_tag_id;
            } else {
                $questionTagId = $checkQuestionTag->question_tag_id;
            }

            $model->question_tag_id = $questionTagId;
            $model->question_id = 0;
            $model->save();

            return $this->redirect(['index']);
        }

        return $this->render('update', [
                    'model' => $model,
                    'model_question_tag' => $model_question_tag
        ]);
    }

    /**
     * Deletes an existing ChatAnswerBot model.
     * If deletion is successful, the browser will be redirected to the 'index' page.
     * @param integer $id
     * @return mixed
     * @throws NotFoundHttpException if the model cannot be found
     */
    public function actionDelete($id) {
        $this->findModel($id)->delete();

        return $this->redirect(['index']);
    }

    /**
     * Finds the ChatAnswerBot model based on its primary key value.
     * If the model is not found, a 404 HTTP exception will be thrown.
     * @param integer $id
     * @return ChatAnswerBot the loaded model
     * @throws NotFoundHttpException if the model cannot be found
     */
    protected function findModel($id) {
        if (($model = ChatAnswerBot::findOne($id)) !== null) {
            return $model;
        }

        throw new NotFoundHttpException(Yii::t('app', 'The requested page does not exist.'));
    }

}