-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathApiFile.php
More file actions
432 lines (383 loc) · 12.7 KB
/
Copy pathApiFile.php
File metadata and controls
432 lines (383 loc) · 12.7 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
<?php
declare(strict_types=1);
/*
* PHP version 7.1
*
* @copyright Copyright (c) 2012-2017 EELLY Inc. (https://www.eelly.com)
* @link https://api.eelly.com
* @license 衣联网版权所有
*/
namespace Eelly\DevTools\BuildFile;
/**
* Api生成类
*
* @author eellytools<localhost.shell@gmail.com>
*/
class ApiFile extends File
{
/**
* sdk目录
*
* @var string
*/
protected $sdkDir = 'eelly/eelly-sdk-php/src/';
/**
* service目录
*
* @var string
*/
protected $serviceDir= '';
/**
* api目录
*
* @var string
*/
protected $apiDir = '';
/**
* sdk命名空间
*
* @var string
*/
protected $sdkNamespace = 'Eelly\\SDK\\';
/**
* service目录
*
* @var string
*/
protected $serviceNamespace = '';
/**
* api目录
*
* @var string
*/
protected $apiNamespace = '';
/**
* 导入的命名空间
*
* @var array
*/
protected $useNamespace = [];
/**
* 模块名称
*
* @var string
*/
protected $moduleName = '';
/**
* api名称
*
* @var string
*/
protected $apiName = '';
/**
* logic目录信息
*/
protected $logicDirInfo = [];
/**
* service名称
*
* @var string
*/
protected $serviceName = '';
/**
* api构建
*
* @param string $moduleName
* @param array $logicDirInfo
*/
public function run(string $moduleName, array $logicDirInfo): void
{
$this->moduleName = $moduleName;
$this->sdkDir .= ucfirst($this->moduleName);
$this->serviceDir = $this->sdkDir . '/Service';
$this->apiDir = $this->sdkDir . '/Api';
$this->serviceNamespace = $this->sdkNamespace . ucfirst($this->moduleName) . '\\Service\\';
$this->apiNamespace = $this->sdkNamespace . ucfirst($this->moduleName) . '\\Api';
$this->logicDirInfo = $logicDirInfo;
if(!is_dir($this->apiDir)){
mkdir($this->apiDir, 0755, true);
}
$this->buildApiFile();
}
/**
* 设置api导入的命名空间
*
* @param array $namespace
*/
private function setUseNamespace($namespace): void
{
if(is_string($namespace)){
!in_array($namespace, $this->useNamespace) && $this->useNamespace[] = $namespace;
}elseif(is_array($namespace)){
$this->useNamespace = array_unique(array_merge($this->useNamespace, $namespace));
}
}
/**
* 生成api文件
*
* @return string
*/
private function buildApiFile()
{
if(!is_dir($this->serviceDir)){
echo $this->serviceDir . '目录不存在,生成Api失败...' . PHP_EOL;
return '';
}
$dirInfo = new \DirectoryIterator($this->serviceDir);
$templates = $this->getTemplateFile('Base');
foreach($dirInfo as $file){
if(!$file->isDot() && $file->isFile()){
$apiImplements = strchr($file->getFilename(), '.', true);
$this->apiName = strtr($apiImplements, ['Interface' => '']);
$this->buildLogicFile($this->apiName, $apiImplements, $templates);
$apiPatn = $this->apiDir . '/' . $this->apiName . $this->fileExt;
!is_file($apiPatn) && file_put_contents($apiPatn, $this->getApiFileCode($apiImplements, $templates));
}
}
}
/**
* 获取api文件code
*
* @param string $apiImplements
* @param string $templates
* @return string
*/
private function getApiFileCode(string $apiImplements, string $templates): string
{
$this->initUseNamespace('Api');
$interfaceName = $this->serviceNamespace . $apiImplements;
$this->setUseNamespace($interfaceName);
$interfaceReflection = new \ReflectionClass($interfaceName);
$methods = $interfaceReflection->getMethods();
// 获取api需生成的方法code
$classBody = $this->getApiMethodCode($methods);
$namespace = $this->getNamespace($this->apiNamespace);
$useNamespace = $this->getUseNamespace($this->useNamespace);
$className = $this->getClassName($this->apiName, '', [$apiImplements]);
return sprintf($templates, $namespace, $useNamespace, $className, '', $classBody);
}
/**
* 获取api方法code
*
* @param array $methods
* @param boole $isLogic
* @return string
*/
private function getApiMethodCode(array $methods, bool $isLogic = false): string
{
$methodBuild = [];
foreach($methods as $method){
$methodDoc = $method->getDocComment();
if($isLogic){
$hashName = strtolower(str_replace(['\\', 'Logic/', 'Logic'], ['/'], $this->serviceName)). '/' . $method->getName();
$descriptions = !empty($methodDoc) ? $this->getMethodDescription($methodDoc) : [];
$this->addPermission($hashName, $descriptions);
//$this->eellyAcl->addPermission($descriptions['method'], $hashName, $this->serviceName);
}
$methodBuild[] = [
'document' => $methodDoc,
'modifier' => \Reflection::getModifierNames($method->getModifiers())[1],
'name' => $method->getName(),
'params' => $this->getMethodParams($method->getParameters()),
'return' => ($method->getReturnType() instanceof \ReflectionType) ? $method->getReturnType()->getName() : '',
];
}
return $this->getMethodCode($methodBuild, $isLogic);
}
/**
* 获取方法参数
*
* @param array $params
* @return array
*/
private function getMethodParams(array $params): array
{
$methodParams = [];
foreach($params as $param){
$methodParams[] = [
'name' => $param->getName(),
'position'=> $param->getPosition(),
'type' => ($param->getType() instanceof \ReflectionNamedType) ? $param->getType()->getName() : '',
'hasDefaultVal' => $param->isDefaultValueAvailable(),
'defaultVal' => $param->isDefaultValueAvailable() ? $param->getDefaultValue() : '',
];
}
return $methodParams;
}
/**
* 获取方法code
*
* @param array $methods
* @param boole $isLogic
* @return string
*/
private function getMethodCode(array $methods, bool $isLogic): string
{
$str = '';
foreach($methods as $method){
$paramCode = $this->getMethodParamCode($method['params']);
$returnType = !empty($method['return']) ? $this->checkParamType($method['return']) : 'void';
$methodBody = $isLogic ? '' : $this->getMethodBodyCode($method['name'], $method['params']);
$str .= <<<EOF
{$method['document']}
{$method['modifier']} function {$method['name']}{$paramCode}: {$returnType}
{
{$methodBody}
}\n\n
EOF;
}
return $str;
}
/**
* 获取方法参数的code
*
* @param array $params
* @return string
*/
private function getMethodParamCode(array $params): string
{
$str = '(';
foreach($params as $param){
!empty($param['type']) && $str .= $this->checkParamType($param['type']) . ' ';
$str .= '$' . $param['name'];
$param['hasDefaultVal'] && $str .= ' = ' . $param['defaultVal'];
$str .= ',';
}
return rtrim($str, ',') . ')';
}
/**
* 获取方法体code
*
* @param string $methodName
* @param array $params
* @return string
*/
private function getMethodBodyCode(string $methodName, array $params): string
{
$uri = strtolower($this->moduleName) . '/' . strtolower($this->apiName);
$args = '';
if(!empty($params)){
$args = ', ' . array_reduce($params, function($str, $val){
return $str .= '$' . $val['name'] . ', ';
});
$args = rtrim((string)$args, ', ');
}
return <<<EOF
return EellyClient::request('{$uri}', '{$methodName}'{$args});
EOF;
}
/**
* 验证参数类型
*
* @param string $paramType
* @return string
*/
private function checkParamType(string $paramType): string
{
if(false !== strpos($paramType, '\\')){
$this->setUseNamespace([$paramType]);
$offset = strrpos($paramType, '\\');
$paramType = substr($paramType, $offset + 1);
}
return $paramType;
}
/**
* 生成logic文件
*
* @param string $apiName
* @param string $apiImplements
* @param string $templates
*/
private function buildLogicFile(string $apiName, string $apiImplements, string $templates): void
{
$className = $apiName . 'Logic';
$this->serviceName = $this->logicDirInfo['namespace'] . '\\' . $className;
$this->eellyAcl->addModuleService($this->serviceName, $this->moduleName);
$classPath = $this->logicDirInfo['path'] . '/' . $className . $this->fileExt;
!file_exists($classPath) && file_put_contents($classPath, $this->getLogicFileCode($className, $apiImplements, $templates));
}
/**
* 获取logic文件的code
*
* @param string $className
* @param string $apiImplements
* @param string $templates
* @return string
*/
private function getLogicFileCode(string $className, string $apiImplements, string $templates): string
{
$this->initUseNamespace('Logic');
$interfaceName = $this->serviceNamespace . $apiImplements;
$this->setUseNamespace([$interfaceName, 'Eelly\\Mvc\\LogicController']);
$interfaceReflection = new \ReflectionClass($interfaceName);
$methods = $interfaceReflection->getMethods();
// 获取api需生成的方法code
$classBody = $this->getApiMethodCode($methods, true);
$namespace = $this->getNamespace($this->logicDirInfo['namespace']);
$useNamespace = $this->getUseNamespace($this->useNamespace);
$className = $this->getClassName($className, 'LogicController', [$apiImplements]);
return sprintf($templates, $namespace, $useNamespace, $className, '', $classBody);
}
/**
* 初始化导入的命名空间
*
* @param string $type
*/
private function initUseNamespace(string $type): void
{
$this->useNamespace = 'Api' === $type ? ['Eelly\SDK\EellyClient'] : [];
}
/**
* 获取方法描述
*
* @param string $docComment
* @return array
*/
private function getMethodDescription(string $docComment): array
{
if(empty($docComment)){
return '';
}
$methodDescription = $paramDescription = $paramArr = $returnArr = [];
$description= strchr($docComment, '.', true);
$methodDescription['method'] = !empty($description) ? strtr($description, ['/' => '', PHP_EOL => '', '*' => '', ' ' => '']) : '';
preg_match_all('/@param.*/', $docComment, $paramArr);
!empty($paramArr[0]) && array_walk($paramArr[0], function($val) use(&$paramDescription){
$paramDescription[] = explode(' ', $val);
});
$methodDescription['param'] = $paramDescription;
preg_match('/@return\s+.*/', $docComment, $returnArr);
isset($returnArr[0]) && $methodDescription['return']['dto'] = strchr($returnArr[0], ' ');
preg_match('/@returnExample\((.*)\)/', $docComment, $returnArr);
$methodDescription['return']['example'] = $returnArr[1] ?? '';
return $methodDescription;
}
/**
* 添加到权限表
*
* @param string $hashName
* @param array $descriptions
*/
private function addPermission(string $hashName, array $descriptions): void
{
$requestData = $returnData = [];
$this->eellyAcl->addPermission($descriptions['method'] ?? '', $hashName, $this->serviceName);
if(isset($descriptions['param'])){
foreach ($descriptions['param'] as $paramId => $param) {
$requestData[] = [
'param_id' => $paramId,
'type' => $param[1] ?? '',
'comment' => $param[3] ?? '',
'created_time' => time()
];
}
}
$this->eellyAcl->addPermissionRequest($requestData, $hashName);
$returnData = [
'dto_name' => $descriptions['return']['dto'] ?? '',
'return_example' => $descriptions['return']['example'] ?? '',
'created_time' => time(),
];
$this->eellyAcl->addPermissionReturn($returnData, $hashName);
}
}