ParseClass.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\library;
  4. use think\exception\ClassNotFoundException;
  5. class ParseClass
  6. {
  7. protected $namespace;
  8. protected $module;
  9. protected $controller;
  10. /**
  11. * 获取父类方法
  12. *
  13. * @return array
  14. * @throws \ReflectionException
  15. */
  16. public function parentMethods()
  17. {
  18. $class = $this->getClass();
  19. $parent = $class->getParentClass();
  20. $methods = [];
  21. foreach ($parent->getMethods() as $method) {
  22. if (!$this->isMagicMethod($method->getName())) {
  23. $methods[] = $method->getName();
  24. }
  25. }
  26. return $methods;
  27. }
  28. /**
  29. * 获取所有方法
  30. *
  31. * @return array
  32. * @throws \ReflectionException
  33. */
  34. public function methods()
  35. {
  36. $class = $this->getClass();
  37. $methods = [];
  38. foreach ($class->getMethods() as $method) {
  39. if (!$this->isMagicMethod($method->getName())) {
  40. $methods[] = $method->getName();
  41. }
  42. }
  43. return $methods;
  44. }
  45. /**
  46. * @return mixed
  47. * @throws \ReflectionException
  48. */
  49. public function onlySelfMethods()
  50. {
  51. $methods = [];
  52. $parentMethods = $this->parentMethods();
  53. foreach ($this->methods() as $method) {
  54. if (!in_array($method, $parentMethods)) {
  55. $methods[] = $method;
  56. }
  57. }
  58. return $methods;
  59. }
  60. /**
  61. * 获取class
  62. *
  63. * @time 2020年09月06日
  64. * @throws \ReflectionException
  65. * @return \ReflectionClass
  66. */
  67. public function getClass()
  68. {
  69. $class = $this->namespace . $this->module . '\\controller\\'. ucfirst($this->controller);
  70. if (class_exists($class)) {
  71. return new \ReflectionClass($class);
  72. }
  73. throw new ClassNotFoundException($this->controller . ' not found');
  74. }
  75. /**
  76. * @param $method
  77. * @return bool
  78. */
  79. protected function isMagicMethod($method)
  80. {
  81. return strpos($method, '__') !== false;
  82. }
  83. /**
  84. *
  85. * @param $module
  86. * @return $this
  87. * @author JaguarJack <njphper@gmail.com>
  88. * @date 2020/6/6
  89. */
  90. public function setModule($module)
  91. {
  92. $psr4 = (new Composer())->psr4Autoload();
  93. foreach ($psr4 as $key => $_module) {
  94. if ($_module == $module) {
  95. $this->namespace = $key;
  96. break;
  97. }
  98. }
  99. return $this;
  100. }
  101. /**
  102. *
  103. * @param $module
  104. * @param $controller
  105. * @return $this
  106. * @author JaguarJack <njphper@gmail.com>
  107. * @date 2020/6/6
  108. */
  109. public function setRule($module, $controller)
  110. {
  111. $this->module = $module;
  112. $this->controller = $controller;
  113. return $this;
  114. }
  115. }