guild/backend/modules/accesses/controllers/AccessesController.php

171 lines
4.6 KiB
PHP
Raw Normal View History

2019-10-22 18:03:40 +03:00
<?php
namespace app\modules\accesses\controllers;
2020-02-04 12:17:14 +03:00
use backend\modules\card\models\UserCardSearch;
2019-10-22 18:03:40 +03:00
use common\classes\Debug;
use common\models\ProjectAccesses;
2020-02-04 14:28:41 +03:00
use common\models\UserCard;
2019-10-22 18:03:40 +03:00
use common\models\UserCardAccesses;
use Yii;
use common\models\Accesses;
use app\modules\accesses\models\AccessesSearch;
2020-02-04 12:17:14 +03:00
use yii\data\ActiveDataProvider;
2020-01-29 11:26:01 +03:00
use yii\filters\AccessControl;
2019-10-22 18:03:40 +03:00
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
/**
* AccessesController implements the CRUD actions for Accesses model.
*/
class AccessesController extends Controller
{
/**
* {@inheritdoc}
*/
public function behaviors()
{
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
2020-01-29 11:26:01 +03:00
'access' => [
'class' => AccessControl::className(),
'rules' => [
[
'allow' => true,
'roles' => ['admin'],
],
],
],
2019-10-22 18:03:40 +03:00
];
}
/**
* Lists all Accesses models.
* @return mixed
*/
public function actionIndex()
{
2020-02-04 12:17:14 +03:00
$searchModel = new UserCardSearch();
2019-10-22 18:03:40 +03:00
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
2020-02-04 14:28:41 +03:00
$dataProvider->query->innerJoin('user_card_accesses', 'user_card.id = user_card_accesses.user_card_id');
2020-02-04 12:17:14 +03:00
2019-10-22 18:03:40 +03:00
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
}
2020-09-09 14:50:13 +03:00
/**
* Lists all Accesses models.
* @return mixed
*/
public function actionAll()
{
$searchModel = new AccessesSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('all', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
}
2019-10-22 18:03:40 +03:00
/**
* Displays a single Accesses 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 Accesses model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
$model = new Accesses();
if ($model->load(Yii::$app->request->post()) && $model->save())
{
return $this->redirect(['view', 'id' => $model->id]);
}
return $this->render('create', [
'model' => $model,
]);
}
/**
* Updates an existing Accesses 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 Accesses 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']);
}
2020-01-24 17:38:25 +03:00
public function actionCustomDelete($id)
{
2020-01-27 10:30:26 +03:00
$clean_id = str_replace('=', "", stristr($id, '='));
UserCardAccesses::deleteAll(['accesses_id' => $clean_id]);
Accesses::deleteAll(['id' => $clean_id]);
2020-01-24 17:38:25 +03:00
2020-09-09 17:52:39 +03:00
Yii::$app->session->setFlash('success', "Доступ удален");
2020-01-27 10:30:26 +03:00
return $this->redirect(['index']);
2020-01-24 17:38:25 +03:00
}
2019-10-22 18:03:40 +03:00
/**
* Finds the Accesses model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return Accesses the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = Accesses::findOne($id)) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested page does not exist.');
}
}