Factory.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace catcher\generate\factory;
  3. use catcher\CatchAdmin;
  4. use think\facade\Db;
  5. abstract class Factory
  6. {
  7. abstract public function done($param);
  8. /**
  9. * parse psr4 path
  10. *
  11. * @time 2020年04月27日
  12. * @return mixed
  13. */
  14. public function parsePsr4()
  15. {
  16. $composer = \json_decode(file_get_contents(root_path() . 'composer.json'), true);
  17. return $composer['autoload']['psr-4'];
  18. }
  19. /**
  20. * get generate path
  21. *
  22. * @time 2020年04月27日
  23. * @param $filePath
  24. * @return string
  25. */
  26. protected function getGeneratePath($filePath)
  27. {
  28. $path = explode('\\', $filePath);
  29. $projectRootNamespace = array_shift($path);
  30. $filename = array_pop($path);
  31. $psr4 = $this->parsePsr4();
  32. $filePath = root_path() . $psr4[$projectRootNamespace.'\\'] . DIRECTORY_SEPARATOR . implode(DIRECTORY_SEPARATOR, $path);
  33. CatchAdmin::makeDirectory($filePath);
  34. return $filePath . DIRECTORY_SEPARATOR . ucfirst($filename ). '.php';
  35. }
  36. /**
  37. * 获取模块地址
  38. *
  39. * @time 2020年04月28日
  40. * @param $filePath
  41. * @return string
  42. */
  43. public function getModulePath($filePath)
  44. {
  45. $path = explode('\\', $filePath);
  46. $projectRootNamespace = array_shift($path);
  47. $module = array_shift($path);
  48. $psr4 = $this->parsePsr4();
  49. return root_path() . $psr4[$projectRootNamespace.'\\'] . DIRECTORY_SEPARATOR. $module . DIRECTORY_SEPARATOR;
  50. }
  51. /**
  52. * parse filename
  53. *
  54. * @time 2020年04月27日
  55. * @param $filename
  56. * @return array
  57. */
  58. public function parseFilename($filename)
  59. {
  60. $namespace = explode('\\', $filename);
  61. $className = ucfirst(array_pop($namespace));
  62. $namespace = implode('\\', $namespace);
  63. return [$className, $namespace];
  64. }
  65. /**
  66. *
  67. * @time 2020年04月28日
  68. * @param $table
  69. * @return bool
  70. */
  71. public function hasTableExists($table)
  72. {
  73. $tables = Db::connect()->getTables();
  74. return in_array($table, $tables) ? $table : false;
  75. }
  76. }