SubNoticeJobs.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. <?php
  2. namespace App\Jobs\Manager\Process;
  3. use Illuminate\Bus\Queueable;
  4. use Illuminate\Contracts\Queue\ShouldBeUnique;
  5. use Illuminate\Contracts\Queue\ShouldQueue;
  6. use Illuminate\Foundation\Bus\Dispatchable;
  7. use Illuminate\Queue\InteractsWithQueue;
  8. use Illuminate\Queue\SerializesModels;
  9. use App\Facades\Servers\Logs\Log;
  10. use App\Models\Manager\Process\LowPriceGoodsMember as LowPriceGoodsMemberModel;
  11. use App\Models\Manager\Process\LowPriceGoods as LowPriceGoodsModel;
  12. use App\Models\Manager\Process\ViolationProductMember as ViolationProductMemberModel;
  13. use App\Models\Manager\Process\ViolationProduct as ViolationProductModel;
  14. use App\Models\Manager\Process\ViolationStore as ViolationStoreModel;
  15. use App\Models\Manager\Process\ViolationStoreMember as ViolationStoreMemberModel;
  16. use Illuminate\Support\Carbon;
  17. use App\Facades\Servers\Sms\VerifyCode as Sms;
  18. use App\Servers\Email\VerifyCode as EmailVerifyCode;
  19. use App\Models\Manager\Personnel\NoticeConfig as NoticeConfigModel;
  20. use App\Models\Manager\Process\SubNoticeLog as SubNoticeLogModel;
  21. use App\Models\Manager\Personnel\Employee as EmployeeModel;
  22. /**
  23. * 订阅通知
  24. * @author 唐远望
  25. * @version 1.0
  26. * @date 2026-03-30
  27. */
  28. class SubNoticeJobs implements ShouldQueue
  29. {
  30. use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
  31. protected $message_data;
  32. protected $user_data;
  33. /**
  34. * Create a new job instance.
  35. *
  36. * @return void
  37. */
  38. public function __construct(array $message_data)
  39. {
  40. $this->message_data = $message_data;
  41. }
  42. /**
  43. * Execute the job.
  44. *
  45. * @return void
  46. */
  47. public function handle()
  48. {
  49. try {
  50. $notice_config_data = $this->get_statistics_time_rule(1);
  51. if ($notice_config_data['statistics_start_time'] == '' || $notice_config_data['statistics_end_time'] == '' || $notice_config_data['statistics_day'] == 0) {
  52. //记录日志
  53. // Log::info('job_info', '订阅未设置,不进行推送', ['data' => $this->message_data, 'notice_config_data' => $notice_config_data]);
  54. return true;
  55. }
  56. $statistics_start_time = $notice_config_data['statistics_start_time'];
  57. $statistics_end_time = $notice_config_data['statistics_end_time'];
  58. $push_time = $notice_config_data['push_time'];
  59. $EmailVerifyCode = new EmailVerifyCode();
  60. $EmployeeModel = new EmployeeModel();
  61. $sms_tpl_id = config('verifycode.aliyun_process_merge_notice.sms_tpl');
  62. $company_id = $this->message_data['company_id'];
  63. $action_one = $this->send_low_price_goods_notice($company_id, $statistics_start_time, $statistics_end_time);
  64. $action_two = $this->send_violation_product($company_id, $statistics_start_time, $statistics_end_time);
  65. $action_three = $this->send_violation_store($company_id, $statistics_start_time, $statistics_end_time);
  66. if (empty($this->user_data)) return true;
  67. $SubNoticeLogModel = new SubNoticeLogModel();
  68. if ($action_one && $action_two && $action_three) {
  69. foreach ($this->user_data as $key => $value) {
  70. $mobile = $value['mobile'];
  71. $email_to = $value['email'];
  72. $user_id = $key;
  73. //查询已已经开启通知设置的用户
  74. $employee_ids = $EmployeeModel->where('id', $user_id)->where('open_notice', 0)->get();
  75. if (empty($employee_ids)) continue;
  76. $number1 = isset($this->user_data[$key]['lowprice_product_logids']) ? count($this->user_data[$key]['lowprice_product_logids']) : 0;
  77. $number2 = isset($this->user_data[$key]['violation_product_logids']) ? count($this->user_data[$key]['violation_product_logids']) : 0;
  78. $number3 = isset($this->user_data[$key]['violation_store_logids']) ? count($this->user_data[$key]['violation_store_logids']) : 0;
  79. dd($number1);
  80. //统计总条数
  81. $totle_number = $number1 + $number2 + $number3;
  82. $sms_config_data =[];
  83. if (trim($mobile) != '') {
  84. $sms_config_data =['parameter'=> ['totle_number' => $totle_number, 'number1' => $number1, 'number2' => $number2, 'number3' => $number3],'sms_tpl_id'=> $sms_tpl_id];
  85. // $res_msg = Sms::sendContent($mobile, ['totle_number' => $totle_number, 'number1' => $number1, 'number2' => $number2, 'number3' => $number3], $sms_tpl_id);
  86. // Log::info('job_send_sms', '订阅短信通知推送队列记录', ['email' => $mobile, 'sms_tpl_id' => $sms_tpl_id, 'msg' => $res_msg]);
  87. }
  88. $header_date = '';
  89. $statistics_start_time_string = date('Y-m-d', strtotime($statistics_start_time));
  90. $statistics_end_time_string = date('Y-m-d', strtotime($statistics_end_time));
  91. if ($statistics_start_time_string == $statistics_end_time_string) {
  92. $header_date = $statistics_start_time;
  93. } else {
  94. $header_date = $statistics_start_time_string. '至'. $statistics_end_time_string;
  95. }
  96. $email_title ='';
  97. $email_content = '';
  98. if (trim($email_to) != '') {
  99. $email_title = '智价云违规数据通知提醒';
  100. $email_content = "智价云提醒:".$header_date."采集总数据共" . $totle_number . "条,其中低价挂网商品共" . $number1 . "条、禁止挂网商品共" . $number2 . "条、违规挂网店铺共" . $number3 . "条。";
  101. // $res_msg = $EmailVerifyCode->sendSmtpEmail($email_to, $email_title, $email_content);
  102. // Log::info('job_send_email', '订阅邮件通知推送队列记录', ['email' => $email_to, 'email_content' => $email_content, 'msg' => $res_msg]);
  103. }
  104. $internal_notice_content = $header_date."采集总数据共" . $totle_number . "条,其中低价挂网商品共" . $number1 . "条、禁止挂网商品共" . $number2 . "条、违规挂网店铺共" . $number3 . "条。";
  105. $ext_data = [
  106. 'company_id' => $company_id,
  107. 'lowprice_product_number' => $number1,
  108. 'violation_product_number' => $number2,
  109. 'violation_store_number' => $number3,
  110. 'statistics_start_time' => $statistics_start_time,
  111. 'statistics_end_time' => $statistics_end_time,
  112. ];
  113. // 增加就订阅日志
  114. $insert_data = [
  115. 'company_id' => $company_id,
  116. 'employee_id' => $user_id,
  117. 'internal_notice_content' => $internal_notice_content,
  118. 'email' => $email_to,
  119. 'mobile' => $mobile,
  120. 'email_content' => trim($email_to) != '' ? json_encode(['title' => $email_title, 'content' => $email_content]): '',
  121. 'mobile_content' => trim($mobile) != '' ? json_encode($sms_config_data): '',
  122. 'push_time' => strtotime(date('Y-m-d', time()) . ' '. $push_time.':00'),
  123. 'ext_data' => json_encode($ext_data),
  124. 'insert_time' => time(),
  125. ];
  126. $SubNoticeLogModel->insert($insert_data);
  127. }
  128. }
  129. } catch (\Exception $e) {
  130. print_r($e->getMessage());exit;
  131. Log::info('job_error', '订阅短信通知推送队列失败', ['data' => $this->message_data, 'error' => $e->getMessage()]);
  132. }
  133. }
  134. /**
  135. * 获取统计时间规则
  136. * @author 唐远望
  137. * @version 1.0
  138. * @date 2026-04-11
  139. */
  140. private function get_statistics_time_rule($company_id)
  141. {
  142. // 获取当时时间是星期几
  143. $now_week = date('w');
  144. // $now_week = 1;//调试星期
  145. $NoticeConfigModel = new NoticeConfigModel();
  146. $data = $NoticeConfigModel->where(['company_id' => $company_id])->first();
  147. if (!$data) return ['now_week' => $now_week, 'statistics_day' => 0, 'statistics_start_time' => '', 'statistics_end_time' => '','push_time'=> '', 'notice_week_config' => ''];
  148. //校验这个星期是否需要进行推送
  149. $notice_week_config = json_decode($data->notice_week_config, true);
  150. $is_open = 0;
  151. $now_week_day = 'week_' . $now_week;
  152. if ($notice_week_config[$now_week_day] == 0) {
  153. $is_open = 1;
  154. }
  155. if ($is_open == 0) {
  156. return ['now_week' => $now_week, 'statistics_day' => 0, 'statistics_start_time' => '', 'statistics_end_time' => '','push_time'=> '', 'notice_week_config' => $notice_week_config];
  157. }
  158. //是否每天都推送
  159. $is_day_day_push = 0;
  160. for ($i = 7; $i >= 1; $i--) {
  161. $week_string = 'week_' . $i;
  162. if ($notice_week_config[$week_string] == 0) {
  163. $is_day_day_push = $is_day_day_push + 1;
  164. }
  165. }
  166. if ($is_day_day_push == 7) {
  167. $statistics_day = 1;
  168. } else {
  169. $statistics_day = 0;
  170. //判断当时时间是否是星期一
  171. if ($now_week == 1) {
  172. for ($i = 7; $i >= 1; $i--) {
  173. //校验前一天是否推送
  174. $week_string = 'week_7';
  175. if ($notice_week_config[$week_string] == 0) { // 如果前一天没有开启推送则统计,状态 0=开启 1=关闭
  176. $statistics_day = $statistics_day + 1;
  177. break;
  178. } else {
  179. $week_oth_string = 'week_' . $i;
  180. if ($notice_week_config[$week_oth_string] == '1') { // 如果前一天没有开启推送则统计,状态 0=开启 1=关闭
  181. $statistics_day = $statistics_day + 1;
  182. } else {
  183. $statistics_day = $statistics_day + 1;
  184. break;
  185. }
  186. }
  187. }
  188. } else {
  189. $statistics_day = 0;
  190. //如果当前$now_week星期,往前推,当遇到开启的日期时,停止往前推,最大为7天
  191. for ($i = $now_week; $i >= 1; $i--) {
  192. //校验前一天是否推送
  193. $yesterday_week = $now_week - 1;
  194. if ($yesterday_week < 1) {
  195. continue;
  196. }
  197. $week_string = 'week_' . $yesterday_week;
  198. //校验前一天是否开启了推送
  199. if ($i == $now_week && $notice_week_config[$week_string] == '0') {
  200. $statistics_day = $statistics_day + 1;
  201. break;
  202. } else {
  203. $i_index = $i - 1; //往前推一天
  204. if ($i_index < 1) {
  205. continue;
  206. }
  207. $week_oth_string = 'week_' . $i_index;
  208. if ($notice_week_config[$week_oth_string] == '1') {
  209. $statistics_day = $statistics_day + 1;
  210. } else {
  211. $statistics_day = $statistics_day + 1;
  212. break;
  213. }
  214. }
  215. }
  216. }
  217. }
  218. if ($statistics_day < 1) {
  219. return ['now_week' => $now_week, 'statistics_day' => $statistics_day, 'statistics_start_time' => '', 'statistics_end_time' => '','push_time'=> '', 'notice_week_config' => $notice_week_config];
  220. }
  221. //获取统计开始时间
  222. $statistics_start_time = Carbon::today()->subDays($statistics_day)->startOfDay()->toDateTimeString();
  223. //获取昨日结束时间
  224. $statistics_end_time = Carbon::today()->subDays(1)->endOfDay()->toDateTimeString();
  225. return ['now_week' => $now_week, 'statistics_day' => $statistics_day, 'statistics_start_time' => $statistics_start_time, 'statistics_end_time' => $statistics_end_time,'push_time'=> $data->push_time, 'notice_week_config' => $notice_week_config];
  226. }
  227. /**
  228. * 短信消息消息订阅推送(低价挂网)
  229. * @author 唐远望
  230. * @version 1.0
  231. * @date 2026-03-04
  232. */
  233. private function send_low_price_goods_notice($company_id, $statistics_start_time, $statistics_end_time)
  234. {
  235. $LowPriceGoodsMemberModel = new LowPriceGoodsMemberModel();
  236. $LowPriceGoodsModel = new LowPriceGoodsModel();
  237. //获取今日待处理的商品记录
  238. $todayStart = strtotime($statistics_start_time); // 统计开始时间
  239. $todayEnd = strtotime($statistics_end_time); // 统计结束时间
  240. $lowprice_ids = $LowPriceGoodsModel->where([['insert_time', '>=', $todayStart], ['insert_time', '<=', $todayEnd], ['company_id', '=', $company_id]])->pluck('id')->toArray();
  241. dd(count($lowprice_ids));
  242. if (empty($lowprice_ids)) return true;
  243. //获取开启了通知服务的用户
  244. $usert_list = $LowPriceGoodsMemberModel
  245. ->whereIn('lowprice_product_logid', $lowprice_ids)
  246. ->join('personnel_employee', 'process_lowprice_product_member.employee_id', '=', 'personnel_employee.id')
  247. ->where('personnel_employee.open_notice', 0)
  248. ->where('personnel_employee.company_id', $company_id)
  249. ->group(['lowprice_product_logid'])
  250. ->select(['process_lowprice_product_member.*', 'personnel_employee.mobile', 'personnel_employee.email'])
  251. ->get()->toArray();
  252. if (empty($usert_list)) return true;
  253. //按用户统计待处理的商品数量
  254. foreach ($usert_list as $key => $value) {
  255. $user_id = $value['employee_id'];
  256. if (!isset($this->user_data[$user_id])) {
  257. $this->user_data[$user_id]['employee_id'] = $user_id;
  258. $this->user_data[$user_id]['mobile'] = $value['mobile'];
  259. $this->user_data[$user_id]['email'] = $value['email'];
  260. $this->user_data[$user_id]['lowprice_product_logids'][] = $value['lowprice_product_logid'];
  261. } else {
  262. $this->user_data[$user_id]['lowprice_product_logids'][] = $value['lowprice_product_logid'];
  263. }
  264. }
  265. return true;
  266. }
  267. /**
  268. * 短信消息消息订阅推送(禁止挂网)
  269. * @author 唐远望
  270. * @version 1.0
  271. * @date 2026-03-04
  272. */
  273. private function send_violation_product($company_id, $statistics_start_time, $statistics_end_time)
  274. {
  275. $ViolationProductMemberModel = new ViolationProductMemberModel();
  276. $ViolationProductModel = new ViolationProductModel();
  277. //获取今日待处理的商品记录
  278. $todayStart = strtotime($statistics_start_time); // 统计开始时间
  279. $todayEnd = strtotime($statistics_end_time); // 统计结束时间
  280. $violation_price_ids = $ViolationProductModel->where([['insert_time', '>=', $todayStart], ['insert_time', '<=', $todayEnd], ['company_id', '=', $company_id]])->pluck('id')->toArray();
  281. if (empty($violation_price_ids)) return true;
  282. //获取开启了通知服务的用户
  283. $usert_list = $ViolationProductMemberModel
  284. ->whereIn('violation_product_logid', $violation_price_ids)
  285. ->join('personnel_employee', 'process_violation_product_member.employee_id', '=', 'personnel_employee.id')
  286. ->where('personnel_employee.open_notice', 0)
  287. ->where('personnel_employee.company_id', $company_id)
  288. ->group(['violation_product_logid'])
  289. ->select(['process_violation_product_member.*', 'personnel_employee.mobile', 'personnel_employee.email'])
  290. ->get()->toArray();
  291. if (empty($usert_list)) return true;
  292. //按用户统计待处理的商品数量
  293. foreach ($usert_list as $key => $value) {
  294. $user_id = $value['employee_id'];
  295. if (!isset($this->user_data[$user_id])) {
  296. $this->user_data[$user_id]['employee_id'] = $user_id;
  297. $this->user_data[$user_id]['mobile'] = $value['mobile'];
  298. $this->user_data[$user_id]['email'] = $value['email'];
  299. $this->user_data[$user_id]['violation_product_logids'][] = $value['violation_product_logid'];
  300. } else {
  301. $this->user_data[$user_id]['violation_product_logids'][] = $value['violation_product_logid'];
  302. }
  303. }
  304. return true;
  305. }
  306. /**
  307. * 短信消息消息订阅推送(禁止店铺)
  308. * @author 唐远望
  309. * @version 1.0
  310. * @date 2026-03-04
  311. */
  312. private function send_violation_store($company_id, $statistics_start_time, $statistics_end_time)
  313. {
  314. $ViolationStoreMemberModel = new ViolationStoreMemberModel();
  315. $ViolationStoreModel = new ViolationStoreModel();
  316. //获取今日待处理的店铺记录
  317. $todayStart = strtotime($statistics_start_time); // 统计开始时间
  318. $todayEnd = strtotime($statistics_end_time); // 统计结束时间
  319. $violation_price_ids = $ViolationStoreModel->where([['insert_time', '>=', $todayStart], ['insert_time', '<=', $todayEnd], ['company_id', '=', $company_id]])->pluck('id')->toArray();
  320. if (empty($violation_price_ids)) return true;
  321. //获取开启了通知服务的用户
  322. $usert_list = $ViolationStoreMemberModel
  323. ->whereIn('violation_store_logid', $violation_price_ids)
  324. ->join('personnel_employee', 'process_violation_store_member.employee_id', '=', 'personnel_employee.id')
  325. ->where('personnel_employee.open_notice', 0)
  326. ->where('personnel_employee.company_id', $company_id)
  327. ->group(['violation_store_logid'])
  328. ->select(['process_lowprice_product_member.*', 'personnel_employee.mobile', 'personnel_employee.email'])
  329. ->get()->toArray();
  330. if (empty($usert_list)) return true;
  331. //按用户统计待处理的商品数量
  332. foreach ($usert_list as $key => $value) {
  333. $user_id = $value['employee_id'];
  334. if (!isset($this->user_data[$user_id])) {
  335. $this->user_data[$user_id]['employee_id'] = $user_id;
  336. $this->user_data[$user_id]['mobile'] = $value['mobile'];
  337. $this->user_data[$user_id]['email'] = $value['email'];
  338. $this->user_data[$user_id]['log_ids'][] = $value['violation_store_logid'];
  339. } else {
  340. $this->user_data[$user_id]['log_ids'][] = $value['violation_store_logid'];
  341. }
  342. }
  343. //按用户统计待处理的商品数量
  344. foreach ($usert_list as $key => $value) {
  345. $user_id = $value['employee_id'];
  346. if (!isset($this->user_data[$user_id])) {
  347. $this->user_data[$user_id]['employee_id'] = $user_id;
  348. $this->user_data[$user_id]['mobile'] = $value['mobile'];
  349. $this->user_data[$user_id]['violation_store_logids'][] = $value['violation_store_logid'];
  350. } else {
  351. $this->user_data[$user_id]['violation_store_logids'][] = $value['violation_store_logid'];
  352. }
  353. }
  354. return true;
  355. }
  356. public function failed(\Throwable $exception)
  357. {
  358. Log::info('job_error', '订阅短信通知推送队列完全失败', ['data' => $this->message_data, 'error' => $exception]);
  359. }
  360. }