mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-28 05:11:39 +08:00
合并demo中的修改
This commit is contained in:
parent
d21c0d72e5
commit
23af401082
@ -26,7 +26,7 @@
|
|||||||
<div class="about layui-elip">{{ item.about }}</div>
|
<div class="about layui-elip">{{ item.about }}</div>
|
||||||
<div class="meta">
|
<div class="meta">
|
||||||
<span>性别:{{ gender_info(item.gender) }}</span>
|
<span>性别:{{ gender_info(item.gender) }}</span>
|
||||||
<span>地区:{{ item.location }}</span>
|
<span>地区:{{ item.area }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
namespace App\Library\Paginator;
|
namespace App\Library\Paginator;
|
||||||
|
|
||||||
use Phalcon\Di;
|
use Phalcon\Di;
|
||||||
|
use Phalcon\Filter;
|
||||||
use Phalcon\Http\Request;
|
use Phalcon\Http\Request;
|
||||||
|
|
||||||
class Query
|
class Query
|
||||||
@ -13,42 +14,52 @@ class Query
|
|||||||
*/
|
*/
|
||||||
protected $request;
|
protected $request;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var Filter
|
||||||
|
*/
|
||||||
|
protected $filter;
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
$this->request = Di::getDefault()->get('request');
|
$this->request = Di::getDefault()->get('request');
|
||||||
|
|
||||||
|
$this->filter = Di::getDefault()->get('filter');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getPage()
|
public function getPage()
|
||||||
{
|
{
|
||||||
$page = $this->request->get('page', 'int', 1);
|
$page = $this->request->getQuery('page', ['trim', 'int'], 1);
|
||||||
|
|
||||||
return $page > 1000 ? 1000 : $page;
|
return $page > 100 ? 100 : $page;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getLimit()
|
public function getLimit()
|
||||||
{
|
{
|
||||||
$limit = $this->request->get('limit', 'int', 12);
|
$limit = $this->request->getQuery('limit', ['trim', 'int'], 12);
|
||||||
|
|
||||||
return $limit > 100 ? 100 : $limit;
|
return $limit > 100 ? 100 : $limit;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getSort()
|
public function getSort()
|
||||||
{
|
{
|
||||||
return $this->request->get('sort', 'trim', '');
|
return $this->request->getQuery('sort', ['trim', 'string'], '');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getBaseUrl()
|
public function getBaseUrl()
|
||||||
{
|
{
|
||||||
return $this->request->get('_url', 'trim', '');
|
return $this->request->getQuery('_url', ['trim', 'string'], '');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getParams()
|
public function getParams(array $whitelist = [])
|
||||||
{
|
{
|
||||||
$params = $this->request->get();
|
$params = $this->request->getQuery();
|
||||||
|
|
||||||
if ($params) {
|
if ($params) {
|
||||||
foreach ($params as $key => $value) {
|
foreach ($params as $key => $value) {
|
||||||
if (strlen($value) == 0) {
|
$value = $this->filter->sanitize($value, ['trim', 'string']);
|
||||||
|
if ($whitelist && !in_array($value, $whitelist)) {
|
||||||
|
unset($params[$key]);
|
||||||
|
} elseif (strlen($value) == 0) {
|
||||||
unset($params[$key]);
|
unset($params[$key]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -72,7 +72,7 @@ class Category extends Validator
|
|||||||
{
|
{
|
||||||
$list = CategoryModel::types();
|
$list = CategoryModel::types();
|
||||||
|
|
||||||
if (!isset($list[$type])) {
|
if (!array_key_exists($type, $list)) {
|
||||||
throw new BadRequestException('category.invalid_type');
|
throw new BadRequestException('category.invalid_type');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -69,11 +69,11 @@ class Nav extends Validator
|
|||||||
{
|
{
|
||||||
$value = $this->filter->sanitize($url, ['trim']);
|
$value = $this->filter->sanitize($url, ['trim']);
|
||||||
|
|
||||||
$stageA = Text::startsWith($value, '/');
|
$case1 = Text::startsWith($value, '/');
|
||||||
$stageB = Text::startsWith($value, '#');
|
$case2 = Text::startsWith($value, '#');
|
||||||
$stageC = CommonValidator::url($value);
|
$case3 = CommonValidator::url($value);
|
||||||
|
|
||||||
if (!$stageA && !$stageB && !$stageC) {
|
if (!$case1 && !$case2 && !$case3) {
|
||||||
throw new BadRequestException('nav.invalid_url');
|
throw new BadRequestException('nav.invalid_url');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -84,7 +84,7 @@ class Nav extends Validator
|
|||||||
{
|
{
|
||||||
$list = NavModel::targetTypes();
|
$list = NavModel::targetTypes();
|
||||||
|
|
||||||
if (!isset($list[$target])) {
|
if (!array_key_exists($target, $list)) {
|
||||||
throw new BadRequestException('nav.invalid_target');
|
throw new BadRequestException('nav.invalid_target');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -95,7 +95,7 @@ class Nav extends Validator
|
|||||||
{
|
{
|
||||||
$list = NavModel::posTypes();
|
$list = NavModel::posTypes();
|
||||||
|
|
||||||
if (!isset($list[$position])) {
|
if (!array_key_exists($position, $list)) {
|
||||||
throw new BadRequestException('nav.invalid_position');
|
throw new BadRequestException('nav.invalid_position');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ class Order extends Validator
|
|||||||
{
|
{
|
||||||
$list = OrderModel::itemTypes();
|
$list = OrderModel::itemTypes();
|
||||||
|
|
||||||
if (!isset($list[$itemType])) {
|
if (!array_key_exists($itemType, $list)) {
|
||||||
throw new BadRequestException('order.invalid_item_type');
|
throw new BadRequestException('order.invalid_item_type');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user