Model.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <?php
  2. namespace catcher\generate\template;
  3. class Model
  4. {
  5. use Content;
  6. public function createModel($model, $table)
  7. {
  8. return <<<TMP
  9. class {$model} extends Model
  10. {
  11. {CONTENT}
  12. }
  13. TMP;
  14. }
  15. public function useTrait($hasDeletedAt = true)
  16. {
  17. if (!$hasDeletedAt) {
  18. return <<<TMP
  19. use BaseOptionsTrait,ScopeTrait;
  20. TMP;
  21. }
  22. }
  23. public function uses($hasDeletedAt = true)
  24. {
  25. if ($hasDeletedAt) {
  26. return <<<TMP
  27. use catcher\base\CatchModel as Model;
  28. TMP;
  29. } else {
  30. return <<<TMP
  31. use think\Model;
  32. use catcher\\traits\db\BaseOptionsTrait;
  33. use catcher\\traits\db\ScopeTrait;
  34. TMP;
  35. }
  36. }
  37. /**
  38. * name
  39. *
  40. * @time 2020年04月28日
  41. * @param $name
  42. * @return string
  43. */
  44. public function name($name)
  45. {
  46. if ($name) {
  47. return <<<TMP
  48. protected \$name = '{$name}';
  49. TMP;
  50. }
  51. }
  52. /**
  53. * field
  54. *
  55. * @time 2020年04月28日
  56. * @param $field
  57. * @return string
  58. */
  59. public function field($field)
  60. {
  61. if ($field) {
  62. return <<<TMP
  63. protected \$field = [
  64. {$field}
  65. ];
  66. TMP;
  67. }
  68. }
  69. /**
  70. * 一对一关联
  71. *
  72. * @time 2020年04月24日
  73. * @param $model
  74. * @param string $foreignKey
  75. * @param string $pk
  76. * @return string
  77. */
  78. public function hasOne($model, $foreignKey = '', $pk = '')
  79. {
  80. $func = lcfirst($model);
  81. return <<<TMP
  82. public function {$func}()
  83. {
  84. return \$this->hasOne({$model}::class{$this->keyRelate($foreignKey, $pk)});
  85. }
  86. TMP;
  87. }
  88. /**
  89. *
  90. *
  91. * @time 2020年04月24日
  92. * @param $model
  93. * @param string $foreignKey
  94. * @param string $pk
  95. * @return string
  96. */
  97. public function hasMany($model, $foreignKey = '', $pk = '')
  98. {
  99. $func = lcfirst($model);
  100. return <<<TMP
  101. public function {$func}()
  102. {
  103. return \$this->hasMany({$model}::class{$this->keyRelate($foreignKey, $pk)});
  104. }
  105. TMP;
  106. }
  107. /**
  108. * 远程一对多
  109. *
  110. * @time 2020年04月24日
  111. * @param $model
  112. * @param $middleModel
  113. * @param string $foreignKey
  114. * @param string $pk
  115. * @param string $middleRelateId
  116. * @param string $middleId
  117. * @return string
  118. */
  119. public function hasManyThrough($model, $middleModel, $foreignKey = '', $pk = '', $middleRelateId = '', $middleId = '')
  120. {
  121. $func = lcfirst($model);
  122. return <<<TMP
  123. public function {$func}()
  124. {
  125. return \$this->hasManyThrough({$model}::class, {$middleModel}::class{$this->keyRelate($foreignKey, $pk, $middleRelateId, $middleId)});
  126. }
  127. TMP;
  128. }
  129. /**
  130. * 远程一对一
  131. *
  132. * @time 2020年04月24日
  133. * @param $model
  134. * @param $middleModel
  135. * @param string $foreignKey
  136. * @param string $pk
  137. * @param string $middleRelateId
  138. * @param string $middleId
  139. * @return string
  140. */
  141. public function hasOneThrough($model, $middleModel, $foreignKey = '', $pk = '', $middleRelateId = '', $middleId = '')
  142. {
  143. $func = lcfirst($model);
  144. return <<<TMP
  145. public function {$func}()
  146. {
  147. return \$this->hasOneThrough({$model}::class, {$middleModel}::class{$this->keyRelate($foreignKey, $pk, $middleRelateId, $middleId)});
  148. }
  149. TMP;
  150. }
  151. /**
  152. * 多对多关联
  153. *
  154. * @time 2020年04月24日
  155. * @param $model
  156. * @param string $table
  157. * @param string $foreignKey
  158. * @param string $relateKey
  159. * @return string
  160. */
  161. public function belongsToMany($model, $table = '', $foreignKey = '', $relateKey = '')
  162. {
  163. $func = lcfirst($model);
  164. $table = !$table ? : ','.$table;
  165. $relateKey = !$relateKey ? : ','.$relateKey;
  166. return <<<TMP
  167. public function {$func}()
  168. {
  169. return \$this->hasOneThrough({$model}::class{$table}{$this->keyRelate($foreignKey)}{$relateKey});
  170. }
  171. TMP;
  172. }
  173. /**
  174. * 模型关联key
  175. *
  176. * @time 2020年04月24日
  177. * @param string $foreignKey
  178. * @param string $pk
  179. * @param string $middleRelateId
  180. * @param string $middleId
  181. * @return string
  182. */
  183. public function keyRelate($foreignKey = '', $pk = '', $middleRelateId = '', $middleId = '')
  184. {
  185. return !$foreignKey ? : ',' . $foreignKey .
  186. !$middleRelateId ? : ','. $middleRelateId .
  187. !$pk ? : ',' . $pk .
  188. !$middleId ? : ',' . $middleId;
  189. }
  190. }