Notification.php 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <?php
  2. namespace app\admin\controller\shopro;
  3. use app\common\controller\Backend;
  4. /**
  5. * 消息管理
  6. *
  7. * @icon fa fa-circle-o
  8. */
  9. class Notification extends Backend
  10. {
  11. /**
  12. * Notification模型对象
  13. * @var \app\admin\model\shopro\Notification
  14. */
  15. protected $model = null;
  16. public function _initialize()
  17. {
  18. parent::_initialize();
  19. $this->model = new \app\admin\model\shopro\Notification;
  20. $this->modelConfig = new \app\admin\model\shopro\notification\Config;
  21. }
  22. /**
  23. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  24. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  25. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  26. */
  27. /**
  28. * 查看
  29. */
  30. public function index()
  31. {
  32. }
  33. public function config()
  34. {
  35. if ($this->request->isAjax()) {
  36. // 检测队列
  37. checkEnv('queue');
  38. // 消息类型
  39. $notificationType = [
  40. \addons\shopro\notifications\Groupon::class,
  41. \addons\shopro\notifications\Order::class,
  42. \addons\shopro\notifications\Refund::class,
  43. \addons\shopro\notifications\Aftersale::class,
  44. \addons\shopro\notifications\Wallet::class,
  45. \addons\shopro\notifications\store\Order::class,
  46. \addons\shopro\notifications\store\Apply::class
  47. ];
  48. // 获取所有要发送的消息
  49. $fields = [];
  50. foreach ($notificationType as $key => $class) {
  51. $currentFields = $class::$returnField;
  52. if ($currentFields) {
  53. $fields = array_merge($fields, $currentFields);
  54. }
  55. }
  56. // 读取数据库相关消息配置项
  57. $notificationConfig = $this->modelConfig->select();
  58. // 组合消息类型和设置值
  59. $newFields = [];
  60. foreach ($fields as $k => $field) {
  61. // 组合每个平台的消息默认值和数据库值
  62. $kConfig = $this->getKconfig($notificationConfig, $k, $field);
  63. $newFields[] = [
  64. 'type' => $k,
  65. 'name' => $field['name'],
  66. 'wxMiniProgram' => $kConfig['wxMiniProgram'] ?? [],
  67. 'wxOfficialAccount' => $kConfig['wxOfficialAccount'] ?? [],
  68. 'wxOfficialAccountBizsend' => $kConfig['wxOfficialAccountBizsend'] ?? [],
  69. 'sms' => $kConfig['sms'] ?? [],
  70. 'email' => $kConfig['email'] ?? []
  71. ];
  72. }
  73. $this->success('获取成功', null, $newFields);
  74. }
  75. return $this->view->fetch();
  76. }
  77. // 配置状态
  78. public function set_status() {
  79. $platform = $this->request->post('platform', '');
  80. $event = $this->request->post('event', '');
  81. $name = $this->request->post('name', '');
  82. $status = $this->request->post('status', 0);
  83. if (!$platform || !$event) {
  84. $this->error(__('Parameter %s can not be empty', ''));
  85. }
  86. $config = $this->modelConfig->where([
  87. 'platform' => $platform,
  88. 'event' => $event
  89. ])->find();
  90. if (!$config) {
  91. $config = $this->modelConfig;
  92. $config->platform = $platform;
  93. $config->event = $event;
  94. $config->name = $name;
  95. }
  96. $config->status = intval($status);
  97. $config->save();
  98. $this->success('设置成功');
  99. }
  100. // 配置模板
  101. public function set_template()
  102. {
  103. $platform = $this->request->post('platform');
  104. $event = $this->request->post('event');
  105. $name = $this->request->post('name');
  106. $content = $this->request->post('content', "");
  107. if (!$platform || !$event) {
  108. $this->error(__('Parameter %s can not be empty', ''));
  109. }
  110. $config = $this->modelConfig->where([
  111. 'platform' => $platform,
  112. 'event' => $event
  113. ])->find();
  114. if (!$config) {
  115. $config = $this->modelConfig;
  116. $config->platform = $platform;
  117. $config->event = $event;
  118. $config->name = $name;
  119. }
  120. $config->content = $content;
  121. $config->save();
  122. $this->success('设置成功');
  123. }
  124. private function getKConfig($notificationConfig, $k, $field) {
  125. // 将默认值中追加 template_field 和 value 空字段
  126. foreach ($field['fields'] as &$f) {
  127. $f['template_field'] = $f['template_field'] ?? '';
  128. $f['value'] = $f['value'] ?? '';
  129. }
  130. // 初始化defalut
  131. $kConfig = [
  132. 'wxMiniProgram' => [
  133. 'id' => 0,
  134. 'platform' => 'wxMiniProgram',
  135. 'name' => $field['name'],
  136. 'event' => $k,
  137. 'status' => 0,
  138. 'sendnum' => 0,
  139. 'content_arr' => [
  140. 'template_id' => '',
  141. 'fields' => $field['fields']
  142. ]
  143. ],
  144. 'wxOfficialAccount' => [
  145. 'id' => 0,
  146. 'platform' => 'wxOfficialAccount',
  147. 'name' => $field['name'],
  148. 'event' => $k,
  149. 'status' => 0,
  150. 'sendnum' => 0,
  151. 'content_arr' => [
  152. 'template_id' => '',
  153. 'fields' => $field['fields']
  154. ]
  155. ],
  156. 'wxOfficialAccountBizsend' => [
  157. 'id' => 0,
  158. 'platform' => 'wxOfficialAccountBizsend',
  159. 'name' => $field['name'],
  160. 'event' => $k,
  161. 'status' => 0,
  162. 'sendnum' => 0,
  163. 'content_arr' => [
  164. 'template_id' => '',
  165. 'fields' => $field['fields']
  166. ]
  167. ],
  168. 'sms' => [
  169. 'id' => 0,
  170. 'platform' => 'sms',
  171. 'name' => $field['name'],
  172. 'event' => $k,
  173. 'status' => 0,
  174. 'sendnum' => 0,
  175. 'content_arr' => [
  176. 'template_id' => '',
  177. 'fields' => $field['fields']
  178. ]
  179. ],
  180. 'email' => [
  181. 'id' => 0,
  182. 'platform' => 'email',
  183. 'name' => $field['name'],
  184. 'event' => $k,
  185. 'status' => 0,
  186. 'sendnum' => 0,
  187. 'content_arr' => [
  188. 'template_id' => '',
  189. 'fields' => $field['fields']
  190. ]
  191. ]
  192. ];
  193. // 合并数据库中的设置
  194. foreach ($notificationConfig as $config) {
  195. if ($config['event'] == $k) {
  196. $currentConfig = $config->toArray();
  197. // 如果数据库中有内容
  198. if ($currentConfig['content_arr']) {
  199. $contentArr = $currentConfig['content_arr'];
  200. // 合并,数据库和默认 fields 字段(发送类型增加返回字段时候有用)
  201. $contentArrFields = [];
  202. if (isset($contentArr['fields']) && $contentArr['fields']) { // 判断数组是否存在 fields 设置
  203. $contentArrFields = array_column($contentArr['fields'], null, 'field');
  204. }
  205. $kConfigFields = array_column($kConfig[$config['platform']]['content_arr']['fields'], null, 'field');
  206. $configField = array_merge($kConfigFields, $contentArrFields);
  207. $contentArr['fields'] = array_values($configField);
  208. $currentConfig['content_arr'] = $contentArr;
  209. } else {
  210. // 数据库有记录,但内容是空,(先开启了开关)
  211. $currentConfig['content_arr'] = $kConfig[$config['platform']]['content_arr'];
  212. }
  213. $kConfig[$config['platform']] = $currentConfig;
  214. }
  215. }
  216. return $kConfig;
  217. }
  218. }