2021-11-23 14:58:28 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace backend\modules\project\controllers;
|
|
|
|
|
2021-12-16 17:14:33 +03:00
|
|
|
use common\models\UserCard;
|
|
|
|
use Exception;
|
2021-11-23 14:58:28 +03:00
|
|
|
use Yii;
|
|
|
|
use backend\modules\project\models\ProjectUser;
|
|
|
|
use backend\modules\project\models\ProjectUserSearch;
|
2021-12-16 17:14:33 +03:00
|
|
|
use yii\helpers\ArrayHelper;
|
2021-11-23 14:58:28 +03:00
|
|
|
use yii\web\Controller;
|
|
|
|
use yii\web\NotFoundHttpException;
|
|
|
|
use yii\filters\VerbFilter;
|
2021-12-16 17:14:33 +03:00
|
|
|
use yii\web\Response;
|
2021-11-23 14:58:28 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ProjectUserController implements the CRUD actions for ProjectUser model.
|
|
|
|
*/
|
|
|
|
class ProjectUserController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function behaviors()
|
|
|
|
{
|
|
|
|
return [
|
2022-12-28 11:45:57 +03:00
|
|
|
'as AccessBehavior' => [
|
|
|
|
'class' => \developeruz\db_rbac\behaviors\AccessBehavior::className(),
|
|
|
|
],
|
2021-11-23 14:58:28 +03:00
|
|
|
'verbs' => [
|
|
|
|
'class' => VerbFilter::className(),
|
|
|
|
'actions' => [
|
|
|
|
'delete' => ['POST'],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lists all ProjectUser models.
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function actionIndex()
|
|
|
|
{
|
|
|
|
$searchModel = new ProjectUserSearch();
|
|
|
|
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
|
|
|
|
|
|
|
|
return $this->render('index', [
|
|
|
|
'searchModel' => $searchModel,
|
|
|
|
'dataProvider' => $dataProvider,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Displays a single ProjectUser 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 ProjectUser model.
|
|
|
|
* If creation is successful, the browser will be redirected to the 'view' page.
|
2021-12-16 17:14:33 +03:00
|
|
|
* @return string|Response
|
|
|
|
* @throws Exception
|
2021-11-23 14:58:28 +03:00
|
|
|
*/
|
|
|
|
public function actionCreate()
|
|
|
|
{
|
2021-12-16 17:14:33 +03:00
|
|
|
$post = \Yii::$app->request->post('ProjectUser');
|
|
|
|
|
|
|
|
if (!empty($post)) {
|
2021-12-20 17:49:11 +03:00
|
|
|
$card_id_arr = ArrayHelper::getValue($post, 'card_id');
|
2021-12-16 17:14:33 +03:00
|
|
|
$project_id = $post['project_id'];
|
|
|
|
|
2021-12-20 17:49:11 +03:00
|
|
|
foreach ($card_id_arr as $card_id) {
|
2021-12-16 17:14:33 +03:00
|
|
|
$emtModel = new ProjectUser();
|
|
|
|
$emtModel->project_id = $project_id;
|
2021-12-20 17:49:11 +03:00
|
|
|
$emtModel->card_id = $card_id;
|
|
|
|
$emtModel->user_id = UserCard::getUserIdByCardId($card_id);
|
|
|
|
|
|
|
|
if (!$emtModel->save()) {
|
|
|
|
return $this->render('create', [
|
|
|
|
'model' => $emtModel,
|
|
|
|
]);
|
|
|
|
}
|
2021-12-16 17:14:33 +03:00
|
|
|
}
|
|
|
|
return $this->redirect(['index']);
|
2021-11-23 14:58:28 +03:00
|
|
|
}
|
|
|
|
|
2021-12-16 17:14:33 +03:00
|
|
|
$model = new ProjectUser();
|
2021-11-23 14:58:28 +03:00
|
|
|
return $this->render('create', [
|
|
|
|
'model' => $model,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates an existing ProjectUser 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);
|
|
|
|
|
2021-12-17 15:16:45 +03:00
|
|
|
if ($model->load(Yii::$app->request->post()) ) {
|
2021-12-20 17:49:11 +03:00
|
|
|
$model->user_id = UserCard::getUserIdByCardId($model->card_id);//UserCard::getIdByUserId($model->user_id);
|
2021-12-17 15:16:45 +03:00
|
|
|
if ($model->save()) {
|
|
|
|
return $this->redirect(['view', 'id' => $model->id]);
|
|
|
|
}
|
|
|
|
|
2021-11-23 14:58:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return $this->render('update', [
|
|
|
|
'model' => $model,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes an existing ProjectUser 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 ProjectUser model based on its primary key value.
|
|
|
|
* If the model is not found, a 404 HTTP exception will be thrown.
|
|
|
|
* @param integer $id
|
|
|
|
* @return ProjectUser the loaded model
|
|
|
|
* @throws NotFoundHttpException if the model cannot be found
|
|
|
|
*/
|
|
|
|
protected function findModel($id)
|
|
|
|
{
|
|
|
|
if (($model = ProjectUser::findOne($id)) !== null) {
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new NotFoundHttpException('The requested page does not exist.');
|
|
|
|
}
|
2021-12-16 17:14:33 +03:00
|
|
|
|
|
|
|
public function actionSetUserFields(): Response
|
|
|
|
{
|
|
|
|
ProjectUser::setUsersByCardId();
|
|
|
|
|
|
|
|
return $this->redirect(['index']);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function actionSetCardFields(): Response
|
|
|
|
{
|
|
|
|
ProjectUser::setCardsByUsersId();
|
|
|
|
|
|
|
|
return $this->redirect(['index']);
|
|
|
|
}
|
2023-01-23 11:40:45 +03:00
|
|
|
|
|
|
|
public function actionUsersNotOnProject(): array
|
|
|
|
{
|
|
|
|
Yii::$app->response->format = Response::FORMAT_JSON;
|
|
|
|
|
|
|
|
if (isset($_POST['depdrop_parents'])) {
|
|
|
|
$parents = $_POST['depdrop_parents'];
|
|
|
|
if ($parents != null) {
|
|
|
|
$project_id = $parents[0];
|
|
|
|
$categories = ProjectUser::getUsersNotOnProject($project_id);
|
|
|
|
|
|
|
|
$formattedCatArr = array();
|
|
|
|
foreach ($categories as $key => $value){
|
|
|
|
$formattedCatArr[] = array('id' => $key, 'name' => $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ['output'=>$formattedCatArr, 'selected'=>''];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ['output'=>'', 'selected'=>''];
|
|
|
|
}
|
2021-11-23 14:58:28 +03:00
|
|
|
}
|