ParseModel.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. namespace hg\apidoc;
  3. use Doctrine\Common\Annotations\Reader;
  4. use think\facade\Db;
  5. use hg\apidoc\annotation\Field;
  6. use hg\apidoc\annotation\WithoutField;
  7. use hg\apidoc\annotation\AddField;
  8. use think\helper\Str;
  9. class ParseModel
  10. {
  11. protected $reader;
  12. public function __construct(Reader $reader)
  13. {
  14. $this->reader = $reader;
  15. }
  16. public function renderModel($path){
  17. $modelClassArr = explode("\\", $path);
  18. $modelActionName = $modelClassArr[count($modelClassArr)-1];
  19. $modelClassName = $modelClassArr[count($modelClassArr)-2];
  20. unset($modelClassArr[count($modelClassArr)-1]);
  21. $modelClassPath = implode("\\", $modelClassArr);
  22. $classReflect = new \ReflectionClass($modelClassPath);
  23. $modelActionName = trim ( $modelActionName );
  24. $methodAction = $classReflect->getMethod($modelActionName);
  25. // 获取所有模型属性
  26. $propertys = $classReflect->getDefaultProperties();
  27. // 获取表字段
  28. $model = $this->getModel($methodAction,$modelClassName);
  29. if (!is_callable(array($model,'getTable'))){
  30. return false;
  31. }
  32. $table = $this->getTableDocument($model,$propertys);
  33. // 模型注释-field
  34. if ($fieldAnnotations = $this->reader->getMethodAnnotation($methodAction,Field::class)) {
  35. $table = (new Utils())->filterParamsField($table,$fieldAnnotations->value,'field');
  36. }
  37. // 模型注释-withoutField
  38. if ($fieldAnnotations = $this->reader->getMethodAnnotation($methodAction,WithoutField::class)) {
  39. $table = (new Utils())->filterParamsField($table,$fieldAnnotations->value,'withoutField');
  40. }
  41. // 模型注释-addField
  42. if ($annotations = $this->reader->getMethodAnnotations($methodAction)) {
  43. foreach ($annotations as $annotation) {
  44. switch (true) {
  45. case $annotation instanceof AddField:
  46. $param=[
  47. "name"=>$annotation->value,
  48. "desc"=>$annotation->desc,
  49. "require"=>$annotation->require,
  50. "type"=>$annotation->type,
  51. "default"=>$annotation->default
  52. ];
  53. $table[]=$param;
  54. break;
  55. }
  56. }
  57. }
  58. return $table;
  59. }
  60. public function getModel($method,$modelClassName){
  61. if (!empty($method->class)){
  62. $relationModelClass = $this->getIncludeClassName($method->class, $modelClassName);
  63. if ($relationModelClass) {
  64. $modelInstance = new $relationModelClass();
  65. return $modelInstance;
  66. } else {
  67. return null;
  68. }
  69. }else{
  70. return null;
  71. }
  72. }
  73. protected function getClassFileContent($className)
  74. {
  75. if (class_exists($className)) {
  76. $classReflect = new \ReflectionClass($className);
  77. } else {
  78. throw new \Exception("类不存在", '1');
  79. }
  80. if (!isset($this->classFileMaps[$className])) {
  81. $this->classFileMaps[$className] = file_get_contents($classReflect->getFileName());
  82. }
  83. return $this->classFileMaps[$className];
  84. }
  85. protected function getIncludeClassName($mainClass, $class)
  86. {
  87. $classReflect = new \ReflectionClass($mainClass);
  88. $possibleClass = $classReflect->getNamespaceName() . "\\" . $class;
  89. if (class_exists($possibleClass)) {
  90. return $possibleClass;
  91. } else {
  92. return "";
  93. }
  94. }
  95. public function getTableDocument($model,$propertys)
  96. {
  97. $createSQL = Db::query("show create table " . $model->getTable())[0]['Create Table'];
  98. preg_match_all("#`(.*?)`(.*?),#", $createSQL, $matches);
  99. $fields = $matches[1];
  100. $types = $matches[2];
  101. $fieldComment = [];
  102. //组织注释
  103. for ($i = 0; $i < count($matches[0]); $i++) {
  104. $key = $fields[$i];
  105. $typeString = $types[$i];
  106. $typeString = trim ( $typeString );
  107. $typeArr = explode(' ' , $typeString);
  108. $type = $typeArr[0];
  109. $default="";
  110. $require="0";
  111. $desc ="";
  112. if (strpos($typeString,'COMMENT') !== false){
  113. // 存在字段注释
  114. preg_match_all("#COMMENT\s*'(.*?)'#", $typeString, $edscs);
  115. if (!empty($edscs[1]) && !empty($edscs[1][0]))
  116. $desc=$edscs[1][0];
  117. }
  118. if (strpos($typeString,'DEFAULT') !== false){
  119. // 存在字段默认值
  120. preg_match_all("#DEFAULT\s*'(.*?)'#", $typeString, $defaults);
  121. if (!empty($defaults[1]) && !empty($defaults[1][0]))
  122. $default=$defaults[1][0];
  123. }
  124. if (strpos($typeString,'NOT NULL') !== false){
  125. // 必填字段
  126. $require="1";
  127. }
  128. $name = $key;
  129. // 转换字段名为驼峰命名(用于输出)
  130. if (isset($propertys['convertNameToCamel']) && $propertys['convertNameToCamel'] === true) {
  131. $name = Str::camel($key);
  132. }
  133. $fieldComment[] = [
  134. "name"=>$name,
  135. "type"=>$type,
  136. "desc"=>$desc,
  137. "default"=>$default,
  138. "require"=>$require,
  139. ];
  140. }
  141. return $fieldComment;
  142. }
  143. }