guild/frontend/modules/api/models/ReportSearchForm.php

66 lines
1.5 KiB
PHP
Raw Normal View History

2021-07-28 17:08:08 +03:00
<?php
namespace frontend\modules\api\models;
use common\models\Reports;
use frontend\modules\card\models\UserCard;
use yii\base\Model;
class ReportSearchForm extends Model
{
public $limit;
public $offset;
public $fromDate;
public $toDate;
public $user_id;
2021-12-06 17:07:27 +03:00
/**
* @var false
*/
public $byDate;
2021-07-28 17:08:08 +03:00
public function __construct($config = [])
{
$this->limit = 10;
$this->offset = 0;
$this->user_id = null;
$this->toDate = date('Y-m-d', time());
$this->fromDate = date('Y-m-01', time());
2021-12-06 17:07:27 +03:00
$this->byDate = false;
2021-07-28 17:08:08 +03:00
parent::__construct($config);
}
public function rules(): array
{
return [
2021-12-06 17:07:27 +03:00
[['byDate'], 'safe'],
[['fromDate', 'toDate'], 'date', 'format' => 'php:Y-m-d'],
[['limit', 'offset', 'user_id'], 'integer', 'min' => 0],
2021-07-28 17:08:08 +03:00
];
}
public function byParams()
{
$queryBuilder = Reports::find()
2021-12-06 17:07:27 +03:00
->with('task');
if ($this->byDate) {
$queryBuilder->andWhere(['reports.created_at' => $this->byDate]);
} else {
$queryBuilder->andWhere(['between', 'reports.created_at', $this->fromDate, $this->toDate]);
}
$queryBuilder->limit($this->limit)
2021-07-28 17:08:08 +03:00
->offset($this->offset);
2021-12-06 17:07:27 +03:00
if (isset($this->user_id)) {
$queryBuilder->andWhere(['user_card_id' => $this->user_id]);
2021-07-28 17:08:08 +03:00
}
2021-08-03 15:52:25 +03:00
$data = $queryBuilder->asArray()->all();
2021-07-28 17:08:08 +03:00
return $data;
}
}