guild/common/models/Task.php

135 lines
3.7 KiB
PHP
Raw Normal View History

2021-11-23 13:13:19 +03:00
<?php
namespace common\models;
use yii\behaviors\TimestampBehavior;
2021-11-25 12:33:08 +03:00
use yii\db\ActiveQuery;
2021-12-20 17:49:11 +03:00
use yii\db\ActiveRecord;
use yii\db\Expression;
use yii\helpers\ArrayHelper;
2021-11-23 13:13:19 +03:00
/**
* This is the model class for table "task".
*
* @property int $id
* @property int $project_id
* @property string $title
* @property int $status
* @property string $created_at
* @property string $updated_at
2021-12-20 17:49:11 +03:00
* @property int $card_id_creator
* @property int $card_id
2021-11-23 13:13:19 +03:00
* @property string $description
*
* @property Project $project
2021-12-20 17:49:11 +03:00
* @property UserCard $card
* @property UserCard $cardIdCreator
2021-11-23 13:13:19 +03:00
* @property TaskUser[] $taskUsers
*/
2021-12-20 17:49:11 +03:00
class Task extends ActiveRecord
2021-11-23 13:13:19 +03:00
{
/**
* {@inheritdoc}
*/
public static function tableName()
{
return 'task';
}
public function behaviors()
{
return [
[
'class' => TimestampBehavior::class,
'createdAtAttribute' => 'created_at',
'updatedAtAttribute' => 'updated_at',
'value' => new Expression('NOW()'),
],
];
}
2021-11-23 13:13:19 +03:00
/**
* {@inheritdoc}
*/
public function rules()
{
return [
2021-12-20 17:49:11 +03:00
[['project_id', 'status', 'title', 'description', 'card_id_creator',], 'required'],
[['project_id', 'status', 'card_id_creator', 'card_id'], 'integer'],
2021-11-23 13:13:19 +03:00
[['created_at', 'updated_at'], 'safe'],
2021-12-20 17:49:11 +03:00
['title', 'unique', 'targetAttribute' => ['title', 'project_id'], 'message'=>'Такая задача уже создана'],
2021-11-23 13:13:19 +03:00
[['title'], 'string', 'max' => 255],
[['description'], 'string', 'max' => 500],
[['project_id'], 'exist', 'skipOnError' => true, 'targetClass' => Project::className(), 'targetAttribute' => ['project_id' => 'id']],
2021-12-20 17:49:11 +03:00
[['card_id'], 'exist', 'skipOnError' => true, 'targetClass' => UserCard::className(), 'targetAttribute' => ['card_id' => 'id']],
[['card_id_creator'], 'exist', 'skipOnError' => true, 'targetClass' => UserCard::className(), 'targetAttribute' => ['card_id_creator' => 'id']],
2021-11-23 13:13:19 +03:00
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'project_id' => 'Проект',
'title' => 'Название задачи',
'status' => 'Статус',
'created_at' => 'Дата создания',
'updated_at' => 'Дата обновления',
'description' => 'Описание',
2021-12-20 17:49:11 +03:00
'card_id_creator' => 'Создатель задачи',
'card_id' => 'Наблюдатель',
2021-11-23 13:13:19 +03:00
];
}
public function beforeDelete()
{
foreach ($this->taskUsers as $taskUser){
$taskUser->delete();
}
return parent::beforeDelete();
}
2021-11-23 13:13:19 +03:00
/**
2021-11-25 12:33:08 +03:00
* @return ActiveQuery
2021-11-23 13:13:19 +03:00
*/
public function getProject()
{
return $this->hasOne(Project::className(), ['id' => 'project_id']);
}
/**
2021-11-25 12:33:08 +03:00
* @return ActiveQuery
2021-11-23 13:13:19 +03:00
*/
public function getUser()
2021-11-23 13:13:19 +03:00
{
return $this->hasOne(User::className(), ['id' => 'user_id']);
2021-11-23 13:13:19 +03:00
}
2021-12-20 17:49:11 +03:00
public function getUserCard()
2021-11-23 13:13:19 +03:00
{
2021-12-20 17:49:11 +03:00
return $this->hasOne(UserCard::className(), ['id' => 'card_id']);
}
public function getUserCardCreator()
{
return $this->hasOne(UserCard::className(), ['id' => 'card_id_creator']);
2021-11-23 13:13:19 +03:00
}
/**
2021-11-25 12:33:08 +03:00
* @return ActiveQuery
2021-11-23 13:13:19 +03:00
*/
public function getTaskUsers()
{
return $this->hasMany(TaskUser::className(), ['task_id' => 'id']);
}
public static function usersByTaskArr($task_id): array
{
return ArrayHelper::map(
self::find()->joinWith(['user', 'project'])->where(['project_id' => $task_id])->all(), 'id', 'user.username');
}
2021-11-23 13:13:19 +03:00
}