WechatGraphicRepository.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\wechat\repository;
  12. use catcher\base\CatchRepository;
  13. use catchAdmin\wechat\model\WechatGraphic;
  14. use catcher\exceptions\FailedException;
  15. class WechatGraphicRepository extends CatchRepository
  16. {
  17. protected $wechatGraphic;
  18. public function __construct(WechatGraphic $graphic)
  19. {
  20. $this->wechatGraphic = $graphic;
  21. }
  22. protected function model()
  23. {
  24. return $this->wechatGraphic;
  25. }
  26. /**
  27. * 获取
  28. *
  29. * @time 2020年06月27日
  30. * @param array $params
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\DbException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. * @return mixed
  35. */
  36. public function getList(array $params)
  37. {
  38. // 父级
  39. $list = $this->wechatGraphic
  40. ->where('parent_id', 0)
  41. ->paginate();
  42. // 子级
  43. $subList = $this->wechatGraphic
  44. ->whereIn('parent_id', $list->column('id'))
  45. ->select();
  46. foreach ($list as &$item) {
  47. $item->children = $subList->where('parent_id', $item->id);
  48. }
  49. return $list;
  50. }
  51. /**
  52. * 更新
  53. *
  54. * @time 2020年06月27日
  55. * @param array $data
  56. * @return mixed
  57. */
  58. public function storeBy(array $data)
  59. {
  60. $creatorId = $data['creator_id'];
  61. $articles = $data['articles'];
  62. $first = array_shift($articles);
  63. $first['creator_id'] = $creatorId;
  64. $parentId = parent::storeBy($first);
  65. foreach ($articles as &$article) {
  66. $article['parent_id'] = $parentId;
  67. $article['creator_id'] = $creatorId;
  68. $article['created_at'] = $article['updated_at'] = time();
  69. }
  70. return $this->wechatGraphic->insertAll($articles);
  71. }
  72. /**
  73. * 查找
  74. *
  75. * @time 2020年06月28日
  76. * @param int $id
  77. * @param array|string[] $column
  78. * @throws \think\db\exception\DataNotFoundException
  79. * @throws \think\db\exception\DbException
  80. * @throws \think\db\exception\ModelNotFoundException
  81. * @return array
  82. */
  83. public function findBy(int $id, array $column = ['*'])
  84. {
  85. $field = ['id', 'title', 'author', 'cover', 'content'];
  86. $article = [parent::findBy($id, $field)->toArray()];
  87. return array_merge($article, $this->wechatGraphic->field($field)->where('parent_id', $id)->select()->toArray());
  88. }
  89. /**
  90. * 更新
  91. *
  92. * @time 2020年06月28日
  93. * @param int $id
  94. * @param array $data
  95. * @return bool
  96. */
  97. public function updateBy(int $id, array $data)
  98. {
  99. try {
  100. $this->wechatGraphic->startTrans();
  101. if (!parent::deleteBy($id)) {
  102. throw new FailedException('更新失败');
  103. }
  104. if ($this->wechatGraphic->where('parent_id', $id)->find() && !$this->wechatGraphic->where('parent_id', $id)->delete()) {
  105. throw new FailedException('更新失败');
  106. }
  107. foreach ($data['articles'] as &$article) {
  108. unset($article['id']);
  109. }
  110. if ($this->storeBy($data) === false) {
  111. throw new FailedException('更新失败');
  112. }
  113. } catch (\Exception $exception) {
  114. $this->wechatGraphic->rollback();
  115. throw new FailedException($exception->getMessage());
  116. }
  117. $this->wechatGraphic->commit();
  118. return true;
  119. }
  120. /**
  121. * 删除
  122. *
  123. * @time 2020年06月28日
  124. * @param int $id
  125. * @return bool
  126. */
  127. public function deleteBy(int $id)
  128. {
  129. if (parent::deleteBy($id)) {
  130. return $this->wechatGraphic
  131. ->where('parent_id', $id)
  132. ->delete();
  133. }
  134. throw new FailedException('删除失败');
  135. }
  136. }