163 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			163 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace backend\modules\document\controllers;
 | |
| 
 | |
| use PhpOffice\PhpWord\Exception\CopyFileException;
 | |
| use PhpOffice\PhpWord\Exception\CreateTemporaryFileException;
 | |
| use Yii;
 | |
| use backend\modules\document\models\Document;
 | |
| use backend\modules\document\models\DocumentSearch;
 | |
| use yii\data\ActiveDataProvider;
 | |
| use yii\web\Controller;
 | |
| use yii\web\NotFoundHttpException;
 | |
| use yii\filters\VerbFilter;
 | |
| 
 | |
| use common\services\DocumentFileService;
 | |
| use yii\web\Response;
 | |
| 
 | |
| /**
 | |
|  * DocumentController implements the CRUD actions for Document model.
 | |
|  */
 | |
| class DocumentController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public function behaviors()
 | |
|     {
 | |
|         return [
 | |
|             'verbs' => [
 | |
|                 'class' => VerbFilter::className(),
 | |
|                 'actions' => [
 | |
|                     'delete' => ['POST'],
 | |
|                 ],
 | |
|             ],
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Lists all Document models.
 | |
|      * @return mixed
 | |
|      */
 | |
|     public function actionIndex()
 | |
|     {
 | |
|         $searchModel = new DocumentSearch();
 | |
|         $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
 | |
| 
 | |
|         return $this->render('index', [
 | |
|             'searchModel' => $searchModel,
 | |
|             'dataProvider' => $dataProvider,
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Displays a single Document model.
 | |
|      * @param integer $id
 | |
|      * @return mixed
 | |
|      * @throws NotFoundHttpException if the model cannot be found
 | |
|      */
 | |
|     public function actionView($id)
 | |
|     {
 | |
|         $model = $this->findModel($id);
 | |
|         $documentFieldValuesDataProvider = new ActiveDataProvider([
 | |
|             'query' => $model->getDocumentFieldValues(),//->with('questionType'),
 | |
|             'pagination' => [
 | |
|                 'pageSize' => 20,
 | |
|             ],
 | |
|         ]);
 | |
| 
 | |
|         return $this->render('view', [
 | |
|             'model' => $model,
 | |
|             'documentFieldValuesDataProvider' => $documentFieldValuesDataProvider
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Creates a new Document model.
 | |
|      * If creation is successful, the browser will be redirected to the 'view' page.
 | |
|      * @return mixed
 | |
|      */
 | |
|     public function actionCreate()
 | |
|     {
 | |
|         $model = new Document();
 | |
| 
 | |
|         if ($model->load(Yii::$app->request->post()) && $model->save()) {
 | |
|             return $this->redirect([
 | |
|                 'document-field-value/create-multiple',
 | |
|                 'document_id' => $model->id,
 | |
|                 'template_id' => $model->template_id
 | |
|             ]);
 | |
|         }
 | |
| 
 | |
|         return $this->render('create', [
 | |
|             'model' => $model,
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Updates an existing Document 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);
 | |
| 
 | |
|         if ($model->load(Yii::$app->request->post()) && $model->save()) {
 | |
|             return $this->redirect(['view', 'id' => $model->id]);
 | |
|         }
 | |
| 
 | |
|         return $this->render('update', [
 | |
|             'model' => $model,
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Deletes an existing Document 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 Document model based on its primary key value.
 | |
|      * If the model is not found, a 404 HTTP exception will be thrown.
 | |
|      * @param integer $id
 | |
|      * @return Document the loaded model
 | |
|      * @throws NotFoundHttpException if the model cannot be found
 | |
|      */
 | |
|     protected function findModel($id)
 | |
|     {
 | |
|         if (($model = Document::findOne($id)) !== null) {
 | |
|             return $model;
 | |
|         }
 | |
| 
 | |
|         throw new NotFoundHttpException('The requested page does not exist.');
 | |
|     }
 | |
| 
 | |
| 
 | |
|     /**
 | |
|      * @throws CopyFileException
 | |
|      * @throws NotFoundHttpException
 | |
|      * @throws CreateTemporaryFileException
 | |
|      */
 | |
|     public function actionCreateDocument($id): Response
 | |
|     {
 | |
|         if(!empty($this->findModel($id)->template->template_file_name)){
 | |
|             $documentService = new DocumentFileService($id);
 | |
|             $documentService->setFields();
 | |
|             $documentService->downloadDocument();
 | |
|         }
 | |
|         return $this->redirect(['view', 'id' => $id]);
 | |
|     }
 | |
| }
 | 
