guild/common/models/UserQuestionnaire.php

197 lines
5.4 KiB
PHP
Raw Normal View History

2021-10-22 17:02:28 +03:00
<?php
namespace common\models;
use common\helpers\UUIDHelper;
use Exception;
use yii\base\InvalidConfigException;
2021-10-22 17:02:28 +03:00
use yii\behaviors\TimestampBehavior;
use yii\db\ActiveQuery;
use yii\db\ActiveRecord;
2021-10-22 17:02:28 +03:00
use yii\db\Expression;
use yii\helpers\ArrayHelper;
use backend\modules\questionnaire\models\Question;
use backend\modules\questionnaire\models\UserResponse;
use \backend\modules\questionnaire\models\Answer;
2021-10-22 17:02:28 +03:00
/**
* This is the model class for table "user_questionnaire".
*
* @property int $id
* @property int $questionnaire_id
* @property int $user_id
* @property string $uuid
* @property string $created_at
* @property string $updated_at
* @property int $score
* @property int $status
* @property double $percent_correct_answers
2021-10-22 17:02:28 +03:00
*
* @property Questionnaire $questionnaire
* @property User $user
* @property UserResponse[] $userResponses
*/
class UserQuestionnaire extends ActiveRecord
2021-10-22 17:02:28 +03:00
{
/**
* {@inheritdoc}
*/
public static function tableName()
{
return 'user_questionnaire';
}
public function behaviors()
{
return [
[
'class' => TimestampBehavior::class,
'createdAtAttribute' => 'created_at',
'updatedAtAttribute' => 'updated_at',
'value' => new Expression('NOW()'),
],
];
}
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['questionnaire_id', 'user_id', 'status'], 'required'],
[['questionnaire_id', 'user_id', 'score', 'status'], 'integer'],
[['percent_correct_answers'], 'number'],
[['created_at', 'updated_at', 'testing_date'], 'safe'],
2021-10-22 17:02:28 +03:00
[['uuid'], 'string', 'max' => 36],
[['uuid'], 'unique'],
[['questionnaire_id'], 'exist', 'skipOnError' => true, 'targetClass' => Questionnaire::className(), 'targetAttribute' => ['questionnaire_id' => 'id']],
[['user_id'], 'exist', 'skipOnError' => true, 'targetClass' => User::className(), 'targetAttribute' => ['user_id' => 'id']],
];
}
public function beforeSave($insert)
{
if (parent::beforeSave($insert)) {
if (empty($this->uuid)) {
$this->uuid = UUIDHelper::v4();
}
return true;
} else {
return false;
}
}
2021-10-22 17:02:28 +03:00
/**
* {@inheritdoc}
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'questionnaire_id' => 'Анкета',
'user_id' => 'Пользователь',
'uuid' => 'UUID',
'score' => 'Балы',
'status' => 'Статус',
'created_at' => 'Дата создания',
'updated_at' => 'Дата обновления',
'testing_date' => 'Дата тестирования',
'percent_correct_answers' => 'Процент правильных ответов',
2021-10-22 17:02:28 +03:00
];
}
/**
* @return ActiveQuery
*/
public function getQuestionnaire(): ActiveQuery
{
return $this->hasOne(Questionnaire::className(), ['id' => 'questionnaire_id']);
}
/**
* @return ActiveQuery
*/
public function getUser()
{
return $this->hasOne(User::className(), ['id' => 'user_id']);
}
/**
* @return ActiveQuery
*/
public function getUserResponses(): ActiveQuery
{
return $this->hasMany(UserResponse::className(), ['user_questionnaire_uuid' => 'uuid']);
2021-10-22 17:02:28 +03:00
}
public function getQuestionnaireTitle()
{
return $this->getQuestionnaire()->one()->title;
}
public function getUserName()
{
return $this->getUser()->one()->username;
}
/**
* @throws InvalidConfigException
*/
public function getQuestions()
2021-10-22 17:02:28 +03:00
{
return $this->hasMany(Question::className(), ['id' => 'question_id'])
->viaTable('user_response', ['user_questionnaire_uuid' => 'uuid']);
2021-10-22 17:02:28 +03:00
}
/**
* @throws InvalidConfigException
*/
2021-11-08 12:41:39 +03:00
public function numCorrectAnswersWithoutOpenQuestions()
{
return $this->hasMany(Answer::className(), ['question_id' => 'id'])
->viaTable('question', ['questionnaire_id' => 'questionnaire_id'])
->where(['answer_flag' => '1'])
->andWhere(['status' => '1'])
->count();
}
/**
* @throws InvalidConfigException
*/
2021-11-08 12:41:39 +03:00
public function numOpenQuestionsAnswers()
{
return $this->hasMany(Question::className(), ['questionnaire_id' => 'id'])
->viaTable('questionnaire', ['id' => 'questionnaire_id'])
->where(['question_type_id' => '1'])
->andWhere(['status' => '1'])
->count();
}
/**
* @throws Exception
*/
public static function getQuestionnaireId($uuid)
{
2022-03-03 17:24:45 +03:00
return ArrayHelper::getValue(self::find()->where(['uuid' => $uuid])->one(), 'questionnaire_id');
}
public static function findActiveUserQuestionnaires($user_id): array
{
$models = self::find()
->where(['user_id' => $user_id])
->andWhere(['not', ['user_questionnaire.status' => 0]])
->all();
$modelsArr = array();
foreach ($models as $model) {
$modelsArr[] = array_merge($model->toArray(), [
'questionnaire_title' => $model->getQuestionnaireTitle()
]);
}
return $modelsArr;
}
2021-10-22 17:02:28 +03:00
}