123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- <?php
- namespace catcher\generate\template;
- class Model
- {
- use Content;
- public function createModel($model, $table)
- {
- return <<<TMP
- class {$model} extends Model
- {
- {CONTENT}
- }
- TMP;
- }
- public function useTrait($hasDeletedAt = true)
- {
- if (!$hasDeletedAt) {
- return <<<TMP
- use BaseOptionsTrait,ScopeTrait;
- TMP;
- }
- }
- public function uses($hasDeletedAt = true)
- {
- if ($hasDeletedAt) {
- return <<<TMP
- use catcher\base\CatchModel as Model;
- TMP;
- } else {
- return <<<TMP
- use think\Model;
- use catcher\\traits\db\BaseOptionsTrait;
- use catcher\\traits\db\ScopeTrait;
- TMP;
- }
- }
- /**
- * name
- *
- * @time 2020年04月28日
- * @param $name
- * @return string
- */
- public function name($name)
- {
- if ($name) {
- return <<<TMP
- protected \$name = '{$name}';
- TMP;
- }
- }
- /**
- * field
- *
- * @time 2020年04月28日
- * @param $field
- * @return string
- */
- public function field($field)
- {
- if ($field) {
- return <<<TMP
- protected \$field = [
- {$field}
- ];
-
-
- TMP;
- }
- }
- /**
- * 一对一关联
- *
- * @time 2020年04月24日
- * @param $model
- * @param string $foreignKey
- * @param string $pk
- * @return string
- */
- public function hasOne($model, $foreignKey = '', $pk = '')
- {
- $func = lcfirst($model);
- return <<<TMP
- public function {$func}()
- {
- return \$this->hasOne({$model}::class{$this->keyRelate($foreignKey, $pk)});
- }
- TMP;
- }
- /**
- *
- *
- * @time 2020年04月24日
- * @param $model
- * @param string $foreignKey
- * @param string $pk
- * @return string
- */
- public function hasMany($model, $foreignKey = '', $pk = '')
- {
- $func = lcfirst($model);
- return <<<TMP
- public function {$func}()
- {
- return \$this->hasMany({$model}::class{$this->keyRelate($foreignKey, $pk)});
- }
- TMP;
- }
- /**
- * 远程一对多
- *
- * @time 2020年04月24日
- * @param $model
- * @param $middleModel
- * @param string $foreignKey
- * @param string $pk
- * @param string $middleRelateId
- * @param string $middleId
- * @return string
- */
- public function hasManyThrough($model, $middleModel, $foreignKey = '', $pk = '', $middleRelateId = '', $middleId = '')
- {
- $func = lcfirst($model);
- return <<<TMP
- public function {$func}()
- {
- return \$this->hasManyThrough({$model}::class, {$middleModel}::class{$this->keyRelate($foreignKey, $pk, $middleRelateId, $middleId)});
- }
- TMP;
- }
- /**
- * 远程一对一
- *
- * @time 2020年04月24日
- * @param $model
- * @param $middleModel
- * @param string $foreignKey
- * @param string $pk
- * @param string $middleRelateId
- * @param string $middleId
- * @return string
- */
- public function hasOneThrough($model, $middleModel, $foreignKey = '', $pk = '', $middleRelateId = '', $middleId = '')
- {
- $func = lcfirst($model);
- return <<<TMP
- public function {$func}()
- {
- return \$this->hasOneThrough({$model}::class, {$middleModel}::class{$this->keyRelate($foreignKey, $pk, $middleRelateId, $middleId)});
- }
- TMP;
- }
- /**
- * 多对多关联
- *
- * @time 2020年04月24日
- * @param $model
- * @param string $table
- * @param string $foreignKey
- * @param string $relateKey
- * @return string
- */
- public function belongsToMany($model, $table = '', $foreignKey = '', $relateKey = '')
- {
- $func = lcfirst($model);
- $table = !$table ? : ','.$table;
- $relateKey = !$relateKey ? : ','.$relateKey;
- return <<<TMP
- public function {$func}()
- {
- return \$this->hasOneThrough({$model}::class{$table}{$this->keyRelate($foreignKey)}{$relateKey});
- }
- TMP;
- }
- /**
- * 模型关联key
- *
- * @time 2020年04月24日
- * @param string $foreignKey
- * @param string $pk
- * @param string $middleRelateId
- * @param string $middleId
- * @return string
- */
- public function keyRelate($foreignKey = '', $pk = '', $middleRelateId = '', $middleId = '')
- {
- return !$foreignKey ? : ',' . $foreignKey .
- !$middleRelateId ? : ','. $middleRelateId .
- !$pk ? : ',' . $pk .
- !$middleId ? : ',' . $middleId;
- }
- }
|