Admin
6 months ago
Ajax
6 months ago
ApplyFilter
6 months ago
Asset
6 months ago
Capabilities
6 months ago
Check
6 months ago
Column
6 months ago
ColumnRepository
6 months ago
ColumnSize
6 months ago
Controller
6 months ago
Deprecated
6 months ago
Entity
6 months ago
Exception
6 months ago
Form
6 months ago
Helper
6 months ago
Integration
6 months ago
ListScreen
6 months ago
ListScreenFactory
6 months ago
ListScreenRepository
6 months ago
ListTable
6 months ago
Message
6 months ago
Meta
6 months ago
Nonce
6 months ago
Plugin
6 months ago
Preferences
6 months ago
Promo
6 months ago
Relation
6 months ago
Request
6 months ago
RequestHandler
6 months ago
Response
6 months ago
Sanitize
6 months ago
Screen
6 months ago
Service
6 months ago
Settings
6 months ago
Storage
6 months ago
Table
6 months ago
ThirdParty
6 months ago
Transient
6 months ago
Type
6 months ago
View
6 months ago
AdminColumns.php
6 months ago
ArrayIterator.php
6 months ago
Capabilities.php
6 months ago
Collection.php
6 months ago
Column.php
6 months ago
ColumnGroups.php
6 months ago
ColumnRepository.php
6 months ago
Config.php
6 months ago
Container.php
6 months ago
DefaultColumnsRepository.php
6 months ago
Dependencies.php
6 months ago
Expirable.php
6 months ago
Groups.php
6 months ago
Helper.php
6 months ago
Integration.php
6 months ago
IntegrationRepository.php
6 months ago
Integrations.php
6 months ago
Iterator.php
6 months ago
ListScreen.php
6 months ago
ListScreenCollection.php
6 months ago
ListScreenFactory.php
6 months ago
ListScreenGroupsFactory.php
6 months ago
ListScreenPost.php
6 months ago
ListScreenRepository.php
6 months ago
ListScreenRepositoryWritable.php
6 months ago
ListTable.php
6 months ago
ListTableFactory.php
6 months ago
Message.php
6 months ago
MetaType.php
6 months ago
Middleware.php
6 months ago
OpCacheInvalidateTrait.php
6 months ago
PluginActionLinks.php
6 months ago
PluginActionUpgrade.php
6 months ago
PluginUpdate.php
6 months ago
PostType.php
6 months ago
PostTypeRepository.php
6 months ago
Preferences.php
6 months ago
Promo.php
6 months ago
PromoCollection.php
6 months ago
Registerable.php
6 months ago
Relation.php
6 months ago
Renderable.php
6 months ago
Request.php
6 months ago
RequestAjaxHandler.php
6 months ago
RequestAjaxHandlers.php
6 months ago
RequestAjaxParser.php
6 months ago
Sanitize.php
6 months ago
Screen.php
6 months ago
ScreenController.php
6 months ago
Services.php
6 months ago
Stringable.php
6 months ago
Transient.php
6 months ago
TypedArrayIterator.php
6 months ago
View.php
6 months ago
ViewCollection.php
6 months ago
WpListTableFactory.php
6 months ago
Request.php
105 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC; |
| 4 | |
| 5 | use AC\Request\Parameters; |
| 6 | |
| 7 | class Request |
| 8 | { |
| 9 | |
| 10 | public const METHOD_POST = 'POST'; |
| 11 | public const METHOD_GET = 'GET'; |
| 12 | |
| 13 | /** |
| 14 | * @var string |
| 15 | */ |
| 16 | protected $method; |
| 17 | |
| 18 | /** |
| 19 | * @var Parameters |
| 20 | */ |
| 21 | protected $query; |
| 22 | |
| 23 | /** |
| 24 | * @var Parameters |
| 25 | */ |
| 26 | protected $request; |
| 27 | |
| 28 | /** |
| 29 | * @var Middleware[] |
| 30 | */ |
| 31 | protected $middleware; |
| 32 | |
| 33 | public function __construct() |
| 34 | { |
| 35 | $this->method = $_SERVER['REQUEST_METHOD']; |
| 36 | $this->query = new Parameters((array)filter_input_array(INPUT_GET)); |
| 37 | $this->request = new Parameters((array)filter_input_array(INPUT_POST)); |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * @param Middleware $middleware |
| 42 | * |
| 43 | * @return self |
| 44 | */ |
| 45 | public function add_middleware(Middleware $middleware): self |
| 46 | { |
| 47 | $this->middleware[] = $middleware; |
| 48 | |
| 49 | $middleware->handle($this); |
| 50 | |
| 51 | return $this; |
| 52 | } |
| 53 | |
| 54 | public function is_request(): bool |
| 55 | { |
| 56 | return $this->request->count() > 0; |
| 57 | } |
| 58 | |
| 59 | public function get_query(): Parameters |
| 60 | { |
| 61 | return $this->query; |
| 62 | } |
| 63 | |
| 64 | public function get_request(): Parameters |
| 65 | { |
| 66 | return $this->request; |
| 67 | } |
| 68 | |
| 69 | public function get_method(): string |
| 70 | { |
| 71 | return $this->method; |
| 72 | } |
| 73 | |
| 74 | public function get_parameters(): Parameters |
| 75 | { |
| 76 | return $this->get_method() === self::METHOD_POST |
| 77 | ? $this->get_request() |
| 78 | : $this->get_query(); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * @param string $key |
| 83 | * @param null $default |
| 84 | * |
| 85 | * @return mixed |
| 86 | */ |
| 87 | public function get($key, $default = null) |
| 88 | { |
| 89 | return $this->get_parameters()->get($key, $default); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * @param string $key |
| 94 | * @param null $default |
| 95 | * @param int $filter |
| 96 | * @param array|int $options |
| 97 | * |
| 98 | * @return mixed |
| 99 | */ |
| 100 | public function filter($key, $default = null, $filter = FILTER_DEFAULT, $options = 0) |
| 101 | { |
| 102 | return $this->get_parameters()->filter($key, $default, $filter, $options); |
| 103 | } |
| 104 | |
| 105 | } |