SmsConfig.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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\sms\model;
  12. use catcher\base\CatchModel as Model;
  13. class SmsConfig extends Model
  14. {
  15. protected $name = 'sms_config';
  16. protected $field = [
  17. 'id', //
  18. 'name', // 运营商名称
  19. 'pid', // 父级ID
  20. 'key', // key
  21. 'value', // value
  22. 'creator_id', // 创建人ID
  23. 'created_at', // 创建时间
  24. 'updated_at', // 更新时间
  25. 'deleted_at', // 软删除
  26. ];
  27. public function hasConfig()
  28. {
  29. return $this->hasMany(SmsConfig::class, 'pid', 'id');
  30. }
  31. /**
  32. * 保存
  33. *
  34. * @time 2020年09月16日
  35. * @param array $data
  36. * @return bool|int
  37. */
  38. public function storeBy(array $data)
  39. {
  40. $config = $this->findByName($data['name']);
  41. if ($config) {
  42. unset($data['name']);
  43. $hasConfig = $config->hasConfig()->select();
  44. if (empty($hasConfig)) {
  45. return $this->insertConfig($config->id, $data);
  46. }
  47. $this->deleteBy(array_column($hasConfig->toArray(), 'id'), true);
  48. $this->insertConfig($config->id, $data);
  49. return true;
  50. }
  51. if (parent::storeBy([
  52. 'name' => $data['name']
  53. ])) {
  54. unset($data['name']);
  55. $this->insertConfig($this->id, $data);
  56. return true;
  57. }
  58. }
  59. /**
  60. * 新增配置
  61. *
  62. * @time 2020年09月16日
  63. * @param $pid
  64. * @param $data
  65. * @return int
  66. */
  67. protected function insertConfig($pid, $data)
  68. {
  69. $config = [];
  70. $creatorId = $data['creator_id'];
  71. unset($data['creator_id']);
  72. foreach ($data as $k => $v) {
  73. $config[] = [
  74. 'key' => $k,
  75. 'value' => $v,
  76. 'pid' => $pid,
  77. 'creator_id' => $creatorId,
  78. 'created_at' => time(),
  79. 'updated_at' => time(),
  80. ];
  81. }
  82. return $this->insertAll($config);
  83. }
  84. /**
  85. * 根据 name 查找
  86. *
  87. * @time 2020年09月16日
  88. * @param $name
  89. * @throws \think\db\exception\DataNotFoundException
  90. * @throws \think\db\exception\DbException
  91. * @throws \think\db\exception\ModelNotFoundException
  92. * @return array|\think\Model|null
  93. */
  94. public function findByName($name)
  95. {
  96. return $this->where('name', $name)->find();
  97. }
  98. /**
  99. * 查找配置
  100. *
  101. * @time 2020年09月16日
  102. * @param $id
  103. * @param array|string[] $field
  104. * @param false $trash
  105. * @throws \think\db\exception\DataNotFoundException
  106. * @throws \think\db\exception\DbException
  107. * @throws \think\db\exception\ModelNotFoundException
  108. * @return array|mixed
  109. */
  110. public function findBy($id, array $field = ['*'], $trash = false)
  111. {
  112. $config = [];
  113. if (!$this->findByName($id)) {
  114. return [];
  115. }
  116. $this->findByName($id)
  117. ->hasConfig()
  118. ->select()
  119. ->each(function ($item) use (&$config){
  120. $config[$item['key']] = $item['value'];
  121. });
  122. return $config;
  123. }
  124. }