CatchModelCollection.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher;
  4. use catcher\library\excel\Excel;
  5. use catcher\library\excel\ExcelContract;
  6. use think\facade\Cache;
  7. use think\model\Collection;
  8. class CatchModelCollection extends Collection
  9. {
  10. /**
  11. * tree 结构
  12. *
  13. * @time 2020年10月21日
  14. * @param int $pid
  15. * @param string $pidField
  16. * @param string $children
  17. * @return array
  18. */
  19. public function toTree($pid = 0, $pidField = 'parent_id', $children = 'children')
  20. {
  21. return Tree::done($this->items, $pid, $pidField, $children);
  22. }
  23. /**
  24. * 导出数据
  25. *
  26. * @time 2020年10月21日
  27. * @param $header
  28. * @param string $path
  29. * @param string $disk
  30. * @throws \PhpOffice\PhpSpreadsheet\Exception
  31. * @return mixed|string[]
  32. */
  33. public function export($header, $path = '', $disk = 'local')
  34. {
  35. $excel = new Class($header, $this->items) implements ExcelContract
  36. {
  37. protected $headers;
  38. protected $sheets;
  39. public function __construct($headers, $sheets)
  40. {
  41. $this->headers = $headers;
  42. $this->sheets = $sheets;
  43. }
  44. public function headers(): array
  45. {
  46. // TODO: Implement headers() method.
  47. return $this->headers;
  48. }
  49. public function sheets()
  50. {
  51. // TODO: Implement sheets() method.
  52. return $this->sheets;
  53. }
  54. };
  55. if (!$path) {
  56. $path = Utils::publicPath('exports');
  57. }
  58. return (new Excel)->save($excel, $path, $disk);
  59. }
  60. /**
  61. * 缓存 collection
  62. *
  63. * @time 2020年10月21日
  64. * @param $key
  65. * @param int $ttl
  66. * @param string $store
  67. * @return bool
  68. * @throws \Psr\SimpleCache\InvalidArgumentException
  69. */
  70. public function cache($key, int $ttl = 0, string $store = 'redis')
  71. {
  72. return Cache::store($store)->set($key, $this->items, $ttl);
  73. }
  74. /**
  75. * 获取当前级别下的所有子级
  76. *
  77. * @time 2020年11月04日
  78. * @param array $ids
  79. * @param string $parentFields
  80. * @param string $column
  81. * @return array
  82. */
  83. public function getAllChildrenIds(array $ids, $parentFields = 'parent_id', $column = 'id')
  84. {
  85. array_walk($ids, function (&$item){
  86. $item = intval($item);
  87. });
  88. $childDepartmentIds = $this->whereIn($parentFields, $ids)->column($column);
  89. if (!empty($childDepartmentIds)) {
  90. $childDepartmentIds = array_merge($childDepartmentIds, $this->getAllChildrenIds($childDepartmentIds));
  91. }
  92. return $childDepartmentIds;
  93. }
  94. }