BaseOptionsTrait.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\traits\db;
  4. use catcher\CatchModelCollection;
  5. use catcher\Utils;
  6. use think\Collection;
  7. trait BaseOptionsTrait
  8. {
  9. /**
  10. * 查询列表
  11. *
  12. * @time 2020年04月28日
  13. * @return mixed
  14. */
  15. public function getList()
  16. {
  17. // 不分页
  18. if (property_exists($this, 'paginate') && $this->paginate === false) {
  19. return $this->catchSearch()
  20. ->field('*')
  21. ->catchOrder()
  22. ->creator()
  23. ->select();
  24. }
  25. // 分页列表
  26. return $this->catchSearch()
  27. ->field('*')
  28. ->catchOrder()
  29. ->creator()
  30. ->paginate();
  31. }
  32. /**
  33. *
  34. * @time 2019年12月03日
  35. * @param array $data
  36. * @return bool
  37. */
  38. public function storeBy(array $data)
  39. {
  40. if ($this->allowField($this->field)->save($data)) {
  41. return $this->{$this->getPk()};
  42. }
  43. return false;
  44. }
  45. /**
  46. * 用于循环插入
  47. *
  48. * @time 2020年04月21日
  49. * @param array $data
  50. * @return mixed
  51. */
  52. public function createBy(array $data)
  53. {
  54. $model = parent::create($data, $this->field, true);
  55. return $model->{$this->getPk()};
  56. }
  57. /**33
  58. *
  59. * @time 2019年12月03日
  60. * @param $id
  61. * @param $data
  62. * @param string $field
  63. * @return bool
  64. */
  65. public function updateBy($id, $data, $field = ''): bool
  66. {
  67. if (isset($data['creator_id'])) {
  68. unset($data['creator_id']);
  69. }
  70. if (static::update($data, [$field ? : $this->getPk() => $id], $this->field)) {
  71. return true;
  72. }
  73. return false;
  74. }
  75. /**
  76. *
  77. * @time 2019年12月03日
  78. * @param $id
  79. * @param array $field
  80. * @param bool $trash
  81. * @return mixed
  82. */
  83. public function findBy($id, array $field = ['*'], $trash = false)
  84. {
  85. if ($trash) {
  86. return static::onlyTrashed()->find($id);
  87. }
  88. return static::where($this->getPk(), $id)->field($field)->find();
  89. }
  90. /**
  91. *
  92. * @time 2019年12月03日
  93. * @param $id
  94. * @param $force
  95. * @return mixed
  96. */
  97. public function deleteBy($id, $force = false)
  98. {
  99. return static::destroy(is_array($id) ? $id : Utils::stringToArrayBy($id), $force);
  100. }
  101. /**
  102. * 批量插入
  103. *
  104. * @time 2020年04月19日
  105. * @param array $data
  106. * @return mixed
  107. */
  108. public function insertAllBy(array $data)
  109. {
  110. $newData = [];
  111. foreach ($data as $item) {
  112. foreach ($item as $field => $value) {
  113. if (!in_array($field, $this->field)) {
  114. unset($item[$field]);
  115. }
  116. if (in_array('created_at', $this->field)) {
  117. $item['created_at'] = time();
  118. }
  119. if (in_array('updated_at', $this->field)) {
  120. $item['updated_at'] = time();
  121. }
  122. }
  123. $newData[] = $item;
  124. }
  125. return $this->insertAll($newData);
  126. }
  127. /**
  128. * @time 2019年12月07日
  129. * @param $id
  130. * @return mixed
  131. */
  132. public function recover($id)
  133. {
  134. return static::onlyTrashed()->find($id)->restore();
  135. }
  136. /**
  137. * 获取删除字段
  138. *
  139. * @time 2020年01月13日
  140. * @return mixed
  141. */
  142. public function getDeleteAtField()
  143. {
  144. return $this->deleteTime;
  145. }
  146. /**
  147. * 别名
  148. *
  149. * @time 2020年01月13日
  150. * @param $field
  151. * @return string
  152. */
  153. public function aliasField($field): string
  154. {
  155. return sprintf('%s.%s', $this->getTable(), $field);
  156. }
  157. /**
  158. * 禁用/启用
  159. *
  160. * @time 2020年06月29日
  161. * @param $id
  162. * @param string $field
  163. * @return mixed
  164. */
  165. public function disOrEnable($id, $field='status')
  166. {
  167. $model = $this->findBy($id);
  168. $status = $model->{$field} == self::DISABLE ? self::ENABLE : self::DISABLE;
  169. $model->{$field} = $status;
  170. return $model->save();
  171. }
  172. /**
  173. * rewrite collection
  174. *
  175. * @time 2020年10月20日
  176. * @param array|iterable $collection
  177. * @param string|null $resultSetType
  178. * @return CatchModelCollection|mixed
  179. */
  180. public function toCollection(iterable $collection = [], string $resultSetType = null): Collection
  181. {
  182. $resultSetType = $resultSetType ?: $this->resultSetType;
  183. if ($resultSetType && false !== strpos($resultSetType, '\\')) {
  184. $collection = new $resultSetType($collection);
  185. } else {
  186. $collection = new CatchModelCollection($collection);
  187. }
  188. return $collection;
  189. }
  190. }