Qiang Xue
11 years ago
10 changed files with 447 additions and 23 deletions
@ -0,0 +1,75 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
namespace yii\debug\components\search; |
||||||
|
|
||||||
|
use yii\base\Component; |
||||||
|
|
||||||
|
class Filter extends Component |
||||||
|
{ |
||||||
|
|
||||||
|
/** |
||||||
|
* @var array rules for matching filters in the way: [:fieldName => [rule1, rule2,..]] |
||||||
|
*/ |
||||||
|
protected $rules = []; |
||||||
|
|
||||||
|
/** |
||||||
|
* Adds rules for filtering data. Match can be partial or exactly. |
||||||
|
* @param string $name attribute name |
||||||
|
* @param \yii\debug\components\search\matches\Base $rule |
||||||
|
*/ |
||||||
|
public function addMatch($name, $rule) |
||||||
|
{ |
||||||
|
if (empty($rule->value) && $rule->value !== 0) { |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
$this->rules[$name][] = $rule; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Applies filter on given array and returns filtered data. |
||||||
|
* @param array $data data to filter |
||||||
|
* @return array filtered data |
||||||
|
*/ |
||||||
|
public function filter(array $data) |
||||||
|
{ |
||||||
|
$filtered = []; |
||||||
|
|
||||||
|
foreach($data as $row) |
||||||
|
{ |
||||||
|
if ($this->checkFilter($row)) { |
||||||
|
$filtered[] = $row; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return $filtered; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Check if the given data satisfies filters. |
||||||
|
* @param array $row |
||||||
|
*/ |
||||||
|
public function checkFilter(array $row) |
||||||
|
{ |
||||||
|
$matched = true; |
||||||
|
|
||||||
|
foreach ($row as $name=>$value) |
||||||
|
{ |
||||||
|
if (isset($this->rules[$name])) { |
||||||
|
|
||||||
|
#check all rules for given attribute |
||||||
|
|
||||||
|
foreach($this->rules[$name] as $rule) |
||||||
|
{ |
||||||
|
if (!$rule->check($value)) { |
||||||
|
$matched = false; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return $matched; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,26 @@ |
|||||||
|
<?php |
||||||
|
/** |
||||||
|
* @link http://www.yiiframework.com/ |
||||||
|
* @copyright Copyright (c) 2008 Yii Software LLC |
||||||
|
* @license http://www.yiiframework.com/license/ |
||||||
|
*/ |
||||||
|
|
||||||
|
namespace yii\debug\components\search\matches; |
||||||
|
|
||||||
|
use yii\base\Component; |
||||||
|
|
||||||
|
/** |
||||||
|
* Base mathcer class for all matchers that will be used with filter. |
||||||
|
* |
||||||
|
* @author Mark Jebri <mark.github@yandex.ru> |
||||||
|
* @since 2.0 |
||||||
|
*/ |
||||||
|
abstract class Base extends Component implements MatcherInterface |
||||||
|
{ |
||||||
|
|
||||||
|
/** |
||||||
|
* @var mixed current value to check for the matcher |
||||||
|
*/ |
||||||
|
public $value; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,36 @@ |
|||||||
|
<?php |
||||||
|
/** |
||||||
|
* @link http://www.yiiframework.com/ |
||||||
|
* @copyright Copyright (c) 2008 Yii Software LLC |
||||||
|
* @license http://www.yiiframework.com/license/ |
||||||
|
*/ |
||||||
|
|
||||||
|
namespace yii\debug\components\search\matches; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* @author Mark Jebri <mark.github@yandex.ru> |
||||||
|
* @since 2.0 |
||||||
|
*/ |
||||||
|
class Exact extends Base |
||||||
|
{ |
||||||
|
|
||||||
|
/** |
||||||
|
* @var boolean if current matcher should consider partial mathc of given value. |
||||||
|
*/ |
||||||
|
public $partial = false; |
||||||
|
|
||||||
|
/** |
||||||
|
* Checks if the given value is the same as base one or has partial match with base one. |
||||||
|
* @param mixed $value |
||||||
|
*/ |
||||||
|
public function check($value) |
||||||
|
{ |
||||||
|
if (!$this->partial) { |
||||||
|
return (mb_strtolower($this->value,'utf8') == mb_strtolower($value,'utf8')); |
||||||
|
} else { |
||||||
|
return (mb_strpos($value, $this->value) !== false); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,27 @@ |
|||||||
|
<?php |
||||||
|
/** |
||||||
|
* @link http://www.yiiframework.com/ |
||||||
|
* @copyright Copyright (c) 2008 Yii Software LLC |
||||||
|
* @license http://www.yiiframework.com/license/ |
||||||
|
*/ |
||||||
|
|
||||||
|
namespace yii\debug\components\search\matches; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* @author Mark Jebri <mark.github@yandex.ru> |
||||||
|
* @since 2.0 |
||||||
|
*/ |
||||||
|
class Greater extends Base |
||||||
|
{ |
||||||
|
|
||||||
|
/** |
||||||
|
* Checks if the given value is the same as base one or has partial match with base one. |
||||||
|
* @param mixed $value |
||||||
|
*/ |
||||||
|
public function check($value) |
||||||
|
{ |
||||||
|
return ($value > $this->value); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,27 @@ |
|||||||
|
<?php |
||||||
|
/** |
||||||
|
* @link http://www.yiiframework.com/ |
||||||
|
* @copyright Copyright (c) 2008 Yii Software LLC |
||||||
|
* @license http://www.yiiframework.com/license/ |
||||||
|
*/ |
||||||
|
|
||||||
|
namespace yii\debug\components\search\matches; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* @author Mark Jebri <mark.github@yandex.ru> |
||||||
|
* @since 2.0 |
||||||
|
*/ |
||||||
|
class Lower extends Base |
||||||
|
{ |
||||||
|
|
||||||
|
/** |
||||||
|
* Checks if the given value is the same as base one or has partial match with base one. |
||||||
|
* @param mixed $value |
||||||
|
*/ |
||||||
|
public function check($value) |
||||||
|
{ |
||||||
|
return ($value < $this->value); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
<?php |
||||||
|
/** |
||||||
|
* @link http://www.yiiframework.com/ |
||||||
|
* @copyright Copyright (c) 2008 Yii Software LLC |
||||||
|
* @license http://www.yiiframework.com/license/ |
||||||
|
*/ |
||||||
|
|
||||||
|
namespace yii\debug\components\search\matches; |
||||||
|
|
||||||
|
/** |
||||||
|
* MatcherInterface is the interface that should be implemented by all matchers that will be used in filter. |
||||||
|
* |
||||||
|
* @author Mark Jebri <mark.github@yandex.ru> |
||||||
|
* @since 2.0 |
||||||
|
*/ |
||||||
|
interface MatcherInterface |
||||||
|
{ |
||||||
|
|
||||||
|
/** |
||||||
|
* Check if the value is correct according current matcher. |
||||||
|
* @param mixed $value |
||||||
|
*/ |
||||||
|
public function check($value); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,145 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
namespace yii\debug\models\search; |
||||||
|
|
||||||
|
use yii\base\Model; |
||||||
|
use yii\data\ArrayDataProvider; |
||||||
|
use yii\debug\components\search\Filter; |
||||||
|
use yii\debug\components\search\matches; |
||||||
|
|
||||||
|
/** |
||||||
|
* Debug represents the model behind the search form about requests manifest data. |
||||||
|
*/ |
||||||
|
class Debug extends Model |
||||||
|
{ |
||||||
|
/** |
||||||
|
* @var string tag attribute input search value |
||||||
|
*/ |
||||||
|
public $tag; |
||||||
|
|
||||||
|
/** |
||||||
|
* @var string ip attribute input search value |
||||||
|
*/ |
||||||
|
public $ip; |
||||||
|
|
||||||
|
/** |
||||||
|
* @var string method attribute input search value |
||||||
|
*/ |
||||||
|
public $method; |
||||||
|
|
||||||
|
/** |
||||||
|
* @var integer ajax attribute input search value |
||||||
|
*/ |
||||||
|
public $ajax; |
||||||
|
|
||||||
|
/** |
||||||
|
* @var string url attribute input search value |
||||||
|
*/ |
||||||
|
public $url; |
||||||
|
|
||||||
|
/** |
||||||
|
* @var string status code attribute input search value |
||||||
|
*/ |
||||||
|
public $statusCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* @var integer sql count attribute input search value |
||||||
|
*/ |
||||||
|
public $sqlCount; |
||||||
|
|
||||||
|
/** |
||||||
|
* @var array critical codes, used to determine grid row options. |
||||||
|
*/ |
||||||
|
public $criticalCodes = [400, 404, 500]; |
||||||
|
|
||||||
|
public function rules() |
||||||
|
{ |
||||||
|
return [ |
||||||
|
[['tag', 'ip', 'method', 'ajax', 'url','statusCode','sqlCount'], 'safe'], |
||||||
|
]; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* @inheritdoc |
||||||
|
*/ |
||||||
|
public function attributeLabels() |
||||||
|
{ |
||||||
|
return [ |
||||||
|
'tag' => 'Tag', |
||||||
|
'ip' => 'Ip', |
||||||
|
'method' => 'Method', |
||||||
|
'ajax' => 'Ajax', |
||||||
|
'url' => 'url', |
||||||
|
'statusCode' => 'Status code', |
||||||
|
'sqlCount' => 'Total queries count', |
||||||
|
]; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Returns data provider with filled models. Filter applied if needed. |
||||||
|
* @param type $params |
||||||
|
* @param type $models |
||||||
|
* @return \yii\data\ArrayDataProvider |
||||||
|
*/ |
||||||
|
public function search($params, $models) |
||||||
|
{ |
||||||
|
$dataProvider = new ArrayDataProvider([ |
||||||
|
'allModels' => $models, |
||||||
|
'sort' => [ |
||||||
|
'attributes' => ['method', 'ip','tag','time','statusCode','sqlCount'], |
||||||
|
], |
||||||
|
'pagination' => [ |
||||||
|
'pageSize' => 10, |
||||||
|
], |
||||||
|
]); |
||||||
|
|
||||||
|
if (!($this->load($params) && $this->validate())) { |
||||||
|
return $dataProvider; |
||||||
|
} |
||||||
|
|
||||||
|
$filter = new Filter(); |
||||||
|
$this->addCondition($filter, 'tag', true); |
||||||
|
$this->addCondition($filter, 'ip', true); |
||||||
|
$this->addCondition($filter, 'method'); |
||||||
|
$this->addCondition($filter, 'ajax'); |
||||||
|
$this->addCondition($filter, 'url', true); |
||||||
|
$this->addCondition($filter, 'statusCode'); |
||||||
|
$this->addCondition($filter, 'sqlCount'); |
||||||
|
$dataProvider->allModels = $filter->filter($models); |
||||||
|
|
||||||
|
return $dataProvider; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Checks if the code is critical: 400 or greater, 500 or greater. |
||||||
|
* @param integer $code |
||||||
|
* @return bool |
||||||
|
*/ |
||||||
|
public function isCodeCritical($code) |
||||||
|
{ |
||||||
|
return in_array($code, $this->criticalCodes); |
||||||
|
} |
||||||
|
|
||||||
|
public function addCondition($filter,$attribute,$partial=false) |
||||||
|
{ |
||||||
|
$value = $this->$attribute; |
||||||
|
|
||||||
|
if (mb_strpos($value, '>') !== false) |
||||||
|
{ |
||||||
|
|
||||||
|
$value = intval(str_replace('>', '', $value)); |
||||||
|
$filter->addMatch($attribute,new matches\Greater(['value' => $value])); |
||||||
|
|
||||||
|
} elseif (mb_strpos($value, '<') !== false) { |
||||||
|
|
||||||
|
$value = intval(str_replace('<', '', $value)); |
||||||
|
$filter->addMatch($attribute,new matches\Lower(['value' => $value])); |
||||||
|
|
||||||
|
} else { |
||||||
|
$filter->addMatch($attribute,new matches\Exact(['value' => $value, 'partial' => $partial])); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue