Model.php 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace catcher\generate\factory;
  3. use catcher\exceptions\FailedException;
  4. use catcher\facade\FileSystem;
  5. use catcher\generate\build\CatchBuild;
  6. use catcher\generate\build\classes\Classes;
  7. use catcher\generate\build\classes\Property;
  8. use catcher\generate\build\classes\Traits;
  9. use catcher\generate\build\classes\Uses;
  10. use catcher\generate\build\types\Arr;
  11. use catcher\traits\db\BaseOptionsTrait;
  12. use catcher\traits\db\ScopeTrait;
  13. use catcher\Utils;
  14. use think\facade\Db;
  15. use think\helper\Str;
  16. class Model extends Factory
  17. {
  18. /**
  19. * done
  20. *
  21. * @time 2020年11月19日
  22. * @param $params
  23. * @return string
  24. */
  25. public function done($params)
  26. {
  27. $content = $this->getContent($params);
  28. $modelPath = $this->getGeneratePath($params['model']);
  29. FileSystem::put($modelPath, $content);
  30. if (!file_exists($modelPath)) {
  31. throw new FailedException('create model failed');
  32. }
  33. return $modelPath;
  34. }
  35. /**
  36. * get contents
  37. *
  38. * @time 2020年04月29日
  39. * @param $params
  40. * @return string|string[]
  41. */
  42. public function getContent($params)
  43. {
  44. $extra = $params['extra'];
  45. $table = $params['table'];
  46. [$modelName, $namespace] = $this->parseFilename($params['model']);
  47. // 如果填写了表名并且没有填写模型名称 使用表名作为模型名称
  48. if (!$modelName && $table) {
  49. $modelName = ucfirst(Str::camel($table));
  50. $params['model'] = $params['model'] . $modelName;
  51. }
  52. if (!$modelName) {
  53. throw new FailedException('model name not set');
  54. }
  55. $softDelete = $extra['soft_delete'];
  56. return (new CatchBuild)->namespace($namespace)
  57. ->use((new Uses())->name('catcher\base\CatchModel', 'Model'))
  58. ->when(!$softDelete, function (CatchBuild $build){
  59. $build->use((new Uses())->name(BaseOptionsTrait::class));
  60. $build->use((new Uses())->name(ScopeTrait::class));
  61. })
  62. ->class((new Classes($modelName))->extend('Model')->docComment(),
  63. function (Classes $class) use ($softDelete, $table) {
  64. if (!$softDelete) {
  65. $class->addTrait(
  66. (new Traits())->use('BaseOptionsTrait', 'ScopeTrait')
  67. );
  68. }
  69. $class->addProperty(
  70. (new Property('name'))->default(
  71. Utils::tableWithoutPrefix($table)
  72. )->docComment('// 表名')
  73. );
  74. $class->when($this->hasTableExists($table), function ($class) use ($table){
  75. $class->addProperty(
  76. (new Property('field'))->default(
  77. (new Arr)->build(Db::getFields($table))
  78. )->docComment('// 数据库字段映射'));
  79. });
  80. })->getContent();
  81. }
  82. }