Handler.php
3.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<?php
namespace AC\Ajax;
use AC\Registerable;
use LogicException;
class Handler implements Registerable
{
public const NONCE_ACTION = 'ac-ajax';
/**
* @var array
*/
protected $params;
/**
* @var string|array
*/
protected $callback;
/**
* @var bool
*/
protected $wp_ajax;
/**
* @var int
*/
protected $priority = 10;
/**
* @param bool|null $wp_ajax Using the WP Ajax endpoint or custom
*/
public function __construct($wp_ajax = null)
{
$this->wp_ajax = $wp_ajax === null;
$this->set_nonce();
}
public function register(): void
{
if ( ! $this->get_action()) {
throw new LogicException('Action parameter is missing.');
}
if ( ! $this->get_callback()) {
throw new LogicException('Callback is missing.');
}
add_action($this->get_action(), $this->get_callback(), $this->priority);
}
public function deregister()
{
remove_action($this->get_action(), $this->get_callback(), $this->priority);
}
/**
* @return string|null
*/
public function get_action()
{
$action = $this->get_param('action');
if ($this->wp_ajax) {
$action = 'wp_ajax_' . $action;
}
return $action;
}
/**
* @param string $action
*
* @return $this
*/
public function set_action($action)
{
$this->params['action'] = $action;
return $this;
}
/**
* @param int $priority
*
* @return Handler
*/
public function set_priority($priority)
{
if ( ! is_int($priority)) {
throw new LogicException('Priority can only be of type integer.');
}
$this->priority = $priority;
return $this;
}
/**
* @return int
*/
public function get_priority()
{
return $this->priority;
}
/**
* @param string|array $callback
*
* @return $this
*/
public function set_callback($callback)
{
$this->callback = $callback;
return $this;
}
/**
* @return array|string
*/
public function get_callback()
{
return $this->callback;
}
/**
* @param null|string $nonce
*
* @return $this
*/
public function set_nonce($nonce = null)
{
if (null === $nonce) {
$nonce = wp_create_nonce(self::NONCE_ACTION);
}
$this->params['_ajax_nonce'] = $nonce;
return $this;
}
/**
* @return $this
*/
public function unset_nonce()
{
unset($this->params['_ajax_nonce']);
return $this;
}
/**
* @param string $action
*/
public function verify_request($action = null)
{
if (null === $action) {
$action = self::NONCE_ACTION;
}
check_ajax_referer($action);
}
/**
* @return array
*/
public function get_params()
{
return $this->params;
}
/**
* @param $key
*
* @return mixed|null
*/
public function get_param($key)
{
if ( ! array_key_exists($key, $this->params)) {
return null;
}
return $this->params[$key];
}
/**
* @param array $params
*
* @return $this
*/
public function set_params(array $params)
{
foreach ($params as $key => $value) {
$this->set_param($key, $value);
}
return $this;
}
/**
* @param string $key
* @param mixed $value
*
* @return $this
*/
public function set_param($key, $value)
{
switch ($key) {
case 'action':
$this->set_action($value);
break;
case 'nonce':
$this->set_nonce($value);
break;
default:
$this->params[$key] = $value;
}
return $this;
}
}