1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 20:00:27 +08:00
winzer ff9f577372 !57 更新v1.2.4readme
* !56 更新v1.2.4readme
* 更新v1.2.4readme
* !55 优化api请求判断
* 增加通过http头判断是否API请求
2021-01-10 13:21:05 +08:00

57 lines
1.2 KiB
PHP

<?php
namespace App\Library\Http;
class Request extends \Phalcon\Http\Request
{
/**
* @return bool
*/
public function isAjax(): bool
{
if (parent::isAjax()) {
return true;
}
$contentType = $this->getContentType();
if (stripos($contentType, 'json') !== false) {
return true;
}
return false;
}
/**
* @return bool
*/
public function isApi(): bool
{
$url = $this->get('_url');
if ($this->hasHeader('X-Platform')) {
return true;
}
if (stripos($url, '/api') !== false) {
return true;
}
return false;
}
public function getPost($name = null, $filters = null, $defaultValue = null, $notAllowEmpty = false, $noRecursive = false)
{
$contentType = $this->getContentType();
if (stripos($contentType, 'json')) {
$data = $this->getPut($name, $filters, $defaultValue, $notAllowEmpty, $noRecursive);
} else {
$data = parent::getPost($name, $filters, $defaultValue, $notAllowEmpty, $noRecursive);
}
return $data;
}
}