-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApi.php
More file actions
456 lines (417 loc) · 12.3 KB
/
Api.php
File metadata and controls
456 lines (417 loc) · 12.3 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
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
<?php
declare(strict_types=1);
namespace TypechoPlugin\ZaoApi;
use Widget\Base;
use TypechoPlugin\ZaoApi\Route;
use TypechoPlugin\ZaoApi\Util\Http;
// Posts
use TypechoPlugin\ZaoApi\Api\Contents\Posts\Query as PostsQuery;
use TypechoPlugin\ZaoApi\Api\Contents\Posts\Mutation as PostsMutation;
// Pages
use TypechoPlugin\ZaoApi\Api\Contents\Pages\Query as PagesQuery;
use TypechoPlugin\ZaoApi\Api\Contents\Pages\Mutation as PagesMutation;
// Meta - Categories
use TypechoPlugin\ZaoApi\Api\Meta\Categories\Mutation as CategoriesMutation;
use TypechoPlugin\ZaoApi\Api\Meta\Categories\Query as CategoriesQuery;
// Meta - Tags
use TypechoPlugin\ZaoApi\Api\Meta\Tags\Query as TagQuery;
use TypechoPlugin\ZaoApi\Api\Meta\Tags\Mutation as TagMutation;
// Users
use TypechoPlugin\ZaoApi\Api\User\Query as UserQuery;
use TypechoPlugin\ZaoApi\Api\User\Mutation as UserMutation;
use TypechoPlugin\ZaoApi\Api\Action\Login as UserLogin;
use TypechoPlugin\ZaoApi\Api\Action\Logout as UserLogout;
use TypechoPlugin\ZaoApi\Api\Action\Register as UserRegister;
// Comments
use TypechoPlugin\ZaoApi\Api\Comments\Query as CmtQuery;
use TypechoPlugin\ZaoApi\Api\Comments\Mutation as CmtMutation;
if (!defined('__TYPECHO_ROOT_DIR__')) {
exit;
}
class Api extends Base implements \Widget\ActionInterface
{
/** 统一解析 HTTP 方法(考虑 _method/Override 与 HEAD→GET) */
private function resolveMethod(): string
{
$r = $this->request;
$method = strtoupper((string)($r->getServer('REQUEST_METHOD') ?? 'GET'));
$override = $r->get('_method') ?: $r->getServer('HTTP_X_HTTP_METHOD_OVERRIDE');
if ($override) $method = strtoupper((string)$override);
if ($method === 'HEAD') $method = 'GET';
return $method;
}
// ========= Posts =========
#[Route(name: 'posts_index', path: '/posts')]
public function postsIndex()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: GET, POST, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'GET':
(new PostsQuery())->list($this->request);
return;
case 'POST':
(new PostsMutation())->create($this->request);
return;
default:
header('Allow: GET, POST, OPTIONS');
Http::err('method_not_allowed', '只允许 GET, POST', 405);
}
}
#[Route(name: 'posts_show', path: '/posts/[cid]')]
public function postsShow()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: GET, PUT, PATCH, DELETE, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'GET':
(new PostsQuery())->show($this->request);
return;
case 'PUT':
case 'PATCH':
(new PostsMutation())->update($this->request);
return;
case 'DELETE':
(new PostsMutation())->delete($this->request);
return;
default:
header('Allow: GET, PUT, PATCH, DELETE, OPTIONS');
Http::err('method_not_allowed', '只允许 GET, PUT, PATCH, DELETE', 405);
}
}
// ========= Pages =========
#[Route(name: 'pages_collection', path: '/pages')]
public function pagesCollection()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: GET, POST, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'GET':
(new PagesQuery())->show($this->request);
return;
case 'POST':
(new PagesMutation())->create($this->request);
return;
default:
header('Allow: GET, POST, OPTIONS');
Http::err('method_not_allowed', '只允许 GET, POST', 405);
}
}
#[Route(name: 'pages_resource', path: '/pages/[cid]')]
public function pagesResource()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: GET, PUT, PATCH, DELETE, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'GET':
(new PagesQuery())->show($this->request);
return;
case 'PUT':
case 'PATCH':
(new PagesMutation())->update($this->request);
return;
case 'DELETE':
(new PagesMutation())->delete($this->request);
return;
default:
header('Allow: GET, PUT, PATCH, DELETE, OPTIONS');
Http::err('method_not_allowed', '只允许 GET, PUT, PATCH, DELETE', 405);
}
}
// ========= Categories =========
#[Route(name: 'categories_collection', path: '/categories')]
public function categoriesCollection()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: GET, POST, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'GET':
(new CategoriesQuery())->list($this->request);
return;
case 'POST':
(new CategoriesMutation())->create($this->request);
return;
// 补充DELETE方法处理(关键!)
case 'DELETE':
(new CategoriesMutation())->delete($this->request);
return;
default:
header('Allow: GET, POST, OPTIONS');
Http::err('method_not_allowed', '只允许 GET, POST, DELETE', 405);
}
}
#[Route(name: 'categories_resource', path: '/categories/[mid]')]
public function categoriesResource()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: GET, PUT, PATCH, DELETE, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'GET':
(new CategoriesQuery())->show($this->request);
return;
case 'PUT':
case 'PATCH':
(new CategoriesMutation())->update($this->request);
return;
case 'DELETE':
(new CategoriesMutation())->delete($this->request);
return;
default:
header('Allow: GET, PUT, PATCH, DELETE, OPTIONS');
Http::err('method_not_allowed', '只允许 GET, PUT, PATCH, DELETE', 405);
}
}
// ========= Tags =========
#[Route(name: 'tags_collection', path: '/tags')]
public function tagsCollection()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: GET, POST, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'GET':
(new TagQuery())->list($this->request);
return;
case 'POST':
(new TagMutation())->create($this->request);
return;
// 补充DELETE方法
case 'DELETE':
(new TagMutation())->delete($this->request);
return;
default:
header('Allow: GET, POST, OPTIONS');
Http::err('method_not_allowed', '只允许 GET, POST', 405);
}
}
#[Route(name: 'tags_resource', path: '/tags/[mid]')]
public function tagsResource()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: GET, PUT, PATCH, DELETE, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'GET':
(new TagQuery())->show($this->request);
return;
case 'PUT':
case 'PATCH':
(new TagMutation())->update($this->request);
return;
case 'DELETE':
(new TagMutation())->delete($this->request);
return;
default:
header('Allow: GET, PUT, PATCH, DELETE, OPTIONS');
Http::err('method_not_allowed', '只允许 GET, PUT, PATCH, DELETE', 405);
}
}
// ========= Comments =========
#[Route(name: 'comments_collection', path: '/comments')]
public function commentsCollection()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: GET, POST, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'GET':
(new CmtQuery())->list($this->request);
return;
case 'POST':
(new CmtMutation())->create($this->request);
return;
default:
header('Allow: GET, POST, OPTIONS');
Http::err('method_not_allowed', '只允许 GET, POST', 405);
}
}
#[Route(name: 'comments_resource', path: '/comments/[coid]')]
public function commentsResource()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: GET, PUT, PATCH, DELETE, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'GET':
(new CmtQuery())->show($this->request);
return;
case 'PUT':
case 'PATCH':
(new CmtMutation())->update($this->request);
return;
case 'DELETE':
(new CmtMutation())->delete($this->request);
return;
default:
header('Allow: GET, PUT, PATCH, DELETE, OPTIONS');
Http::err('method_not_allowed', '只允许 GET, PUT, PATCH, DELETE', 405);
}
}
// ========= Users =========
// 用户列表/创建 - GET /users
#[Route(name: 'users_index', path: '/users')]
public function usersIndex()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: GET, POST, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'GET':
(new UserQuery())->list($this->request);
return;
case 'POST':
(new UserMutation())->create($this->request);
return;
default:
header('Allow: GET, OPTIONS');
Http::err('method_not_allowed', '只允许 GET, POST', 405);
}
}
// 用户登录 - POST /users/login
#[Route(name: 'users_login', path: '/users/login')]
public function usersLogin()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: POST, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'POST':
(new UserLogin())->login($this->request);
return;
default:
header('Allow: POST, OPTIONS');
Http::err('method_not_allowed', '只允许 POST', 405);
}
}
// 用户注册 - POST /users/register
#[Route(name: 'users_register', path: '/users/register')]
public function usersRegister()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: POST, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'POST':
UserRegister::alloc()->register($this->request);
return;
default:
header('Allow: POST, OPTIONS');
Http::err('method_not_allowed', '只允许 POST', 405);
}
}
#[Route(name: 'users_logout', path: '/users/logout')]
public function usersLogout()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: POST, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'POST':
(new UserLogout())->logout($this->request);
return;
default:
header('Allow: POST, OPTIONS');
Http::err('method_not_allowed', '只允许 POST', 405);
}
}
// 用户详细 - GET /users/[uid] (更新及删除)
#[Route(name: 'users_show', path: '/users/[uid]')]
public function usersShow()
{
$m = $this->resolveMethod();
if ($m === 'OPTIONS') {
header('Allow: GET, PUT, PATCH, DELETE, OPTIONS');
http_response_code(204);
return;
}
switch ($m) {
case 'GET':
(new UserQuery())->show($this->request); // 获取用户详细信息
return;
case 'PUT':
case 'PATCH':
(new UserMutation())->update($this->request); // 更新用户信息
return;
case 'DELETE':
(new UserMutation())->delete($this->request); // 删除用户
return;
default:
header('Allow: GET, PUT, PATCH, DELETE, OPTIONS');
Http::err('method_not_allowed', '只允许 GET, PUT, PATCH, DELETE', 405);
}
}
/**
* 用户密码重置 - PUT/PATCH /users/[uid]/password
* 专用路由:仅处理密码重置,与用户信息更新分离
*/
#[Route(name: 'users_reset_password', path: '/users/[uid]/password')]
public function usersResetPassword()
{
$m = $this->resolveMethod();
// OPTIONS 预检请求处理(跨域必备)
if ($m === 'OPTIONS') {
header('Allow: PUT, PATCH, OPTIONS');
http_response_code(204);
return;
}
// 仅允许 PUT/PATCH 方法(修改密码属于资源更新)
switch ($m) {
case 'PUT':
case 'PATCH':
(new UserMutation())->resetPassword($this->request);
return;
default:
header('Allow: PUT, PATCH, OPTIONS');
Http::err('method_not_allowed', '只允许 PUT, PATCH', 405);
}
}
public function action() {}
}