控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Parser.php 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Yzncms [ 御宅男工作室 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2018 http://yzncms.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 御宅男 <530765310@qq.com>
  10. // +----------------------------------------------------------------------
  11. // +----------------------------------------------------------------------
  12. // | 接口管理
  13. // +----------------------------------------------------------------------
  14. namespace addons\apidoc\library;
  15. use think\Db as Db5;
  16. use think\facade\Db;
  17. class Parser
  18. {
  19. protected $config = [];
  20. /**
  21. * 架构方法 设置参数
  22. * @param array $config 配置参数
  23. */
  24. public function __construct($config = [])
  25. {
  26. $this->config = array_merge($this->config, $config);
  27. }
  28. /**
  29. * 解析class类的注释
  30. * @param string $doc
  31. * @return array
  32. */
  33. public function parseClass($doc = '')
  34. {
  35. if ($doc == '') {
  36. return false;
  37. }
  38. // Get the comment
  39. if (preg_match('#^/\*\*(.*)\*/#s', $doc, $comment) === false) {
  40. return false;
  41. }
  42. $comment = trim($comment[1]);
  43. // Get all the lines and strip the * from the first character
  44. if (preg_match_all('#^\s*\*(.*)#m', $comment, $lines) === false) {
  45. return false;
  46. }
  47. $res = $this->parseClassLines($lines[1]);
  48. return $res;
  49. }
  50. /**
  51. * 解析class类的注释,将每条字符串,解析成key,value对象
  52. * @param $lines
  53. * @return array|bool
  54. */
  55. private function parseClassLines($lines)
  56. {
  57. $desc = [];
  58. foreach ($lines as $line) {
  59. $line = trim($line);
  60. if (empty($line)) {
  61. return false; // Empty line
  62. }
  63. if (strpos($line, '@') === 0) {
  64. if (strpos($line, ' ') > 0) {
  65. // Get the parameter name
  66. $param = substr($line, 1, strpos($line, ' ') - 1);
  67. $value = substr($line, strlen($param) + 2); // Get the value
  68. } else {
  69. $param = substr($line, 1);
  70. $value = '';
  71. }
  72. $desc[$param] = $value;
  73. }
  74. }
  75. return $desc;
  76. }
  77. /**
  78. * 解析控制器方法的注释
  79. * @param string $doc
  80. * @return array
  81. */
  82. public function parseAction($doc = '')
  83. {
  84. if ($doc == '') {
  85. return false;
  86. }
  87. // Get the comment
  88. if (preg_match('#^/\*\*(.*)\*/#s', $doc, $comment) === false) {
  89. return false;
  90. }
  91. $comment = trim($comment[1]);
  92. // Get all the lines and strip the * from the first character
  93. if (preg_match_all('#^\s*\*(.*)#m', $comment, $lines) === false) {
  94. return false;
  95. }
  96. $res = $this->parseActionLines($lines[1]);
  97. return $res;
  98. }
  99. /**
  100. * 解析方法的注释,将每条字符串,解析成key,value对象,并处理
  101. * @param $lines
  102. * @return array|bool
  103. */
  104. private function parseActionLines($lines)
  105. {
  106. $desc = [];
  107. foreach ($lines as $line) {
  108. $line = trim($line);
  109. if (!empty($line)) {
  110. if (strpos($line, '@') === 0) {
  111. if (strpos($line, ' ') > 0) {
  112. // Get the parameter name
  113. $param = substr($line, 1, strpos($line, ' ') - 1);
  114. $value = substr($line, strlen($param) + 2); // Get the value
  115. } else {
  116. $param = substr($line, 1);
  117. $value = '';
  118. }
  119. if ($param == 'param') {
  120. $valueObj = $this->formatParam($value);
  121. if (!empty($valueObj['params']) && empty($valueObj['name'])) {
  122. // 只配置参数,没配置name则直接值为参数
  123. if (is_array($valueObj["params"]) && count($valueObj["params"]) > 0) {
  124. // 数组则遍历出来
  125. foreach ($valueObj["params"] as $paramItem) {
  126. $desc[$param][] = $paramItem;
  127. }
  128. } else {
  129. $desc[$param][] = $valueObj["params"];
  130. }
  131. } else if (!empty($valueObj['type']) && $valueObj['type'] === 'tree') {
  132. // 类型为tree的
  133. $childrenField = "children";
  134. if (!empty($valueObj['childrenField'])) {
  135. $childrenField = $valueObj['childrenField'];
  136. }
  137. $childrenDesc = "children";
  138. if (!empty($valueObj['childrenDesc'])) {
  139. $childrenDesc = $valueObj['childrenDesc'];
  140. }
  141. $valueObj['params'][] = array(
  142. 'params' => $valueObj['params'],
  143. 'name' => $childrenField,
  144. 'type' => 'array',
  145. 'desc' => $childrenDesc,
  146. );
  147. $desc[$param][] = $valueObj;
  148. } else {
  149. $desc[$param][] = $valueObj;
  150. }
  151. } else if ($param == 'return') {
  152. $valueObj = $this->formatReturn($value);
  153. if (!empty($valueObj['params']) && empty($valueObj['name'])) {
  154. // 只配置参数,没配置name则直接值为参数
  155. if (is_array($valueObj["params"]) && count($valueObj["params"]) > 0) {
  156. // 数组则遍历出来
  157. foreach ($valueObj["params"] as $paramItem) {
  158. $desc[$param][] = $paramItem;
  159. }
  160. } else {
  161. $desc[$param][] = $valueObj["params"];
  162. }
  163. } else if (!empty($valueObj['type']) && $valueObj['type'] === 'tree') {
  164. // 类型为tree的
  165. $childrenField = "children";
  166. if (!empty($valueObj['childrenField'])) {
  167. $childrenField = $valueObj['childrenField'];
  168. }
  169. $childrenDesc = "children";
  170. if (!empty($valueObj['childrenDesc'])) {
  171. $childrenDesc = $valueObj['childrenDesc'];
  172. }
  173. $valueObj['params'][] = array(
  174. 'params' => $valueObj['params'],
  175. 'name' => $childrenField,
  176. 'type' => 'array',
  177. 'desc' => $childrenDesc,
  178. );
  179. $desc[$param][] = $valueObj;
  180. } else {
  181. $desc[$param][] = $valueObj;
  182. }
  183. } else if ($param == 'header') {
  184. $valueObj = $this->formatHeaders($value);
  185. $desc[$param][] = $valueObj;
  186. } else if ($param == 'addField') {
  187. // 模型指定添加的字段
  188. $valueObj = $this->formatHeaders($value);
  189. $desc[$param][] = $valueObj;
  190. } else {
  191. $desc[$param] = $value;
  192. }
  193. }
  194. }
  195. }
  196. return $desc;
  197. }
  198. // 处理Headers的解析
  199. private function formatHeaders($string)
  200. {
  201. $string = $string . " ";
  202. if (preg_match_all('/(\w+):(.*?)[\s\n]/s', $string, $meatchs)) {
  203. $param = [];
  204. foreach ($meatchs[1] as $key => $value) {
  205. $paramKey = $meatchs[1][$key];
  206. $value = $meatchs[2][$key];
  207. $param[$paramKey] = $value;
  208. }
  209. return $param;
  210. } else {
  211. return '' . $string;
  212. }
  213. }
  214. // 处理Param的解析
  215. private function formatParam($string)
  216. {
  217. $string = $string . " ";
  218. if (preg_match_all('/(\w+):(.*?)[\s\n]/s', $string, $meatchs)) {
  219. $param = [];
  220. foreach ($meatchs[1] as $key => $value) {
  221. $paramKey = $meatchs[1][$key];
  222. $value = $meatchs[2][$key];
  223. if ($paramKey == "params") {
  224. // 处理对象类型
  225. $value = $this->parseObjectLine($value);
  226. } else if ($paramKey == "ref") {
  227. // 处理引用
  228. $value = $this->parseRefLine($value, "param");
  229. $paramKey = "params";
  230. } else if ($paramKey == "field" && !empty($param["params"])) {
  231. // 只取模型指定字段
  232. $param["params"] = $this->filterModelTableField($param["params"], $value, "field");
  233. } else if ($paramKey == "withoutField" && !empty($param["params"])) {
  234. // 排除模型指定字段
  235. $param["params"] = $this->filterModelTableField($param["params"], $value, "withoutField");
  236. }
  237. $param[$paramKey] = $value;
  238. }
  239. return $param;
  240. } else {
  241. return '' . $string;
  242. }
  243. }
  244. // 处理Return的解析
  245. private function formatReturn($string)
  246. {
  247. $string = $string . " ";
  248. if (preg_match_all('/(\w+):(.*?)[\s\n]/s', $string, $meatchs)) {
  249. $param = [];
  250. foreach ($meatchs[1] as $key => $value) {
  251. $paramKey = $meatchs[1][$key];
  252. $value = $meatchs[2][$key];
  253. if ($paramKey == "params") {
  254. // 处理对象类型
  255. $value = $this->parseObjectLine($value);
  256. } else if ($paramKey == "ref") {
  257. // 处理引用
  258. $value = $this->parseRefLine($value, "return");
  259. if (!empty($value) && is_array($value) && count($value) === 1) {
  260. if (!empty($value[0]) && !empty($value[0]['params'])) {
  261. $value = $value[0]['params'];
  262. }
  263. }
  264. $paramKey = "params";
  265. } else if ($paramKey == "field" && !empty($param["params"])) {
  266. // 只取模型指定字段
  267. $param["params"] = $this->filterModelTableField($param["params"], $value, "field");
  268. } else if ($paramKey == "withoutField" && !empty($param["params"])) {
  269. // 排除模型指定字段
  270. $param["params"] = $this->filterModelTableField($param["params"], $value, "withoutField");
  271. }
  272. // if ($paramKey == "type" && $value === 'tree') {
  273. // // 数据结构为树形结构
  274. // $value =$param;
  275. // }
  276. $param[$paramKey] = $value;
  277. }
  278. return $param;
  279. } else {
  280. return '' . $string;
  281. }
  282. }
  283. // 解析param参数为对象类型
  284. public function parseObjectLine($string)
  285. {
  286. $string = trim($string);
  287. if (empty($string)) {
  288. return false; // Empty line
  289. }
  290. $string = $string . ",";
  291. if (preg_match_all('/(\w+):(.*?),/s', $string, $meatchs)) {
  292. $param = [];
  293. foreach ($meatchs[1] as $key => $value) {
  294. $paramKey = $meatchs[1][$key];
  295. $value = $meatchs[2][$key];
  296. $param[] = array("name" => $paramKey, "type" => $value);
  297. }
  298. return $param;
  299. } else {
  300. return '' . $string;
  301. }
  302. }
  303. // 解析ref引用的数据,server、model、引用定义
  304. public function parseRefLine($string, $paramKey = "")
  305. {
  306. $string = trim($string);
  307. if (empty($string)) {
  308. return false; // Empty line
  309. }
  310. $value = $string;
  311. if (strpos($string, 'app\\') !== false && strpos($string, 'model\\') === false) {
  312. // 引用服务
  313. $value = $this->parseServer($string, $paramKey);
  314. if (!empty($paramKey) && !empty($value) && !empty($value[$paramKey])) {
  315. // 存在指定取值的key,去server注释中指定的值
  316. $value = $value[$paramKey];
  317. }
  318. } else if (strpos($string, 'model\\') !== false) {
  319. // 引用模型
  320. $value = $this->parseModel($string);
  321. } else if (strpos($string, 'definitions\\') !== false) {
  322. // 引用定义
  323. $value = $this->parseDefinitions($string);
  324. if (!empty($paramKey) && !empty($value) && !empty($value[$paramKey])) {
  325. // 存在指定取值的key,去server注释中指定的值
  326. $value = $value[$paramKey];
  327. }
  328. }
  329. return $value;
  330. }
  331. // 解析服务的注释
  332. public function parseServer($path, $paramKey)
  333. {
  334. $modelClassArr = explode("\\", $path);
  335. $modelActionName = $modelClassArr[count($modelClassArr) - 1];
  336. $modelClassName = $modelClassArr[count($modelClassArr) - 2];
  337. unset($modelClassArr[count($modelClassArr) - 1]);
  338. $modelClassPath = implode("\\", $modelClassArr);
  339. $classReflect = new \ReflectionClass($modelClassPath);
  340. $modelActionName = trim($modelActionName);
  341. $methodAction = $classReflect->getMethod($modelActionName);
  342. $doc_str = $methodAction->getDocComment();
  343. $action_doc = $this->parseParam($doc_str);
  344. return $action_doc;
  345. }
  346. // 解析模型的注释
  347. public function parseModel($path)
  348. {
  349. $modelClassArr = explode("\\", $path);
  350. $modelActionName = $modelClassArr[count($modelClassArr) - 1];
  351. $modelClassName = $modelClassArr[count($modelClassArr) - 2];
  352. unset($modelClassArr[count($modelClassArr) - 1]);
  353. $modelClassPath = implode("\\", $modelClassArr);
  354. $classReflect = new \ReflectionClass($modelClassPath);
  355. $modelActionName = trim($modelActionName);
  356. $methodAction = $classReflect->getMethod($modelActionName);
  357. //获取模型方法的注释
  358. $doc_str = $methodAction->getDocComment();
  359. //解析注释
  360. $action_doc = $this->parseParam($doc_str);
  361. // 获取表字段
  362. $model = $this->getModel($methodAction, $modelClassName);
  363. $table = $this->getTableDocument($model);
  364. //过滤field
  365. if (!empty($action_doc) && !empty($action_doc['field'])) {
  366. $table = $this->filterModelTableField($table, $action_doc['field'], "field");
  367. } else if (!empty($action_doc) && !empty($action_doc['withoutField'])) {
  368. $table = $this->filterModelTableField($table, $action_doc['withoutField'], "withoutField");
  369. }
  370. if (!empty($action_doc) && !empty($action_doc['addField'])) {
  371. $table = array_merge($table, $action_doc['addField']);
  372. }
  373. return $table;
  374. }
  375. // 获取模型
  376. private function getModel($method, $modelClassName)
  377. {
  378. if (!empty($method->class)) {
  379. $relationModelClass = $this->getIncludeClassName($method->class, $modelClassName);
  380. if ($relationModelClass) {
  381. $modelInstance = new $relationModelClass();
  382. return $modelInstance;
  383. } else {
  384. return null;
  385. }
  386. } else {
  387. return null;
  388. }
  389. }
  390. // 过滤模型字段
  391. public function filterModelTableField($params, $keys, $type = "field")
  392. {
  393. $modelParams = [];
  394. $fieldArr = explode(',', $keys);
  395. foreach ($params as $modelParam) {
  396. if (!empty($modelParam['name']) && in_array($modelParam['name'], $fieldArr) && $type == "field") {
  397. // 取指定字段
  398. $modelParams[] = $modelParam;
  399. } else if (!(!empty($modelParam['name']) && in_array($modelParam['name'], $fieldArr)) && $type == "withoutField") {
  400. // 排除指定字段
  401. $modelParams[] = $modelParam;
  402. }
  403. }
  404. return $modelParams;
  405. }
  406. // 解析定义的注释
  407. public function parseDefinitions($path)
  408. {
  409. $modelClassArr = explode("\\", $path);
  410. $modelActionName = $modelClassArr[count($modelClassArr) - 1];
  411. $definitionsPath = !empty($this->config['definitions']) ? $this->config['definitions'] : "hg\apidoc\Definitions";
  412. $classReflect = new \ReflectionClass($definitionsPath);
  413. $modelActionName = trim($modelActionName);
  414. $methodAction = $classReflect->getMethod($modelActionName);
  415. $doc_str = $methodAction->getDocComment();
  416. $action_doc = $this->parseParam($doc_str);
  417. return $action_doc;
  418. }
  419. /**
  420. * 解析参数的注释,server的注释解析
  421. * @param string $doc
  422. * @return array
  423. */
  424. public function parseParam($doc = '')
  425. {
  426. if ($doc == '') {
  427. return false;
  428. }
  429. // Get the comment
  430. if (preg_match('#^/\*\*(.*)\*/#s', $doc, $comment) === false) {
  431. return false;
  432. }
  433. $comment = trim($comment[1]);
  434. // Get all the lines and strip the * from the first character
  435. if (preg_match_all('#^\s*\*(.*)#m', $comment, $lines) === false) {
  436. return false;
  437. }
  438. $res = $this->parseActionLines($lines[1]);
  439. return $res;
  440. }
  441. /**
  442. * 根据模型获取表的注释
  443. * @param Model $model
  444. * @return array
  445. */
  446. public function getTableDocument($model)
  447. {
  448. $tp_version = \think\facade\App::version();
  449. if (substr($tp_version, 0, 2) == '5.') {
  450. $createSQL = Db5::query("show create table " . $model->getTable())[0]['Create Table'];
  451. } else {
  452. $createSQL = Db::query("show create table " . $model->getTable())[0]['Create Table'];
  453. }
  454. preg_match_all("#`(.*?)`(.*?),#", $createSQL, $matches);
  455. $fields = $matches[1];
  456. $types = $matches[2];
  457. $fieldComment = [];
  458. //组织注释
  459. for ($i = 0; $i < count($matches[0]); $i++) {
  460. $key = $fields[$i];
  461. $typeString = $types[$i];
  462. $typeString = trim($typeString);
  463. $typeArr = explode(' ', $typeString);
  464. $type = $typeArr[0];
  465. $default = "";
  466. $require = "0";
  467. $desc = "";
  468. if (strpos($typeString, 'COMMENT') !== false) {
  469. // 存在字段注释
  470. preg_match_all("#COMMENT\s*'(.*?)'#", $typeString, $edscs);
  471. if (!empty($edscs[1]) && !empty($edscs[1][0])) {
  472. $desc = $edscs[1][0];
  473. }
  474. }
  475. if (strpos($typeString, 'DEFAULT') !== false) {
  476. // 存在字段默认值
  477. preg_match_all("#DEFAULT\s*'(.*?)'#", $typeString, $defaults);
  478. if (!empty($defaults[1]) && !empty($defaults[1][0])) {
  479. $default = $defaults[1][0];
  480. }
  481. }
  482. if (strpos($typeString, 'NOT NULL') !== false) {
  483. // 必填字段
  484. $require = "1";
  485. }
  486. $fieldComment[] = [
  487. "name" => $key,
  488. "type" => $type,
  489. "desc" => $desc,
  490. "default" => $default,
  491. "require" => $require,
  492. // "str"=>$createSQL
  493. ];
  494. }
  495. return $fieldComment;
  496. }
  497. /**
  498. * 获取类文件的内容
  499. * @param $className
  500. * @return mixed
  501. * @throws \Exception
  502. */
  503. protected function getClassFileContent($className)
  504. {
  505. if (class_exists($className)) {
  506. $classReflect = new \ReflectionClass($className);
  507. } else {
  508. throw new \Exception("类不存在", '1');
  509. }
  510. if (!isset($this->classFileMaps[$className])) {
  511. $this->classFileMaps[$className] = file_get_contents($classReflect->getFileName());
  512. }
  513. return $this->classFileMaps[$className];
  514. }
  515. public function getIncludeClassName($mainClass, $class)
  516. {
  517. $classFile = $this->getClassFileContent($mainClass);
  518. $pattern = "/use\s*(app.*?\\\\$class)/";
  519. if (preg_match($pattern, $classFile, $matches)) {
  520. return $matches[1];
  521. } else {
  522. $classReflect = new \ReflectionClass($mainClass);
  523. $possibleClass = $classReflect->getNamespaceName() . "\\" . $class;
  524. if (class_exists($possibleClass)) {
  525. return $possibleClass;
  526. } else {
  527. return "";
  528. }
  529. }
  530. }
  531. }