-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathwp-api-swaggerui.php
459 lines (378 loc) · 12.8 KB
/
wp-api-swaggerui.php
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
<?php
/**
* WP API SwaggerUI
*
* @package WP API SwaggerUI
* @author Agus Suroyo
* @copyright 2019 Agus Suroyo
* @license GPL-2.0-or-later
*
* @wordpress-plugin
* Plugin Name: WP API SwaggerUI
* Description: WordPress REST API with Swagger UI.
* Version: 1.1.2
* Author: Agus Suroyo
* License: GPL v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/
global $wp_version;
if (version_compare(PHP_VERSION, '5.4', '<') || version_compare($wp_version, '4.7', '<')) {
return;
}
require_once __DIR__ . DIRECTORY_SEPARATOR . 'swaggerbag.php';
require_once __DIR__ . DIRECTORY_SEPARATOR . 'swaggerauth.php';
require_once __DIR__ . DIRECTORY_SEPARATOR . 'swaggertemplate.php';
if (is_admin()) {
require_once __DIR__ . DIRECTORY_SEPARATOR . 'swaggersetting.php';
}
class WP_API_SwaggerUI
{
public function routes()
{
$base = self::rewriteBaseApi();
add_rewrite_tag('%swagger_api%', '([^&]+)');
add_rewrite_rule('^' . $base . '/docs/?', 'index.php?swagger_api=docs', 'top');
add_rewrite_rule('^' . $base . '/schema/?', 'index.php?swagger_api=schema', 'top');
}
public static function rewriteBaseApi()
{
return apply_filters('swagger_api_rewrite_api_base', 'rest-api');
}
public static function pluginUrl($path = null)
{
return plugin_dir_url(__FILE__) . $path;
}
public static function pluginPath($path)
{
return plugin_dir_path(__FILE__) . $path;
}
public function swagger()
{
if (get_query_var('swagger_api') !== 'schema') {
return;
}
global $wp_version;
$response = array(
'swagger' => '2.0',
'info' => array(
'title' => get_option('blogname') . ' API',
'description' => get_option('blogdescription'),
'version' => $wp_version,
'contact' => array(
'email' => get_option('admin_email')
)
),
'host' => $this->getHost(),
'basePath' => $this->getBasePath(),
'tags' => [],
'schemes' => $this->getSchemes(),
'paths' => $this->getPaths(),
'securityDefinitions' => $this->securityDefinitions()
);
wp_send_json($response);
}
public function getHost()
{
$host = parse_url(home_url(), PHP_URL_HOST);
$port = parse_url(home_url(), PHP_URL_PORT);
if ($port) {
if ($port != 80 && $port != 443) {
$host = $host . ':' . $port;
}
}
return $host;
}
public function getBasePath()
{
$path = parse_url(home_url(), PHP_URL_PATH);
return rtrim($path, '/') . '/' . ltrim(rest_get_url_prefix(), '/');
}
public function getSchemes()
{
$schemes = [];
if (is_ssl()) {
$schemes[] = 'https';
}
$schemes[] = 'http';
return $schemes;
}
public static function getNameSpace()
{
return '/' . trim(get_option('swagger_api_basepath', '/wp/v2'), '/');
}
public static function getCLeanNameSpace()
{
return trim(self::getNameSpace(), '/');
}
public function getRawPaths()
{
$routes = rest_get_server()->get_routes();
$basepath = self::getNameSpace();
$raw_paths = [];
foreach ($routes as $route => $value) {
if (mb_strpos($route, $basepath) === 0 && ($basepath !== $route)) {
$raw_paths[$route] = $value;
}
}
return $raw_paths;
}
public function getPaths()
{
$raw = $this->getRawPaths();
$paths = [];
foreach ($raw as $endpoint => $args) {
$ep = $this->convertEndpoint($endpoint);
$paths[$ep] = $this->getMethodsFromArgs($ep, $endpoint, $args);
}
return $paths;
}
public function convertEndpoint($endpoint)
{
if (mb_strpos($endpoint, '(?P<') !== false) {
$endpoint = preg_replace_callback('/\(\?P\<(.*?)>(.*)\)+/', function ($match) use ($endpoint) {
return '{' . $match[1] . '}';
}, $endpoint);
}
return $endpoint;
}
public function getDefaultTagsFromEndpoint($endpoint)
{
$namespace = self::getNameSpace();
$ep = preg_replace_callback('/^' . preg_quote($namespace, '/') . '/', function () {
return '';
}, $endpoint);
$parts = explode('/', trim($ep, '/'));
return isset($parts[0]) ? [$parts[0]] : [];
}
public function getMethodsFromArgs($ep, $endpoint, $args)
{
$path_parameters = $this->getParametersFromEndpoint($endpoint);
$methods = [];
$tags = $this->getDefaultTagsFromEndpoint($endpoint);
foreach ($args as $arg) {
$all_parameters = $this->getParametersFromArgs(
$ep,
isset($arg['args']) ? $arg['args'] : [],
isset($arg['methods']) ? $arg['methods'] : []
);
foreach ($arg['methods'] as $method => $bool) {
$mtd = mb_strtolower($method);
$methodEndpoint = $mtd . str_replace('/', '_', $ep);
$parameters = isset($all_parameters[$mtd]) ? $all_parameters[$mtd] : [];
// Building parameters.
$existing_names = array_map(function ($param) {
return $param['name'];
}, $parameters);
foreach ($path_parameters as $path_params) {
if (!in_array($path_params['name'], $existing_names, true)) {
$parameters[] = $path_params;
}
}
$produces = ['application/json'];
if (isset($arg['produces'])) {
$produces = (array) $arg['produces'];
}
$consumes = [
'application/x-www-form-urlencoded',
'multipart/form-data',
];
if (isset($arg['consumes'])) {
$consumes = (array) $arg['consumes'];
}
if ($arg['accept_json']) {
$consumes[] = ['application/json'];
}
if (isset($args['tags']) && is_array($args['tags'])) {
$tags = $args['tags'];
}
$responses =$this->getResponses($methodEndpoint);
if (isset($arg['responses'])) {
$responses = $arg['responses'];
}
$conf = array(
'tags' => $tags,
'summary' => isset($arg['summary']) ? $arg['summary'] : '',
'description' => isset($arg['description']) ? $arg['description'] : '',
'consumes' => $consumes,
'produces' => $produces,
'parameters' => $parameters,
'security' => $this->getSecurity(),
'responses' => $responses
);
$methods[$mtd] = $conf;
}
}
return $methods;
}
public function getParametersFromEndpoint($endpoint)
{
$path_params = [];
if (mb_strpos($endpoint, '(?P<') !== false && (preg_match_all('/\(\?P\<(.*?)>(.*)\)/', $endpoint, $matches))) {
foreach ($matches[1] as $order => $match) {
$type = strpos(mb_strtolower($matches[2][$order]), '\d') !== false ? 'integer' : 'string';
$params = array(
'name' => $match,
'in' => 'path',
'description' => '',
'required' => true,
'type' => $type,
);
if ($type === 'integer') {
$params['format'] = 'int64';
}
$path_params[$match] = $params;
}
}
return $path_params;
}
public function detectIn($param, $mtd, $endpoint, $detail)
{
if (isset($detail['in'])) {
return $detail['in'];
}
switch ($mtd) {
case strpos($endpoint, '{' . $param . '}') !== false:
$in = 'path';
break;
case 'post':
$in = 'formData';
break;
default:
$in = 'query';
break;
}
return $in;
}
public function parseTypeObjectToString($types)
{
if (is_array($types)) {
foreach ($types as $type) {
return $this->parseTypeObjectToString($type);
}
}
return $types === 'object' ? 'string' : $types;
}
public function buildParams($param, $mtd, $endpoint, $detail)
{
/**
* When the type is object, SwaggerUI by default add empty `{}` to parameter value
* It's annoying so need to convert to just `string`
*/
$type = $this->parseTypeObjectToString($detail['type']);
if (is_array($type) && isset($type[0])) {
$type = $type[0];
}
if (empty($type)) {
if (strpos($param, '_id') !== false) {
$type = 'integer';
} elseif (strtolower($param) === 'id') {
$type = 'integer';
} else {
$type = 'string';
}
}
$in = $this->detectIn($param, $mtd, $endpoint, $detail);
$required = !empty($detail['required']);
if ('path' === $in) {
$required = true;
}
$params = array(
'name' => $param,
'in' => $in,
'description' => isset($detail['description']) ? $detail['description'] : '',
'required' => $required,
'type' => $type
);
if (isset($detail['items'])) {
$params['items'] = array(
'type' => isset($detail['items']['type']) ? $detail['items']['type'] : 'string'
);
} elseif (isset($detail['enum'])) {
$params['type'] = 'array';
$items = array(
'type' => $detail['type'],
'enum' => $detail['enum']
);
if (isset($detail['default'])) {
$items['default'] = $detail['default'];
}
$params['items'] = $items;
$params['collectionFormat'] = 'multi';
}
if (isset($detail['maximum'])) {
$params['maximum'] = $detail['maximum'];
}
if (isset($detail['minimum'])) {
$params['minimum'] = $detail['minimum'];
}
if (isset($detail['format'])) {
$params['format'] = $detail['format'];
} elseif ($detail['type'] === 'integer') {
$params['format'] = 'int64';
}
if (isset($detail['schema'])) {
$params['schema'] = $detail['schema'];
}
return $params;
}
public function getParametersFromArgs($endpoint = '', $args = [], $methods = [])
{
$parameters = [];
foreach ($args as $param => $detail) {
foreach ($methods as $method => $bool) {
$mtd = mb_strtolower($method);
if (!isset($parameters[$mtd])) {
$parameters[$mtd] = [];
}
$parameters[$mtd][] = $this->buildParams($param, $mtd, $endpoint, $detail + ['type' => 'string']);
}
}
return $parameters;
}
public function getSecurity()
{
$raw = $this->securityDefinitions();
if (!is_array($raw)) {
$raw = [];
}
$securities = [];
foreach ($raw as $key => $name) {
$securities[] = array(
$key => []
);
}
return $securities;
}
public function getResponses( $methodEndpoint ) {
return apply_filters('swagger_api_responses_' . $methodEndpoint, array(
'200' => ['description' => 'OK'],
'404' => ['description' => 'Not Found'],
'400' => ['description' => 'Bad Request']
));
}
public function securityDefinitions()
{
return apply_filters('swagger_api_security_definitions', null);
}
public function flushActivate()
{
$this->routes();
flush_rewrite_rules();
}
public function flushDeactivate()
{
flush_rewrite_rules();
}
public static function debug($params = null)
{
echo '<pre>';
print_r($params);
echo '</pre>';
die();
}
}
$swagerui = new WP_API_SwaggerUI();
register_activation_hook(__FILE__, [$swagerui, 'flushActivate']);
register_deactivation_hook(__FILE__, [$swagerui, 'flushDeactivate']);
add_action('init', [$swagerui, 'routes']);
add_action('wp', [$swagerui, 'swagger']);